]> git.mxchange.org Git - friendica.git/commitdiff
Merge pull request #987 from annando/master
authortobiasd <tobias.diekershoff@gmx.net>
Sun, 25 May 2014 05:59:22 +0000 (07:59 +0200)
committertobiasd <tobias.diekershoff@gmx.net>
Sun, 25 May 2014 05:59:22 +0000 (07:59 +0200)
Auto-killing processes, somce changed code in the plaintext function and speed issues in network

29 files changed:
include/acl_selectors.php
include/bbcode.php
include/items.php
include/session.php
include/template_processor.php
include/text.php
js/fk.autocomplete.js
mod/admin.php
util/messages.po
view/cs/messages.po
view/cs/smarty3/register_adminadd_eml.tpl [new file with mode: 0644]
view/cs/strings.php
view/de/messages.po
view/de/strings.php
view/fr/messages.po
view/fr/passchanged_eml.tpl
view/fr/register_open_eml.tpl
view/fr/register_verify_eml.tpl
view/fr/smarty3/register_adminadd_eml.tpl [new file with mode: 0644]
view/fr/strings.php
view/nb-no/messages.po
view/nb-no/strings.php
view/nl/messages.po
view/nl/strings.php
view/pt-br/messages.po
view/pt-br/strings.php
view/templates/register.tpl
view/zh-cn/messages.po
view/zh-cn/strings.php

index ee74ccc16ab440309f1fe9ac8e24ebee026dd023..0a9b2c90aeeb6ab522d8fc5ba6db32b78ca39eb9 100644 (file)
@@ -382,7 +382,7 @@ function acl_lookup(&$a, $out_type = 'json') {
        $count = (x($_REQUEST,'count')?$_REQUEST['count']:100);
        $search = (x($_REQUEST,'search')?$_REQUEST['search']:"");
        $type = (x($_REQUEST,'type')?$_REQUEST['type']:"");
-       
+       $conv_id = (x($_REQUEST,'conversation')?$_REQUEST['conversation']:null);
 
        // For use with jquery.autocomplete for private mail completion
 
@@ -450,6 +450,7 @@ function acl_lookup(&$a, $out_type = 'json') {
                $contact_count = 0;
        }
        
+       
        $tot = $group_count+$contact_count;
        
        $groups = array();
@@ -553,6 +554,52 @@ function acl_lookup(&$a, $out_type = 'json') {
                
        $items = array_merge($groups, $contacts);
 
+       if ($conv_id) {
+               /* if $conv_id is set, get unknow contacts in thread */ 
+               /* but first get know contacts url to filter them out */
+               function _contact_link($i){ return dbesc($i['link']); }
+               $known_contacts = array_map(_contact_link, $contacts);
+               $unknow_contacts=array();
+               $r = q("select 
+                                       `author-avatar`,`author-name`,`author-link`
+                               from item where parent=%d
+                               and (
+                                       `author-name` LIKE '%%%s%%' OR
+                                       `author-link` LIKE '%%%s%%'
+                               ) and 
+                               `author-link` NOT IN ('%s')
+                               GROUP BY `author-link`
+                               ORDER BY `author-name` ASC
+                               ", 
+                               intval($conv_id),
+                               dbesc($search),
+                               dbesc($search),
+                               implode("','", $known_contacts)
+               );
+               if (is_array($r) && count($r)){
+                       foreach($r as $row) {
+                               // nickname..
+                               $up = parse_url($row['author-link']);
+                               $nick = explode("/",$up['path']);
+                               $nick = $nick[count($nick)-1];
+                               $nick .= "@".$up['host'];
+                               // /nickname
+                               $unknow_contacts[] = array(
+                                       "type"  => "c",
+                                       "photo" => $row['author-avatar'],
+                                       "name"  => $row['author-name'],
+                                       "id"    => '',
+                                       "network" => "unknown",
+                                       "link" => $row['author-link'],
+                                       "nick" => $nick,
+                                       "forum" => false
+                               );
+                       }
+               }
+
+               $items = array_merge($items, $unknow_contacts);
+               $tot += count($unknow_contacts);
+       }
 
        if($out_type === 'html') {
                $o = array(
index b036a5dcdf0045ddf7aac9654cda4a735b9b85e2..4ccab8db5d9ffb276a17874a1ff3bd9edd680296 100644 (file)
@@ -454,10 +454,9 @@ function bb_ShareAttributesForExport($match) {
        $userid = GetProfileUsername($profile,$author);
 
        $headline = '<div class="shared_header">';
-       $headline .= sprintf(t('<span><b>'.
-                       html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8').
-                       '<a href="%s" target="_blank">%s</a>%s:</b></span>'), $link, $userid, $posted);
-        $headline .= "</div>";
+       $headline .= '<span><b>'.html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8');
+       $headline .= sprintf(t('<a href="%1$s" target="_blank">%2$s</a> %3$s'), $link, $userid, $posted);
+        $headline .= ":</b></span></div>";
 
        $text = trim($match[1]);
 
index 94285e61baff57a3609867a2e442e409ad7c794c..76bcbc7b24120d39216ce49a42140427a7e19436 100755 (executable)
@@ -176,7 +176,7 @@ function get_feed_for(&$a, $dfrn_id, $owner_nick, $last_update, $direction = 0)
                '$thumb'        => xmlify($owner['thumb']),
                '$picdate'      => xmlify(datetime_convert('UTC','UTC',$owner['avatar-date'] . '+00:00' , ATOM_TIME)) ,
                '$uridate'      => xmlify(datetime_convert('UTC','UTC',$owner['uri-date']    . '+00:00' , ATOM_TIME)) ,
-               '$namdate'      => xmlify(datetime_convert('UTC','UTC',$owner['name-date']   . '+00:00' , ATOM_TIME)) , 
+               '$namdate'      => xmlify(datetime_convert('UTC','UTC',$owner['name-date']   . '+00:00' , ATOM_TIME)) ,
                '$birthday'     => ((strlen($birthday)) ? '<dfrn:birthday>' . xmlify($birthday) . '</dfrn:birthday>' : ''),
                '$community'    => (($owner['page-flags'] == PAGE_COMMUNITY) ? '<dfrn:community>1</dfrn:community>' : '')
        ));
@@ -261,7 +261,7 @@ function construct_activity_object($item) {
        }
 
        return '';
-} 
+}
 
 function construct_activity_target($item) {
 
@@ -425,7 +425,7 @@ function get_atom_elements($feed, $item, $contact = array()) {
        $res = array();
 
        $author = $item->get_author();
-       if($author) { 
+       if($author) {
                $res['author-name'] = unxmlify($author->get_name());
                $res['author-link'] = unxmlify($author->get_link());
        }
@@ -554,14 +554,14 @@ function get_atom_elements($feed, $item, $contact = array()) {
 
        $res['body'] = limit_body_size($res['body']);
 
-       // It isn't certain at this point whether our content is plaintext or html and we'd be foolish to trust 
-       // the content type. Our own network only emits text normally, though it might have been converted to 
+       // It isn't certain at this point whether our content is plaintext or html and we'd be foolish to trust
+       // the content type. Our own network only emits text normally, though it might have been converted to
        // html if we used a pubsubhubbub transport. But if we see even one html tag in our text, we will
        // have to assume it is all html and needs to be purified.
 
-       // It doesn't matter all that much security wise - because before this content is used anywhere, we are 
-       // going to escape any tags we find regardless, but this lets us import a limited subset of html from 
-       // the wild, by sanitising it and converting supported tags to bbcode before we rip out any remaining 
+       // It doesn't matter all that much security wise - because before this content is used anywhere, we are
+       // going to escape any tags we find regardless, but this lets us import a limited subset of html from
+       // the wild, by sanitising it and converting supported tags to bbcode before we rip out any remaining
        // html.
 
        if((strpos($res['body'],'<') !== false) && (strpos($res['body'],'>') !== false)) {
@@ -720,7 +720,7 @@ function get_atom_elements($feed, $item, $contact = array()) {
                        if(! $type)
                                $type = 'application/octet-stream';
 
-                       $att_arr[] = '[attach]href="' . $link . '" length="' . $len . '" type="' . $type . '" title="' . $title . '"[/attach]'; 
+                       $att_arr[] = '[attach]href="' . $link . '" length="' . $len . '" type="' . $type . '" title="' . $title . '"[/attach]';
                }
                $res['attach'] = implode(',', $att_arr);
        }
@@ -989,6 +989,23 @@ function item_store($arr,$force_parent = false) {
        if(! x($arr,'type'))
                $arr['type']      = 'remote';
 
+
+
+       /* check for create  date and expire time */
+       $uid = intval($arr['uid']);
+       $r = q("SELECT expire FROM user WHERE uid = %d", $uid);
+       if(count($r)) {
+               $expire_interval = $r[0]['expire'];
+               if ($expire_interval>0) {
+                       $expire_date =  new DateTime( '- '.$expire_interval.' days', new DateTimeZone('UTC'));
+                       $created_date = new DateTime($arr['created'], new DateTimeZone('UTC'));
+                       if ($created_date < $expire_date) {
+                               logger('item-store: item created ('.$arr['created'].') before expiration time ('.$expire_date->format(DateTime::W3C).'). ignored. ' . print_r($arr,true), LOGGER_DEBUG);
+                               return 0;
+                       }
+               }
+       }
+
        // Shouldn't happen but we want to make absolutely sure it doesn't leak from a plugin.
        // Deactivated, since the bbcode parser can handle with it - and it destroys posts with some smileys that contain "<"
        //if((strpos($arr['body'],'<') !== false) || (strpos($arr['body'],'>') !== false))
@@ -1647,7 +1664,7 @@ function dfrn_deliver($owner,$contact,$atom, $dissolve = false) {
        $final_dfrn_id = '';
 
        if($perm) {
-               if((($perm == 'rw') && (! intval($contact['writable']))) 
+               if((($perm == 'rw') && (! intval($contact['writable'])))
                || (($perm == 'r') && (intval($contact['writable'])))) {
                        q("update contact set writable = %d where id = %d",
                                intval(($perm == 'rw') ? 1 : 0),
@@ -1657,7 +1674,7 @@ function dfrn_deliver($owner,$contact,$atom, $dissolve = false) {
                }
        }
 
-       if(($contact['duplex'] && strlen($contact['pubkey'])) 
+       if(($contact['duplex'] && strlen($contact['pubkey']))
                || ($owner['page-flags'] == PAGE_COMMUNITY && strlen($contact['pubkey']))
                || ($contact['rel'] == CONTACT_IS_SHARING && strlen($contact['pubkey']))) {
                openssl_public_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['pubkey']);
@@ -1675,7 +1692,7 @@ function dfrn_deliver($owner,$contact,$atom, $dissolve = false) {
 
        if($final_dfrn_id != $orig_id) {
                logger('dfrn_deliver: wrong dfrn_id.');
-               // did not decode properly - cannot trust this site 
+               // did not decode properly - cannot trust this site
                return 3;
        }
 
@@ -1698,16 +1715,16 @@ function dfrn_deliver($owner,$contact,$atom, $dissolve = false) {
 
        if($page)
                $postvars['page'] = $page;
-       
+
        if($rino && $rino_allowed && (! $dissolve)) {
                $key = substr(random_string(),0,16);
                $data = bin2hex(aes_encrypt($postvars['data'],$key));
                $postvars['data'] = $data;
-               logger('rino: sent key = ' . $key, LOGGER_DEBUG);       
+               logger('rino: sent key = ' . $key, LOGGER_DEBUG);
 
 
-               if($dfrn_version >= 2.1) {      
-                       if(($contact['duplex'] && strlen($contact['pubkey'])) 
+               if($dfrn_version >= 2.1) {
+                       if(($contact['duplex'] && strlen($contact['pubkey']))
                                || ($owner['page-flags'] == PAGE_COMMUNITY && strlen($contact['pubkey']))
                                || ($contact['rel'] == CONTACT_IS_SHARING && strlen($contact['pubkey']))) {
 
@@ -1758,7 +1775,7 @@ function dfrn_deliver($owner,$contact,$atom, $dissolve = false) {
 
        $res = parse_xml_string($xml);
 
-       return $res->status; 
+       return $res->status;
 }
 
 
@@ -1791,12 +1808,12 @@ function edited_timestamp_is_newer($existing, $update) {
  * $importer = the contact_record (joined to user_record) of the local user who owns this relationship.
  *             It is this person's stuff that is going to be updated.
  * $contact =  the person who is sending us stuff. If not set, we MAY be processing a "follow" activity
- *             from an external network and MAY create an appropriate contact record. Otherwise, we MUST 
+ *             from an external network and MAY create an appropriate contact record. Otherwise, we MUST
  *             have a contact record.
- * $hub = should we find a hub declation in the feed, pass it back to our calling process, who might (or 
+ * $hub = should we find a hub declation in the feed, pass it back to our calling process, who might (or
  *        might not) try and subscribe to it.
  * $datedir sorts in reverse order
- * $pass - by default ($pass = 0) we cannot guarantee that a parent item has been 
+ * $pass - by default ($pass = 0) we cannot guarantee that a parent item has been
  *      imported prior to its children being seen in the stream unless we are certain
  *      of how the feed is arranged/ordered.
  * With $pass = 1, we only pull parent items out of the stream.
@@ -1957,7 +1974,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
                         *
                         * $bdtext is just a readable placeholder in case the event is shared
                         * with others. We will replace it during presentation to our $importer
-                        * to contain a sparkle link and perhaps a photo. 
+                        * to contain a sparkle link and perhaps a photo.
                         *
                         */
 
@@ -1988,7 +2005,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
                        );
 
                        // This function is called twice without reloading the contact
-                       // Make sure we only create one event. This is why &$contact 
+                       // Make sure we only create one event. This is why &$contact
                        // is a reference var in this function
 
                        $contact['bdyear'] = substr($birthday,0,4);
@@ -2027,7 +2044,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
                                        $when = datetime_convert('UTC','UTC','now','Y-m-d H:i:s');
                        }
                        if($deleted && is_array($contact)) {
-                               $r = q("SELECT `item`.*, `contact`.`self` FROM `item` INNER JOIN `contact` on `item`.`contact-id` = `contact`.`id` 
+                               $r = q("SELECT `item`.*, `contact`.`self` FROM `item` INNER JOIN `contact` on `item`.`contact-id` = `contact`.`id`
                                        WHERE `uri` = '%s' AND `item`.`uid` = %d AND `contact-id` = %d AND NOT `item`.`file` LIKE '%%[%%' LIMIT 1",
                                        dbesc($uri),
                                        intval($importer['uid']),
@@ -2441,19 +2458,19 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
                                $datarray['contact-id'] = $contact['id'];
 
                                if(! link_compare($datarray['owner-link'],$contact['url'])) {
-                                       // The item owner info is not our contact. It's OK and is to be expected if this is a tgroup delivery, 
+                                       // The item owner info is not our contact. It's OK and is to be expected if this is a tgroup delivery,
                                        // but otherwise there's a possible data mixup on the sender's system.
                                        // the tgroup delivery code called from item_store will correct it if it's a forum,
-                                       // but we're going to unconditionally correct it here so that the post will always be owned by our contact. 
+                                       // but we're going to unconditionally correct it here so that the post will always be owned by our contact.
                                        logger('consume_feed: Correcting item owner.', LOGGER_DEBUG);
                                        $datarray['owner-name']   = $contact['name'];
                                        $datarray['owner-link']   = $contact['url'];
                                        $datarray['owner-avatar'] = $contact['thumb'];
                                }
 
-                               // We've allowed "followers" to reach this point so we can decide if they are 
+                               // We've allowed "followers" to reach this point so we can decide if they are
                                // posting an @-tag delivery, which followers are allowed to do for certain
-                               // page types. Now that we've parsed the post, let's check if it is legit. Otherwise ignore it. 
+                               // page types. Now that we've parsed the post, let's check if it is legit. Otherwise ignore it.
 
                                if(($contact['rel'] == CONTACT_IS_FOLLOWER) && (! tgroup_check($importer['uid'],$datarray)))
                                        continue;
@@ -2811,7 +2828,7 @@ function local_delivery($importer,$data) {
 
                dbesc_array($msg);
 
-               $r = dbq("INSERT INTO `mail` (`" . implode("`, `", array_keys($msg)) 
+               $r = dbq("INSERT INTO `mail` (`" . implode("`, `", array_keys($msg))
                        . "`) VALUES ('" . implode("', '", array_values($msg)) . "')" );
 
                // send notifications.
@@ -2895,18 +2912,18 @@ function local_delivery($importer,$data) {
                                        }
                                        else
                                                $sql_extra = " and contact.self = 1 and item.wall = 1 ";
-                                       // was the top-level post for this reply written by somebody on this site? 
-                                       // Specifically, the recipient? 
+
+                                       // was the top-level post for this reply written by somebody on this site?
+                                       // Specifically, the recipient?
 
                                        $is_a_remote_delete = false;
 
                                        // POSSIBLE CLEANUP --> Why select so many fields when only forum_mode and wall are used?
-                                       $r = q("select `item`.`id`, `item`.`uri`, `item`.`tag`, `item`.`forum_mode`,`item`.`origin`,`item`.`wall`, 
-                                               `contact`.`name`, `contact`.`url`, `contact`.`thumb` from `item` 
-                                               INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` 
+                                       $r = q("select `item`.`id`, `item`.`uri`, `item`.`tag`, `item`.`forum_mode`,`item`.`origin`,`item`.`wall`,
+                                               `contact`.`name`, `contact`.`url`, `contact`.`thumb` from `item`
+                                               INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
                                                WHERE `item`.`uri` = '%s' AND (`item`.`parent-uri` = '%s' or `item`.`thr-parent` = '%s')
-                                               AND `item`.`uid` = %d 
+                                               AND `item`.`uid` = %d
                                                $sql_extra
                                                LIMIT 1",
                                                dbesc($parent_uri),
@@ -2918,8 +2935,8 @@ function local_delivery($importer,$data) {
                                                $is_a_remote_delete = true;
 
                                        // Does this have the characteristics of a community or private group comment?
-                                       // If it's a reply to a wall post on a community/prvgroup page it's a 
-                                       // valid community comment. Also forum_mode makes it valid for sure. 
+                                       // If it's a reply to a wall post on a community/prvgroup page it's a
+                                       // valid community comment. Also forum_mode makes it valid for sure.
                                        // If neither, it's not.
 
                                        if($is_a_remote_delete && $community) {
@@ -3094,8 +3111,8 @@ function local_delivery($importer,$data) {
                        }
 
                        // Does this have the characteristics of a community or private group comment?
-                       // If it's a reply to a wall post on a community/prvgroup page it's a 
-                       // valid community comment. Also forum_mode makes it valid for sure. 
+                       // If it's a reply to a wall post on a community/prvgroup page it's a
+                       // valid community comment. Also forum_mode makes it valid for sure.
                        // If neither, it's not.
 
                        if($is_a_remote_comment && $community) {
@@ -3275,7 +3292,7 @@ function local_delivery($importer,$data) {
                                                                'link'             => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $posted_id,
                                                                'source_name'  => stripslashes($datarray['author-name']),
                                                                'source_link'  => $datarray['author-link'],
-                                                               'source_photo' => ((link_compare($datarray['author-link'],$importer['url'])) 
+                                                               'source_photo' => ((link_compare($datarray['author-link'],$importer['url']))
                                                                        ? $importer['thumb'] : $datarray['author-avatar']),
                                                                'verb'         => ACTIVITY_POST,
                                                                'otype'        => 'item',
@@ -3439,7 +3456,7 @@ function local_delivery($importer,$data) {
                                                                        'link'             => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $posted_id,
                                                                        'source_name'  => stripslashes($datarray['author-name']),
                                                                        'source_link'  => $datarray['author-link'],
-                                                                       'source_photo' => ((link_compare($datarray['author-link'],$importer['url'])) 
+                                                                       'source_photo' => ((link_compare($datarray['author-link'],$importer['url']))
                                                                                ? $importer['thumb'] : $datarray['author-avatar']),
                                                                        'verb'         => ACTIVITY_POST,
                                                                        'otype'        => 'item',
@@ -3539,10 +3556,10 @@ function local_delivery($importer,$data) {
 
 
                        if(! link_compare($datarray['owner-link'],$importer['url'])) {
-                               // The item owner info is not our contact. It's OK and is to be expected if this is a tgroup delivery, 
+                               // The item owner info is not our contact. It's OK and is to be expected if this is a tgroup delivery,
                                // but otherwise there's a possible data mixup on the sender's system.
                                // the tgroup delivery code called from item_store will correct it if it's a forum,
-                               // but we're going to unconditionally correct it here so that the post will always be owned by our contact. 
+                               // but we're going to unconditionally correct it here so that the post will always be owned by our contact.
                                logger('local_delivery: Correcting item owner.', LOGGER_DEBUG);
                                $datarray['owner-name']   = $importer['senderName'];
                                $datarray['owner-link']   = $importer['url'];
@@ -3569,7 +3586,7 @@ function local_delivery($importer,$data) {
                                foreach($links->link as $l) {
                                $atts = $l->attributes();
                                switch($atts['rel']) {
-                                       case "alternate": 
+                                       case "alternate":
                                                                $Blink = $atts['href'];
                                                                break;
                                                        default:
@@ -3592,7 +3609,7 @@ function local_delivery($importer,$data) {
                                                        'link'             => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $posted_id,
                                                        'source_name'  => stripslashes($datarray['author-name']),
                                                        'source_link'  => $datarray['author-link'],
-                                                       'source_photo' => ((link_compare($datarray['author-link'],$importer['url'])) 
+                                                       'source_photo' => ((link_compare($datarray['author-link'],$importer['url']))
                                                                ? $importer['thumb'] : $datarray['author-avatar']),
                                                        'verb'         => $datarray['verb'],
                                                        'otype'        => 'person',
@@ -3601,7 +3618,7 @@ function local_delivery($importer,$data) {
                                                ));
                                        }
                                }
-                       }                       
+                       }
 
                        continue;
                }
@@ -3637,7 +3654,7 @@ function new_follower($importer,$contact,$datarray,$item,$sharing = false) {
 
                // create contact record
 
-               $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`, `name`, `nick`, `photo`, `network`, `rel`, 
+               $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`, `name`, `nick`, `photo`, `network`, `rel`,
                        `blocked`, `readonly`, `pending`, `writable` )
                        VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, 0, 0, 1, 1 ) ",
                        intval($importer['uid']),
@@ -3689,7 +3706,7 @@ function new_follower($importer,$contact,$datarray,$item,$sharing = false) {
                                        '$siteurl' => $a->get_baseurl(),
                                        '$sitename' => $a->config['sitename']
                                ));
-                               $res = mail($r[0]['email'], 
+                               $res = mail($r[0]['email'],
                                        email_header_encode((($sharing) ? t('A new person is sharing with you at ') : t("You have a new follower at ")) . $a->config['sitename'],'UTF-8'),
                                        $email,
                                        'From: ' . 'Administrator' . '@' . $_SERVER['SERVER_NAME'] . "\n"
@@ -3738,7 +3755,7 @@ function subscribe_to_hub($url,$importer,$contact,$hubmode = 'subscribe') {
                );
        }
 
-       // Diaspora has different message-ids in feeds than they do 
+       // Diaspora has different message-ids in feeds than they do
        // through the direct Diaspora protocol. If we try and use
        // the feed, we'll get duplicates. So don't.
 
@@ -3934,7 +3951,7 @@ function fix_private_photos($s, $uid, $item = null, $cid = 0) {
                                        // Check to see if we should replace this photo link with an embedded image
                                        // 1. No need to do so if the photo is public
                                        // 2. If there's a contact-id provided, see if they're in the access list
-                                       //    for the photo. If so, embed it. 
+                                       //    for the photo. If so, embed it.
                                        // 3. Otherwise, if we have an item, see if the item permissions match the photo
                                        //    permissions, regardless of order but first check to see if they're an exact
                                        //    match to save some processing overhead.
@@ -3943,7 +3960,7 @@ function fix_private_photos($s, $uid, $item = null, $cid = 0) {
                                                if($cid) {
                                                        $recips = enumerate_permissions($r[0]);
                                                        if(in_array($cid, $recips)) {
-                                                               $replace = true;        
+                                                               $replace = true;
                                                        }
                                                }
                                                elseif($item) {
@@ -3976,7 +3993,7 @@ function fix_private_photos($s, $uid, $item = null, $cid = 0) {
                                        }
                                }
                        }
-               }       
+               }
 
                $new_body = $new_body . substr($orig_body, 0, $img_start + $img_st_close) . $image . '[/img]';
                $orig_body = substr($orig_body, $img_start + $img_st_close + $img_len + strlen('[/img]'));
@@ -4001,7 +4018,7 @@ function has_permissions($obj) {
 }
 
 function compare_permissions($obj1,$obj2) {
-       // first part is easy. Check that these are exactly the same. 
+       // first part is easy. Check that these are exactly the same.
        if(($obj1['allow_cid'] == $obj2['allow_cid'])
                && ($obj1['allow_gid'] == $obj2['allow_gid'])
                && ($obj1['deny_cid'] == $obj2['deny_cid'])
@@ -4043,14 +4060,14 @@ function item_getfeedtags($item) {
                                $ret[] = array('#',$matches[1][$x], $matches[2][$x]);
                }
        }
-       $matches = false; 
+       $matches = false;
        $cnt = preg_match_all('|\@\[url\=(.*?)\](.*?)\[\/url\]|',$item['tag'],$matches);
        if($cnt) {
                for($x = 0; $x < $cnt; $x ++) {
                        if($matches[1][$x])
                                $ret[] = array('@',$matches[1][$x], $matches[2][$x]);
                }
-       } 
+       }
        return $ret;
 }
 
@@ -4087,10 +4104,10 @@ function item_expire($uid,$days) {
        $expire_network_only = get_pconfig($uid,'expire','network_only');
        $sql_extra = ((intval($expire_network_only)) ? " AND wall = 0 " : "");
 
-       $r = q("SELECT * FROM `item` 
-               WHERE `uid` = %d 
-               AND `created` < UTC_TIMESTAMP() - INTERVAL %d DAY 
-               AND `id` = `parent` 
+       $r = q("SELECT * FROM `item`
+               WHERE `uid` = %d
+               AND `created` < UTC_TIMESTAMP() - INTERVAL %d DAY
+               AND `id` = `parent`
                $sql_extra
                AND `deleted` = 0",
                intval($uid),
@@ -4136,7 +4153,7 @@ function item_expire($uid,$days) {
        }
 
        proc_run('php',"include/notifier.php","expire","$uid");
-       
+
 }
 
 
@@ -4257,10 +4274,10 @@ function drop_item($id,$interactive = true) {
                        }
                }
 
-               // If item is a link to a photo resource, nuke all the associated photos 
+               // If item is a link to a photo resource, nuke all the associated photos
                // (visitors will not have photo resources)
                // This only applies to photos uploaded from the photos page. Photos inserted into a post do not
-               // generate a resource-id and therefore aren't intimately linked to the item. 
+               // generate a resource-id and therefore aren't intimately linked to the item.
 
                if(strlen($item['resource-id'])) {
                        q("DELETE FROM `photo` WHERE `resource-id` = '%s' AND `uid` = %d ",
@@ -4400,7 +4417,7 @@ function posted_dates($uid,$wall) {
        if(! $dthen)
                return array();
 
-       // If it's near the end of a long month, backup to the 28th so that in 
+       // If it's near the end of a long month, backup to the 28th so that in
        // consecutive loops we'll always get a whole month difference.
 
        if(intval(substr($dnow,8)) > 28)
index df3871bd78913f540f6ea46e99b8cb5698d1bc85..6632b7e89a06be014a37dd953eaa51b70eddedae 100644 (file)
@@ -19,6 +19,8 @@ function ref_session_read ($id) {
   if(count($r)) {
     $session_exists = true;
     return $r[0]['data'];
+  } else {
+    logger("no data for session $id", LOGGER_TRACE);
   }
   return '';
 }}
index 49d37488f9f54844e5539bbac39cc5be7ca31ca5..27271e2edbded66d9166af2b92203de46e72a95d 100644 (file)
@@ -1,4 +1,9 @@
 <?php
+/*
+ * This is the old template engine, now deprecated.
+ * Friendica's default template engine is Smarty3 (see include/friendica_smarty.php)
+ * 
+ */
 require_once 'object/TemplateEngine.php';
 
 define("KEY_NOT_EXISTS", '^R_key_not_Exists^');
index d515f28ca64266fd26e4dbda30ad6544be06c456..2490bf402b5a28869812e3f31a14dcef2ef69063 100644 (file)
@@ -1,13 +1,5 @@
 <?php
 
-// This is our template processor.
-// $s is the string requiring macro substitution.
-// $r is an array of key value pairs (search => replace)
-// returns substituted string.
-// WARNING: this is pretty basic, and doesn't properly handle search strings that are substrings of each other.
-// For instance if 'test' => "foo" and 'testing' => "bar", testing could become either bar or fooing, 
-// depending on the order in which they were declared in the array.
-
 require_once("include/template_processor.php");
 require_once("include/friendica_smarty.php");
 
@@ -661,6 +653,9 @@ function attribute_contains($attr,$s) {
 }}
 
 if(! function_exists('logger')) {
+/* setup int->string log level map */
+$LOGGER_LEVELS = array();
+       
 /**
  * log levels:
  * LOGGER_NORMAL (default)
@@ -678,9 +673,16 @@ function logger($msg,$level = 0) {
        // turn off logger in install mode
        global $a;
        global $db;
-
+       global $LOGGER_LEVELS;
+       
        if(($a->module == 'install') || (! ($db && $db->connected))) return;
 
+    if (count($LOGGER_LEVEL)==0){
+        foreach (get_defined_constants() as $k=>$v){
+            if (substr($k,0,7)=="LOGGER_") $LOGGER_LEVELS[$v] = substr($k,7,7);
+        }        
+    }
+    
        $debugging = get_config('system','debugging');
        $loglevel  = intval(get_config('system','loglevel'));
        $logfile   = get_config('system','logfile');
@@ -688,8 +690,19 @@ function logger($msg,$level = 0) {
        if((! $debugging) || (! $logfile) || ($level > $loglevel))
                return;
 
+       $callers = debug_backtrace(); 
+       $logline =  sprintf("%s@%s\t[%s]:%s:%s:%s\t%s\n", 
+                                datetime_convert(), 
+                                session_id(),
+                                $LOGGER_LEVELS[$level],
+                                basename($callers[0]['file']),
+                                $callers[0]['line'],
+                                $callers[1]['function'],
+                                $msg
+                               );
+       
        $stamp1 = microtime(true);
-       @file_put_contents($logfile, datetime_convert() . ':' . session_id() . ' ' . $msg . "\n", FILE_APPEND);
+       @file_put_contents($logfile, $logline, FILE_APPEND);
        $a->save_timestamp($stamp1, "file");
        return;
 }}
index 2334bb4a2c19887b30f16fa761949fb2de4a1a43..cf6fd25cbc71a25210576892ecf0b2a3ca8c9d23 100644 (file)
@@ -14,6 +14,11 @@ function ACPopup(elm,backend_url){
        this.kp_timer = false;
        this.url = backend_url;
 
+       this.conversation_id = null;
+       var conv_id = this.element.id.match(/\d+$/);
+       if (conv_id) this.conversation_id = conv_id[0];
+       console.log("ACPopup elm id",this.element.id,"conversation",this.conversation_id);
+
        var w = 530;
        var h = 130;
 
@@ -67,6 +72,7 @@ ACPopup.prototype._search = function(){
                count:100,
                search:this.searchText,
                type:'c',
+               conversation: this.conversation_id,
        }
        
        $.ajax({
@@ -79,8 +85,10 @@ ACPopup.prototype._search = function(){
                        if (data.tot>0){
                                that.cont.show();
                                $(data.items).each(function(){
-                                       html = "<img src='{0}' height='16px' width='16px'>{1} ({2})".format(this.photo, this.name, this.nick)
-                                               that.add(html, this.nick.replace(' ','') + '+' + this.id + ' - ' + this.link);
+                                       var html = "<img src='{0}' height='16px' width='16px'>{1} ({2})".format(this.photo, this.name, this.nick);
+                                       var nick = this.nick.replace(' ','');
+                                       if (this.id!=='')  nick += '+' + this.id; 
+                                       that.add(html, nick + ' - ' + this.link);
                                });                     
                        } else {
                                that.cont.hide();
index 7cc5694e5f974c571170aced3223a72b5add4bca..5c9395478478ae791dfb9106feff6b40d458df0f 100644 (file)
@@ -404,6 +404,7 @@ function admin_page_site_post(&$a){
        set_config('system','poll_interval',$poll_interval);
        set_config('system','maxloadavg',$maxloadavg);
        set_config('config','sitename',$sitename);
+       set_config('system','suppress_language',$suppress_language);
        if ($banner==""){
                // don't know why, but del_config doesn't work...
                q("DELETE FROM `config` WHERE `cat` = '%s' AND `k` = '%s' LIMIT 1",
index c6fdbed186d1f2cc35658ec025a3318c6378b7de..fc66e927a5ea48c4ce6f1cd99fa2c365821bac8d 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: 3.2.1748\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-26 09:22+0200\n"
+"POT-Creation-Date: 2014-05-16 11:05+0200\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"
@@ -22,25 +22,26 @@ msgstr ""
 msgid "This entry was edited"
 msgstr ""
 
-#: ../../object/Item.php:113 ../../mod/content.php:619
-#: ../../mod/photos.php:1355
+#: ../../object/Item.php:113 ../../mod/photos.php:1355
+#: ../../mod/content.php:619
 msgid "Private Message"
 msgstr ""
 
 #: ../../object/Item.php:117 ../../mod/editpost.php:109
-#: ../../mod/content.php:727 ../../mod/settings.php:670
+#: ../../mod/settings.php:671 ../../mod/content.php:727
 msgid "Edit"
 msgstr ""
 
-#: ../../object/Item.php:126 ../../mod/content.php:437
-#: ../../mod/content.php:739 ../../include/conversation.php:612
+#: ../../object/Item.php:126 ../../mod/photos.php:1649
+#: ../../mod/content.php:437 ../../mod/content.php:739
+#: ../../include/conversation.php:612
 msgid "Select"
 msgstr ""
 
-#: ../../object/Item.php:127 ../../mod/admin.php:908 ../../mod/content.php:438
-#: ../../mod/content.php:740 ../../mod/contacts.php:703
-#: ../../mod/settings.php:671 ../../mod/group.php:171
-#: ../../mod/photos.php:1646 ../../include/conversation.php:613
+#: ../../object/Item.php:127 ../../mod/admin.php:910 ../../mod/photos.php:1650
+#: ../../mod/contacts.php:703 ../../mod/settings.php:672
+#: ../../mod/group.php:171 ../../mod/content.php:438 ../../mod/content.php:740
+#: ../../include/conversation.php:613
 msgid "Delete"
 msgstr ""
 
@@ -68,8 +69,8 @@ msgstr ""
 msgid "add tag"
 msgstr ""
 
-#: ../../object/Item.php:213 ../../mod/content.php:683
-#: ../../mod/photos.php:1538
+#: ../../object/Item.php:213 ../../mod/photos.php:1538
+#: ../../mod/content.php:683
 msgid "I like this (toggle)"
 msgstr ""
 
@@ -77,8 +78,8 @@ msgstr ""
 msgid "like"
 msgstr ""
 
-#: ../../object/Item.php:214 ../../mod/content.php:684
-#: ../../mod/photos.php:1539
+#: ../../object/Item.php:214 ../../mod/photos.php:1539
+#: ../../mod/content.php:684
 msgid "I don't like this (toggle)"
 msgstr ""
 
@@ -131,17 +132,17 @@ msgstr ""
 msgid "%s from %s"
 msgstr ""
 
-#: ../../object/Item.php:341 ../../object/Item.php:657 ../../boot.php:693
-#: ../../mod/content.php:708 ../../mod/photos.php:1560
-#: ../../mod/photos.php:1604 ../../mod/photos.php:1687
+#: ../../object/Item.php:341 ../../object/Item.php:657
+#: ../../mod/photos.php:1560 ../../mod/photos.php:1604
+#: ../../mod/photos.php:1692 ../../mod/content.php:708 ../../boot.php:693
 msgid "Comment"
 msgstr ""
 
-#: ../../object/Item.php:344 ../../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:1541
-#: ../../include/conversation.php:690 ../../include/conversation.php:1102
+#: ../../object/Item.php:344 ../../mod/message.php:334
+#: ../../mod/message.php:565 ../../mod/editpost.php:124
+#: ../../mod/wallmessage.php:156 ../../mod/photos.php:1541
+#: ../../mod/content.php:498 ../../mod/content.php:882
+#: ../../include/conversation.php:690 ../../include/conversation.php:1107
 msgid "Please wait"
 msgstr ""
 
@@ -153,40 +154,37 @@ msgstr[0] ""
 msgstr[1] ""
 
 #: ../../object/Item.php:369 ../../object/Item.php:382
-#: ../../mod/content.php:604 ../../include/text.php:1946
+#: ../../mod/content.php:604 ../../include/text.php:1959
 msgid "comment"
 msgid_plural "comments"
 msgstr[0] ""
 msgstr[1] ""
 
-#: ../../object/Item.php:370 ../../boot.php:694 ../../mod/content.php:605
+#: ../../object/Item.php:370 ../../mod/content.php:605 ../../boot.php:694
 #: ../../include/contact_widgets.php:204
 msgid "show more"
 msgstr ""
 
-#: ../../object/Item.php:655 ../../mod/content.php:706
-#: ../../mod/photos.php:1558 ../../mod/photos.php:1602
-#: ../../mod/photos.php:1685
+#: ../../object/Item.php:655 ../../mod/photos.php:1558
+#: ../../mod/photos.php:1602 ../../mod/photos.php:1690
+#: ../../mod/content.php:706
 msgid "This is you"
 msgstr ""
 
-#: ../../object/Item.php:658 ../../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
-#: ../../view/theme/vier/config.php:47 ../../mod/mood.php:137
-#: ../../mod/install.php:248 ../../mod/install.php:286
-#: ../../mod/crepair.php:171 ../../mod/content.php:709
-#: ../../mod/contacts.php:464 ../../mod/profiles.php:634
+#: ../../object/Item.php:658 ../../mod/fsuggest.php:107
 #: ../../mod/message.php:335 ../../mod/message.php:564
-#: ../../mod/localtime.php:45 ../../mod/photos.php:1082
+#: ../../mod/events.php:478 ../../mod/photos.php:1082
 #: ../../mod/photos.php:1203 ../../mod/photos.php:1510
 #: ../../mod/photos.php:1561 ../../mod/photos.php:1605
-#: ../../mod/photos.php:1688 ../../mod/poke.php:199 ../../mod/events.php:478
-#: ../../mod/fsuggest.php:107 ../../mod/invite.php:140
-#: ../../mod/manage.php:110
+#: ../../mod/photos.php:1693 ../../mod/contacts.php:464
+#: ../../mod/invite.php:140 ../../mod/profiles.php:634
+#: ../../mod/manage.php:110 ../../mod/poke.php:199 ../../mod/localtime.php:45
+#: ../../mod/install.php:248 ../../mod/install.php:286
+#: ../../mod/content.php:709 ../../mod/mood.php:137 ../../mod/crepair.php:171
+#: ../../view/theme/diabook/theme.php:633
+#: ../../view/theme/diabook/config.php:148 ../../view/theme/vier/config.php:47
+#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64
+#: ../../view/theme/cleanzero/config.php:80
 msgid "Submit"
 msgstr ""
 
@@ -223,9 +221,9 @@ msgid "Video"
 msgstr ""
 
 #: ../../object/Item.php:667 ../../mod/editpost.php:145
-#: ../../mod/content.php:718 ../../mod/photos.php:1562
-#: ../../mod/photos.php:1606 ../../mod/photos.php:1689
-#: ../../include/conversation.php:1119
+#: ../../mod/photos.php:1562 ../../mod/photos.php:1606
+#: ../../mod/photos.php:1694 ../../mod/content.php:718
+#: ../../include/conversation.php:1124
 msgid "Preview"
 msgstr ""
 
@@ -241,32 +239,33 @@ msgstr ""
 msgid "Page not found."
 msgstr ""
 
-#: ../../index.php:359 ../../mod/group.php:72 ../../mod/profperm.php:19
+#: ../../index.php:359 ../../mod/profperm.php:19 ../../mod/group.php:72
 msgid "Permission denied"
 msgstr ""
 
-#: ../../index.php:360 ../../mod/mood.php:114 ../../mod/display.php:266
-#: ../../mod/register.php:41 ../../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:4 ../../mod/install.php:151 ../../mod/editpost.php:10
-#: ../../mod/attach.php:33 ../../mod/regmod.php:118 ../../mod/crepair.php:117
-#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:246
-#: ../../mod/settings.php:101 ../../mod/settings.php:590
-#: ../../mod/settings.php:595 ../../mod/profiles.php:146
-#: ../../mod/profiles.php:575 ../../mod/group.php:19 ../../mod/follow.php:9
-#: ../../mod/message.php:38 ../../mod/message.php:174
-#: ../../mod/viewcontacts.php:22 ../../mod/photos.php:134
-#: ../../mod/photos.php:1048 ../../mod/wall_attach.php:55
-#: ../../mod/poke.php:135 ../../mod/wall_upload.php:66
+#: ../../index.php:360 ../../mod/fsuggest.php:78 ../../mod/files.php:170
+#: ../../mod/notifications.php:66 ../../mod/message.php:38
+#: ../../mod/message.php:174 ../../mod/editpost.php:10
+#: ../../mod/dfrn_confirm.php:53 ../../mod/events.php:140
+#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
+#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
+#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:66 ../../mod/api.php:26
+#: ../../mod/api.php:31 ../../mod/photos.php:134 ../../mod/photos.php:1048
+#: ../../mod/register.php:41 ../../mod/attach.php:33
+#: ../../mod/contacts.php:246 ../../mod/follow.php:9 ../../mod/uimport.php:23
+#: ../../mod/allfriends.php:9 ../../mod/invite.php:15 ../../mod/invite.php:101
+#: ../../mod/settings.php:102 ../../mod/settings.php:591
+#: ../../mod/settings.php:596 ../../mod/display.php:266
+#: ../../mod/profiles.php:146 ../../mod/profiles.php:575
+#: ../../mod/wall_attach.php:55 ../../mod/suggest.php:56
+#: ../../mod/manage.php:96 ../../mod/delegate.php:6
+#: ../../mod/viewcontacts.php:22 ../../mod/notes.php:20 ../../mod/poke.php:135
 #: ../../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:145 ../../mod/item.php:161
-#: ../../mod/notifications.php:66 ../../mod/invite.php:15
-#: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9
-#: ../../wall_attach.php:55 ../../include/items.php:4373
+#: ../../mod/install.php:151 ../../mod/group.php:19 ../../mod/regmod.php:118
+#: ../../mod/item.php:145 ../../mod/item.php:161 ../../mod/mood.php:114
+#: ../../mod/network.php:4 ../../mod/crepair.php:117
+#: ../../include/items.php:4390
 msgid "Permission denied."
 msgstr ""
 
@@ -274,3919 +273,3712 @@ msgstr ""
 msgid "toggle mobile"
 msgstr ""
 
-#: ../../view/theme/perihel/theme.php:33
-#: ../../view/theme/diabook/theme.php:123 ../../mod/notifications.php:93
-#: ../../include/nav.php:104 ../../include/nav.php:145
-msgid "Home"
+#: ../../mod/update_notes.php:41 ../../mod/update_profile.php:41
+#: ../../mod/update_community.php:18 ../../mod/update_network.php:22
+#: ../../mod/update_display.php:22
+msgid "[Embedded content - reload page to view]"
 msgstr ""
 
-#: ../../view/theme/perihel/theme.php:33
-#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
-#: ../../include/nav.php:145
-msgid "Your posts and conversations"
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131
+msgid "Contact not found."
 msgstr ""
 
-#: ../../view/theme/perihel/theme.php:34
-#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979
-#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
-#: ../../include/nav.php:77 ../../include/profile_advanced.php:7
-#: ../../include/profile_advanced.php:84
-msgid "Profile"
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
 msgstr ""
 
-#: ../../view/theme/perihel/theme.php:34
-#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
-msgid "Your profile page"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
 msgstr ""
 
-#: ../../view/theme/perihel/theme.php:35
-#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1986
-#: ../../mod/fbrowser.php:25 ../../include/nav.php:78
-msgid "Photos"
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
 msgstr ""
 
-#: ../../view/theme/perihel/theme.php:35
-#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
-msgid "Your photos"
+#: ../../mod/dfrn_request.php:93
+msgid "This introduction has already been accepted."
 msgstr ""
 
-#: ../../view/theme/perihel/theme.php:36
-#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2003
-#: ../../mod/events.php:370 ../../include/nav.php:79
-msgid "Events"
+#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
+msgid "Profile location is not valid or does not contain profile information."
 msgstr ""
 
-#: ../../view/theme/perihel/theme.php:36
-#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79
-msgid "Your events"
+#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
+msgid "Warning: profile location has no identifiable owner name."
 msgstr ""
 
-#: ../../view/theme/perihel/theme.php:37
-#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
-msgid "Personal notes"
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
+msgid "Warning: profile location has no profile photo."
 msgstr ""
 
-#: ../../view/theme/perihel/theme.php:37
-#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
-msgid "Your personal photos"
-msgstr ""
+#: ../../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] ""
+msgstr[1] ""
 
-#: ../../view/theme/perihel/theme.php:38
-#: ../../view/theme/diabook/theme.php:129 ../../mod/community.php:32
-#: ../../include/nav.php:128
-msgid "Community"
+#: ../../mod/dfrn_request.php:170
+msgid "Introduction complete."
 msgstr ""
 
-#: ../../view/theme/perihel/config.php:89
-#: ../../view/theme/diabook/theme.php:621
-#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328
-msgid "don't show"
+#: ../../mod/dfrn_request.php:209
+msgid "Unrecoverable protocol error."
 msgstr ""
 
-#: ../../view/theme/perihel/config.php:89
-#: ../../view/theme/diabook/theme.php:621
-#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327
-msgid "show"
+#: ../../mod/dfrn_request.php:237
+msgid "Profile unavailable."
 msgstr ""
 
-#: ../../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
-#: ../../view/theme/vier/config.php:49
-msgid "Theme settings"
+#: ../../mod/dfrn_request.php:262
+#, php-format
+msgid "%s has received too many connection requests today."
 msgstr ""
 
-#: ../../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"
+#: ../../mod/dfrn_request.php:263
+msgid "Spam protection measures have been invoked."
 msgstr ""
 
-#: ../../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"
+#: ../../mod/dfrn_request.php:264
+msgid "Friends are advised to please try again in 24 hours."
 msgstr ""
 
-#: ../../view/theme/perihel/config.php:100
-#: ../../view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
+#: ../../mod/dfrn_request.php:326
+msgid "Invalid locator"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:688
-#: ../../include/nav.php:173
-msgid "Contacts"
+#: ../../mod/dfrn_request.php:335
+msgid "Invalid email address."
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:125
-msgid "Your contacts"
+#: ../../mod/dfrn_request.php:362
+msgid "This account has not been configured for email. Request failed."
 msgstr ""
 
-#: ../../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"
+#: ../../mod/dfrn_request.php:458
+msgid "Unable to resolve your name at the provided location."
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:391
-#: ../../view/theme/diabook/theme.php:626
-#: ../../view/theme/diabook/config.php:160
-msgid "Community Profiles"
+#: ../../mod/dfrn_request.php:471
+msgid "You have already introduced yourself here."
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:412
-#: ../../view/theme/diabook/theme.php:630
-#: ../../view/theme/diabook/config.php:164
-msgid "Last users"
+#: ../../mod/dfrn_request.php:475
+#, php-format
+msgid "Apparently you are already friends with %s."
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:441
-#: ../../view/theme/diabook/theme.php:632
-#: ../../view/theme/diabook/config.php:166
-msgid "Last likes"
+#: ../../mod/dfrn_request.php:496
+msgid "Invalid profile URL."
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118
-#: ../../include/conversation.php:246 ../../include/text.php:1940
-msgid "event"
+#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
+msgid "Disallowed profile URL."
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:466
-#: ../../view/theme/diabook/theme.php:475 ../../mod/tagger.php:62
-#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/subthread.php:87
-#: ../../include/conversation.php:121 ../../include/conversation.php:130
-#: ../../include/conversation.php:249 ../../include/conversation.php:258
-#: ../../include/diaspora.php:1908
-msgid "status"
+#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180
+msgid "Failed to update contact record."
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62
-#: ../../mod/like.php:150 ../../mod/subthread.php:87
-#: ../../include/conversation.php:126 ../../include/conversation.php:254
-#: ../../include/text.php:1942 ../../include/diaspora.php:1908
-msgid "photo"
+#: ../../mod/dfrn_request.php:592
+msgid "Your introduction has been sent."
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:167
-#: ../../include/conversation.php:137 ../../include/diaspora.php:1924
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
+#: ../../mod/dfrn_request.php:645
+msgid "Please login to confirm introduction."
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:486
-#: ../../view/theme/diabook/theme.php:631
-#: ../../view/theme/diabook/config.php:165
-msgid "Last photos"
+#: ../../mod/dfrn_request.php:659
+msgid ""
+"Incorrect identity currently logged in. Please login to <strong>this</"
+"strong> profile."
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60
-#: ../../mod/photos.php:155 ../../mod/photos.php:1062
-#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
-#: ../../mod/photos.php:1751 ../../mod/photos.php:1763
-msgid "Contact Photos"
+#: ../../mod/dfrn_request.php:670
+msgid "Hide this contact"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:155
-#: ../../mod/photos.php:729 ../../mod/photos.php:1187
-#: ../../mod/photos.php:1210 ../../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:334
-#: ../../include/user.php:341 ../../include/user.php:348
-msgid "Profile Photos"
+#: ../../mod/dfrn_request.php:673
+#, php-format
+msgid "Welcome home %s."
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:523
-#: ../../view/theme/diabook/theme.php:629
-#: ../../view/theme/diabook/config.php:163
-msgid "Find Friends"
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:524
-msgid "Local Directory"
+#: ../../mod/dfrn_request.php:675
+msgid "Confirm"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:49
-msgid "Global Directory"
+#: ../../mod/dfrn_request.php:716 ../../include/items.php:3703
+msgid "[Name Withheld]"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35
-msgid "Similar Interests"
+#: ../../mod/dfrn_request.php:761 ../../mod/photos.php:918
+#: ../../mod/videos.php:115 ../../mod/search.php:89 ../../mod/display.php:19
+#: ../../mod/community.php:18 ../../mod/viewcontacts.php:17
+#: ../../mod/directory.php:31
+msgid "Public access denied."
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:527 ../../mod/suggest.php:66
-#: ../../include/contact_widgets.php:34
-msgid "Friend Suggestions"
+#: ../../mod/dfrn_request.php:811
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37
-msgid "Invite Friends"
+#: ../../mod/dfrn_request.php:827
+msgid "<strike>Connect as an email follower</strike> (Coming soon)"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22
-#: ../../mod/admin.php:1005 ../../mod/admin.php:1213 ../../mod/settings.php:84
-#: ../../include/nav.php:169
-msgid "Settings"
+#: ../../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 ""
 
-#: ../../view/theme/diabook/theme.php:579
-#: ../../view/theme/diabook/theme.php:625
-#: ../../view/theme/diabook/config.php:159
-msgid "Earth Layers"
+#: ../../mod/dfrn_request.php:832
+msgid "Friend/Connection Request"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
+#: ../../mod/dfrn_request.php:833
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:585
-#: ../../view/theme/diabook/config.php:156
-msgid "Set longitude (X) for Earth Layers"
+#: ../../mod/dfrn_request.php:834
+msgid "Please answer the following:"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:586
-#: ../../view/theme/diabook/config.php:157
-msgid "Set latitude (Y) for Earth Layers"
+#: ../../mod/dfrn_request.php:835
+#, php-format
+msgid "Does %s know you?"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:627
-#: ../../view/theme/diabook/config.php:161
-msgid "Help or @NewHere ?"
+#: ../../mod/dfrn_request.php:836 ../../mod/message.php:209
+#: ../../mod/api.php:105 ../../mod/register.php:243 ../../mod/contacts.php:326
+#: ../../mod/settings.php:1001 ../../mod/settings.php:1007
+#: ../../mod/settings.php:1015 ../../mod/settings.php:1019
+#: ../../mod/settings.php:1024 ../../mod/settings.php:1030
+#: ../../mod/settings.php:1036 ../../mod/settings.php:1042
+#: ../../mod/settings.php:1072 ../../mod/settings.php:1073
+#: ../../mod/settings.php:1074 ../../mod/settings.php:1075
+#: ../../mod/settings.php:1076 ../../mod/profiles.php:614
+#: ../../mod/suggest.php:29 ../../include/items.php:4235
+msgid "Yes"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:628
-#: ../../view/theme/diabook/config.php:162
-msgid "Connect Services"
+#: ../../mod/dfrn_request.php:837 ../../mod/api.php:106
+#: ../../mod/register.php:244 ../../mod/settings.php:1001
+#: ../../mod/settings.php:1007 ../../mod/settings.php:1015
+#: ../../mod/settings.php:1019 ../../mod/settings.php:1024
+#: ../../mod/settings.php:1030 ../../mod/settings.php:1036
+#: ../../mod/settings.php:1042 ../../mod/settings.php:1072
+#: ../../mod/settings.php:1073 ../../mod/settings.php:1074
+#: ../../mod/settings.php:1075 ../../mod/settings.php:1076
+#: ../../mod/profiles.php:615
+msgid "No"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:622
-msgid "Show/hide boxes at right-hand column:"
+#: ../../mod/dfrn_request.php:838
+msgid "Add a personal note:"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:154
-msgid "Set color scheme"
+#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
+msgid "Friendica"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:155
-msgid "Set zoomfactor for Earth Layer"
+#: ../../mod/dfrn_request.php:841
+msgid "StatusNet/Federated Social Web"
 msgstr ""
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
+#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:731
+#: ../../include/contact_selectors.php:80
+msgid "Diaspora"
 msgstr ""
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
+#: ../../mod/dfrn_request.php:843
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search "
+"bar."
 msgstr ""
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
+#: ../../mod/dfrn_request.php:844
+msgid "Your Identity Address:"
 msgstr ""
 
-#: ../../view/theme/quattro/config.php:68 ../../view/theme/clean/config.php:76
-#: ../../view/theme/cleanzero/config.php:86
-msgid "Color scheme"
+#: ../../mod/dfrn_request.php:847
+msgid "Submit Request"
 msgstr ""
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
+#: ../../mod/dfrn_request.php:848 ../../mod/message.php:212
+#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../mod/photos.php:203
+#: ../../mod/photos.php:292 ../../mod/contacts.php:329 ../../mod/tagrm.php:11
+#: ../../mod/tagrm.php:94 ../../mod/settings.php:610
+#: ../../mod/settings.php:636 ../../mod/suggest.php:32
+#: ../../include/items.php:4238 ../../include/conversation.php:1127
+msgid "Cancel"
 msgstr ""
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
+#: ../../mod/files.php:156 ../../mod/videos.php:301
+#: ../../include/text.php:1400
+msgid "View Video"
 msgstr ""
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
+#: ../../mod/profile.php:21 ../../boot.php:1353
+msgid "Requested profile is not available."
 msgstr ""
 
-#: ../../view/theme/clean/config.php:54 ../../include/user.php:246
-#: ../../include/text.php:1676
-msgid "default"
+#: ../../mod/profile.php:155 ../../mod/display.php:99
+msgid "Access to this profile has been restricted."
 msgstr ""
 
-#: ../../view/theme/clean/config.php:74
-msgid "Background Image"
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
 msgstr ""
 
-#: ../../view/theme/clean/config.php:74
-msgid ""
-"The URL to a picture (e.g. from your photo album) that should be used as "
-"background image."
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
 msgstr ""
 
-#: ../../view/theme/clean/config.php:75
-msgid "Background Color"
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:211
+msgid "Discard"
 msgstr ""
 
-#: ../../view/theme/clean/config.php:75
-msgid "HEX value for the background color. Don't include the #"
+#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
+#: ../../mod/notifications.php:210 ../../mod/contacts.php:437
+#: ../../mod/contacts.php:491 ../../mod/contacts.php:701
+msgid "Ignore"
 msgstr ""
 
-#: ../../view/theme/clean/config.php:77
-msgid "font size"
+#: ../../mod/notifications.php:78
+msgid "System"
 msgstr ""
 
-#: ../../view/theme/clean/config.php:77
-msgid "base font size for your interface"
+#: ../../mod/notifications.php:83 ../../include/nav.php:142
+msgid "Network"
 msgstr ""
 
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
+#: ../../mod/notifications.php:88 ../../mod/network.php:365
+msgid "Personal"
 msgstr ""
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
+#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:123
+#: ../../include/nav.php:104 ../../include/nav.php:145
+msgid "Home"
 msgstr ""
 
-#: ../../view/theme/vier/config.php:50
-msgid "Set style"
+#: ../../mod/notifications.php:98 ../../include/nav.php:151
+msgid "Introductions"
 msgstr ""
 
-#: ../../boot.php:692
-msgid "Delete this item?"
+#: ../../mod/notifications.php:103 ../../mod/message.php:182
+#: ../../include/nav.php:158
+msgid "Messages"
 msgstr ""
 
-#: ../../boot.php:695
-msgid "show fewer"
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
 msgstr ""
 
-#: ../../boot.php:1023
-#, php-format
-msgid "Update %s failed. See error logs."
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
 msgstr ""
 
-#: ../../boot.php:1025
-#, php-format
-msgid "Update Error at %s"
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
+msgid "Notification type: "
 msgstr ""
 
-#: ../../boot.php:1135
-msgid "Create a New Account"
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
 msgstr ""
 
-#: ../../boot.php:1136 ../../mod/register.php:279 ../../include/nav.php:108
-msgid "Register"
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
 msgstr ""
 
-#: ../../boot.php:1160 ../../include/nav.php:73
-msgid "Logout"
+#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
+#: ../../mod/contacts.php:497
+msgid "Hide this contact from others"
 msgstr ""
 
-#: ../../boot.php:1161 ../../include/nav.php:91
-msgid "Login"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "Post a new friend activity"
 msgstr ""
 
-#: ../../boot.php:1163
-msgid "Nickname or Email address: "
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "if applicable"
 msgstr ""
 
-#: ../../boot.php:1164
-msgid "Password: "
+#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
+#: ../../mod/admin.php:908
+msgid "Approve"
 msgstr ""
 
-#: ../../boot.php:1165
-msgid "Remember me"
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
 msgstr ""
 
-#: ../../boot.php:1168
-msgid "Or login using OpenID: "
+#: ../../mod/notifications.php:181
+msgid "yes"
 msgstr ""
 
-#: ../../boot.php:1174
-msgid "Forgot your password?"
+#: ../../mod/notifications.php:181
+msgid "no"
 msgstr ""
 
-#: ../../boot.php:1175 ../../mod/lostpass.php:84
-msgid "Password Reset"
+#: ../../mod/notifications.php:188
+msgid "Approve as: "
 msgstr ""
 
-#: ../../boot.php:1177
-msgid "Website Terms of Service"
+#: ../../mod/notifications.php:189
+msgid "Friend"
 msgstr ""
 
-#: ../../boot.php:1178
-msgid "terms of service"
+#: ../../mod/notifications.php:190
+msgid "Sharer"
 msgstr ""
 
-#: ../../boot.php:1180
-msgid "Website Privacy Policy"
+#: ../../mod/notifications.php:190
+msgid "Fan/Admirer"
 msgstr ""
 
-#: ../../boot.php:1181
-msgid "privacy policy"
+#: ../../mod/notifications.php:196
+msgid "Friend/Connect Request"
 msgstr ""
 
-#: ../../boot.php:1314
-msgid "Requested account is not available."
+#: ../../mod/notifications.php:196
+msgid "New Follower"
 msgstr ""
 
-#: ../../boot.php:1353 ../../mod/profile.php:21
-msgid "Requested profile is not available."
+#: ../../mod/notifications.php:217
+msgid "No introductions."
 msgstr ""
 
-#: ../../boot.php:1393 ../../boot.php:1497
-msgid "Edit profile"
+#: ../../mod/notifications.php:220 ../../include/nav.php:152
+msgid "Notifications"
 msgstr ""
 
-#: ../../boot.php:1445 ../../mod/suggest.php:88 ../../mod/match.php:58
-#: ../../include/contact_widgets.php:9
-msgid "Connect"
+#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
+#: ../../mod/notifications.php:469
+#, php-format
+msgid "%s liked %s's post"
 msgstr ""
 
-#: ../../boot.php:1459
-msgid "Message"
+#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
+#: ../../mod/notifications.php:478
+#, php-format
+msgid "%s disliked %s's post"
 msgstr ""
 
-#: ../../boot.php:1467 ../../include/nav.php:171
-msgid "Profiles"
+#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
+#: ../../mod/notifications.php:492
+#, php-format
+msgid "%s is now friends with %s"
 msgstr ""
 
-#: ../../boot.php:1467
-msgid "Manage/edit profiles"
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
+#, php-format
+msgid "%s created a new post"
 msgstr ""
 
-#: ../../boot.php:1473 ../../boot.php:1499 ../../mod/profiles.php:730
-msgid "Change profile photo"
+#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
+#: ../../mod/notifications.php:501
+#, php-format
+msgid "%s commented on %s's post"
 msgstr ""
 
-#: ../../boot.php:1474 ../../mod/profiles.php:731
-msgid "Create New Profile"
+#: ../../mod/notifications.php:302
+msgid "No more network notifications."
 msgstr ""
 
-#: ../../boot.php:1484 ../../mod/profiles.php:742
-msgid "Profile Image"
+#: ../../mod/notifications.php:306
+msgid "Network Notifications"
 msgstr ""
 
-#: ../../boot.php:1487 ../../mod/profiles.php:744
-msgid "visible to everybody"
+#: ../../mod/notifications.php:332 ../../mod/notify.php:61
+msgid "No more system notifications."
 msgstr ""
 
-#: ../../boot.php:1488 ../../mod/profiles.php:745
-msgid "Edit visibility"
+#: ../../mod/notifications.php:336 ../../mod/notify.php:65
+msgid "System Notifications"
 msgstr ""
 
-#: ../../boot.php:1513 ../../mod/directory.php:134 ../../mod/events.php:471
-#: ../../include/event.php:40 ../../include/bb2diaspora.php:155
-msgid "Location:"
+#: ../../mod/notifications.php:427
+msgid "No more personal notifications."
 msgstr ""
 
-#: ../../boot.php:1515 ../../mod/directory.php:136
-#: ../../include/profile_advanced.php:17
-msgid "Gender:"
+#: ../../mod/notifications.php:431
+msgid "Personal Notifications"
 msgstr ""
 
-#: ../../boot.php:1518 ../../mod/directory.php:138
-#: ../../include/profile_advanced.php:37
-msgid "Status:"
+#: ../../mod/notifications.php:508
+msgid "No more home notifications."
 msgstr ""
 
-#: ../../boot.php:1520 ../../mod/directory.php:140
-#: ../../include/profile_advanced.php:48
-msgid "Homepage:"
+#: ../../mod/notifications.php:512
+msgid "Home Notifications"
 msgstr ""
 
-#: ../../boot.php:1596 ../../boot.php:1682
-msgid "g A l F d"
+#: ../../mod/like.php:150 ../../mod/tagger.php:62 ../../mod/subthread.php:87
+#: ../../view/theme/diabook/theme.php:471 ../../include/text.php:1955
+#: ../../include/diaspora.php:1908 ../../include/conversation.php:126
+#: ../../include/conversation.php:254
+msgid "photo"
 msgstr ""
 
-#: ../../boot.php:1597 ../../boot.php:1683
-msgid "F d"
+#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/tagger.php:62
+#: ../../mod/subthread.php:87 ../../view/theme/diabook/theme.php:466
+#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:1908
+#: ../../include/conversation.php:121 ../../include/conversation.php:130
+#: ../../include/conversation.php:249 ../../include/conversation.php:258
+msgid "status"
 msgstr ""
 
-#: ../../boot.php:1642 ../../boot.php:1723
-msgid "[today]"
+#: ../../mod/like.php:167 ../../view/theme/diabook/theme.php:480
+#: ../../include/diaspora.php:1924 ../../include/conversation.php:137
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
 msgstr ""
 
-#: ../../boot.php:1654
-msgid "Birthday Reminders"
+#: ../../mod/like.php:169 ../../include/conversation.php:140
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
 msgstr ""
 
-#: ../../boot.php:1655
-msgid "Birthdays this week:"
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
 msgstr ""
 
-#: ../../boot.php:1716
-msgid "[No description]"
+#: ../../mod/openid.php:53
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
 msgstr ""
 
-#: ../../boot.php:1734
-msgid "Event Reminders"
+#: ../../mod/openid.php:93 ../../include/auth.php:112
+#: ../../include/auth.php:175
+msgid "Login failed."
 msgstr ""
 
-#: ../../boot.php:1735
-msgid "Events this week:"
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
 msgstr ""
 
-#: ../../boot.php:1972 ../../include/nav.php:76
-msgid "Status"
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
 msgstr ""
 
-#: ../../boot.php:1975
-msgid "Status Messages and Posts"
+#: ../../mod/babel.php:31
+msgid "Source input: "
 msgstr ""
 
-#: ../../boot.php:1982
-msgid "Profile Details"
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
 msgstr ""
 
-#: ../../boot.php:1989 ../../mod/photos.php:52
-msgid "Photo Albums"
+#: ../../mod/babel.php:39
+msgid "bb2html: "
 msgstr ""
 
-#: ../../boot.php:1993 ../../boot.php:1996
-msgid "Videos"
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
 msgstr ""
 
-#: ../../boot.php:2006
-msgid "Events and Calendar"
+#: ../../mod/babel.php:47
+msgid "bb2md: "
 msgstr ""
 
-#: ../../boot.php:2010 ../../mod/notes.php:44
-msgid "Personal Notes"
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
 msgstr ""
 
-#: ../../boot.php:2013
-msgid "Only You Can See This"
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
 msgstr ""
 
-#: ../../mod/mood.php:62 ../../include/conversation.php:227
-#, php-format
-msgid "%1$s is currently %2$s"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
 msgstr ""
 
-#: ../../mod/mood.php:133
-msgid "Mood"
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
 msgstr ""
 
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
 msgstr ""
 
-#: ../../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:918
-#: ../../mod/videos.php:115
-msgid "Public access denied."
+#: ../../mod/admin.php:55
+msgid "Theme settings updated."
 msgstr ""
 
-#: ../../mod/display.php:51 ../../mod/display.php:270 ../../mod/decrypt.php:15
-#: ../../mod/admin.php:163 ../../mod/admin.php:953 ../../mod/admin.php:1153
-#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15
-#: ../../include/items.php:4177
-msgid "Item not found."
+#: ../../mod/admin.php:102 ../../mod/admin.php:573
+msgid "Site"
 msgstr ""
 
-#: ../../mod/display.php:99 ../../mod/profile.php:155
-msgid "Access to this profile has been restricted."
+#: ../../mod/admin.php:103 ../../mod/admin.php:901 ../../mod/admin.php:916
+msgid "Users"
 msgstr ""
 
-#: ../../mod/display.php:263
-msgid "Item has been removed."
+#: ../../mod/admin.php:104 ../../mod/admin.php:1005 ../../mod/admin.php:1058
+#: ../../mod/settings.php:57
+msgid "Plugins"
 msgstr ""
 
-#: ../../mod/decrypt.php:9 ../../mod/viewsrc.php:7
-msgid "Access denied."
+#: ../../mod/admin.php:105 ../../mod/admin.php:1224 ../../mod/admin.php:1258
+msgid "Themes"
 msgstr ""
 
-#: ../../mod/friendica.php:58
-msgid "This is Friendica, version"
+#: ../../mod/admin.php:106
+msgid "DB updates"
 msgstr ""
 
-#: ../../mod/friendica.php:59
-msgid "running at web location"
+#: ../../mod/admin.php:121 ../../mod/admin.php:128 ../../mod/admin.php:1345
+msgid "Logs"
 msgstr ""
 
-#: ../../mod/friendica.php:61
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
+#: ../../mod/admin.php:126 ../../include/nav.php:180
+msgid "Admin"
 msgstr ""
 
-#: ../../mod/friendica.php:63
-msgid "Bug reports and issues: please visit"
+#: ../../mod/admin.php:127
+msgid "Plugin Features"
 msgstr ""
 
-#: ../../mod/friendica.php:64
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
+#: ../../mod/admin.php:129
+msgid "User registrations waiting for confirmation"
 msgstr ""
 
-#: ../../mod/friendica.php:78
-msgid "Installed plugins/addons/apps:"
+#: ../../mod/admin.php:164 ../../mod/admin.php:955 ../../mod/admin.php:1166
+#: ../../mod/notice.php:15 ../../mod/display.php:51 ../../mod/display.php:270
+#: ../../mod/viewsrc.php:15 ../../include/items.php:4194
+msgid "Item not found."
 msgstr ""
 
-#: ../../mod/friendica.php:91
-msgid "No installed plugins/addons/apps"
+#: ../../mod/admin.php:188 ../../mod/admin.php:855
+msgid "Normal Account"
 msgstr ""
 
-#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
-#, php-format
-msgid "%1$s welcomes %2$s"
+#: ../../mod/admin.php:189 ../../mod/admin.php:856
+msgid "Soapbox Account"
 msgstr ""
 
-#: ../../mod/register.php:92 ../../mod/admin.php:735 ../../mod/regmod.php:54
-#, php-format
-msgid "Registration details for %s"
+#: ../../mod/admin.php:190 ../../mod/admin.php:857
+msgid "Community/Celebrity Account"
 msgstr ""
 
-#: ../../mod/register.php:100
-msgid ""
-"Registration successful. Please check your email for further instructions."
+#: ../../mod/admin.php:191 ../../mod/admin.php:858
+msgid "Automatic Friend Account"
 msgstr ""
 
-#: ../../mod/register.php:104
-msgid "Failed to send email message. Here is the message that failed."
+#: ../../mod/admin.php:192
+msgid "Blog Account"
 msgstr ""
 
-#: ../../mod/register.php:109
-msgid "Your registration can not be processed."
+#: ../../mod/admin.php:193
+msgid "Private Forum"
 msgstr ""
 
-#: ../../mod/register.php:149
-#, php-format
-msgid "Registration request at %s"
+#: ../../mod/admin.php:212
+msgid "Message queues"
 msgstr ""
 
-#: ../../mod/register.php:158
-msgid "Your registration is pending approval by the site owner."
+#: ../../mod/admin.php:217 ../../mod/admin.php:572 ../../mod/admin.php:900
+#: ../../mod/admin.php:1004 ../../mod/admin.php:1057 ../../mod/admin.php:1223
+#: ../../mod/admin.php:1257 ../../mod/admin.php:1344
+msgid "Administration"
 msgstr ""
 
-#: ../../mod/register.php:196 ../../mod/uimport.php:50
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
+#: ../../mod/admin.php:218
+msgid "Summary"
 msgstr ""
 
-#: ../../mod/register.php:224
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
+#: ../../mod/admin.php:220
+msgid "Registered users"
 msgstr ""
 
-#: ../../mod/register.php:225
-msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
+#: ../../mod/admin.php:222
+msgid "Pending registrations"
 msgstr ""
 
-#: ../../mod/register.php:226
-msgid "Your OpenID (optional): "
+#: ../../mod/admin.php:223
+msgid "Version"
 msgstr ""
 
-#: ../../mod/register.php:240
-msgid "Include your profile in member directory?"
+#: ../../mod/admin.php:225
+msgid "Active plugins"
 msgstr ""
 
-#: ../../mod/register.php:243 ../../mod/api.php:105 ../../mod/suggest.php:29
-#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:326
-#: ../../mod/settings.php:998 ../../mod/settings.php:1004
-#: ../../mod/settings.php:1012 ../../mod/settings.php:1016
-#: ../../mod/settings.php:1021 ../../mod/settings.php:1027
-#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
-#: ../../mod/settings.php:1069 ../../mod/settings.php:1070
-#: ../../mod/settings.php:1071 ../../mod/settings.php:1072
-#: ../../mod/settings.php:1073 ../../mod/profiles.php:614
-#: ../../mod/message.php:209 ../../include/items.php:4218
-msgid "Yes"
+#: ../../mod/admin.php:248
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
 msgstr ""
 
-#: ../../mod/register.php:244 ../../mod/api.php:106
-#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:998
-#: ../../mod/settings.php:1004 ../../mod/settings.php:1012
-#: ../../mod/settings.php:1016 ../../mod/settings.php:1021
-#: ../../mod/settings.php:1027 ../../mod/settings.php:1033
-#: ../../mod/settings.php:1039 ../../mod/settings.php:1069
-#: ../../mod/settings.php:1070 ../../mod/settings.php:1071
-#: ../../mod/settings.php:1072 ../../mod/settings.php:1073
-#: ../../mod/profiles.php:615
-msgid "No"
+#: ../../mod/admin.php:485
+msgid "Site settings updated."
 msgstr ""
 
-#: ../../mod/register.php:261
-msgid "Membership on this site is by invitation only."
+#: ../../mod/admin.php:514 ../../mod/settings.php:823
+msgid "No special theme for mobile devices"
 msgstr ""
 
-#: ../../mod/register.php:262
-msgid "Your invitation ID: "
+#: ../../mod/admin.php:531 ../../mod/contacts.php:408
+msgid "Never"
 msgstr ""
 
-#: ../../mod/register.php:265 ../../mod/admin.php:573
-msgid "Registration"
+#: ../../mod/admin.php:532
+msgid "At post arrival"
 msgstr ""
 
-#: ../../mod/register.php:273
-msgid "Your Full Name (e.g. Joe Smith): "
+#: ../../mod/admin.php:533 ../../include/contact_selectors.php:56
+msgid "Frequently"
 msgstr ""
 
-#: ../../mod/register.php:274
-msgid "Your Email Address: "
+#: ../../mod/admin.php:534 ../../include/contact_selectors.php:57
+msgid "Hourly"
 msgstr ""
 
-#: ../../mod/register.php:275
-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>'."
+#: ../../mod/admin.php:535 ../../include/contact_selectors.php:58
+msgid "Twice daily"
 msgstr ""
 
-#: ../../mod/register.php:276
-msgid "Choose a nickname: "
+#: ../../mod/admin.php:536 ../../include/contact_selectors.php:59
+msgid "Daily"
 msgstr ""
 
-#: ../../mod/register.php:285 ../../mod/uimport.php:64
-msgid "Import"
+#: ../../mod/admin.php:541
+msgid "Multi user instance"
 msgstr ""
 
-#: ../../mod/register.php:286
-msgid "Import your profile to this friendica instance"
+#: ../../mod/admin.php:559
+msgid "Closed"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18
-#: ../../mod/profiles.php:133 ../../mod/profiles.php:160
-#: ../../mod/profiles.php:587
-msgid "Profile not found."
+#: ../../mod/admin.php:560
+msgid "Requires approval"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131
-#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
-msgid "Contact not found."
+#: ../../mod/admin.php:561
+msgid "Open"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:119
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it "
-"has already been approved."
+#: ../../mod/admin.php:565
+msgid "No SSL policy, links will track page SSL state"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:237
-msgid "Response from remote site was not understood."
+#: ../../mod/admin.php:566
+msgid "Force all links to use SSL"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:246
-msgid "Unexpected response from remote site: "
+#: ../../mod/admin.php:567
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:254
-msgid "Confirmation completed successfully."
+#: ../../mod/admin.php:574 ../../mod/admin.php:1059 ../../mod/admin.php:1259
+#: ../../mod/admin.php:1346 ../../mod/settings.php:609
+#: ../../mod/settings.php:719 ../../mod/settings.php:793
+#: ../../mod/settings.php:872 ../../mod/settings.php:1104
+msgid "Save Settings"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
-#: ../../mod/dfrn_confirm.php:277
-msgid "Remote site reported: "
+#: ../../mod/admin.php:575 ../../mod/register.php:265
+msgid "Registration"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:268
-msgid "Temporary failure. Please wait and try again."
+#: ../../mod/admin.php:576
+msgid "File upload"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:275
-msgid "Introduction failed or was revoked."
+#: ../../mod/admin.php:577
+msgid "Policies"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:420
-msgid "Unable to set contact photo."
+#: ../../mod/admin.php:578
+msgid "Advanced"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:477 ../../include/conversation.php:172
-#: ../../include/diaspora.php:620
-#, php-format
-msgid "%1$s is now friends with %2$s"
+#: ../../mod/admin.php:579
+msgid "Performance"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:562
-#, php-format
-msgid "No user record found for '%s' "
+#: ../../mod/admin.php:580
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:572
-msgid "Our site encryption key is apparently messed up."
+#: ../../mod/admin.php:583
+msgid "Site name"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:583
-msgid "Empty site URL was provided or URL could not be decrypted by us."
+#: ../../mod/admin.php:584
+msgid "Banner/Logo"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:604
-msgid "Contact record was not found for you on our site."
+#: ../../mod/admin.php:585
+msgid "Additional Info"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:618
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
+#: ../../mod/admin.php:585
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at dir.friendica.com/siteinfo."
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:638
+#: ../../mod/admin.php:586
+msgid "System language"
+msgstr ""
+
+#: ../../mod/admin.php:587
+msgid "System theme"
+msgstr ""
+
+#: ../../mod/admin.php:587
 msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:649
-msgid "Unable to set your contact credentials on our system."
+#: ../../mod/admin.php:588
+msgid "Mobile system theme"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:716
-msgid "Unable to update your contact profile details on our system"
+#: ../../mod/admin.php:588
+msgid "Theme for mobile devices"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:751
-#, php-format
-msgid "Connection accepted at %s"
+#: ../../mod/admin.php:589
+msgid "SSL link policy"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:800
-#, php-format
-msgid "%1$s has joined %2$s"
+#: ../../mod/admin.php:589
+msgid "Determines whether generated links should be forced to use SSL"
 msgstr ""
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
+#: ../../mod/admin.php:590
+msgid "Old style 'Share'"
 msgstr ""
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
+#: ../../mod/admin.php:590
+msgid "Deactivates the bbcode element 'share' for repeating items."
 msgstr ""
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
+#: ../../mod/admin.php:591
+msgid "Hide help entry from navigation menu"
 msgstr ""
 
-#: ../../mod/api.php:104
+#: ../../mod/admin.php:591
 msgid ""
-"Do you want to authorize this application to access your posts and contacts, "
-"and/or create new posts for you?"
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
 msgstr ""
 
-#: ../../mod/lostpass.php:17
-msgid "No valid account found."
+#: ../../mod/admin.php:592
+msgid "Single user instance"
 msgstr ""
 
-#: ../../mod/lostpass.php:33
-msgid "Password reset request issued. Check your email."
+#: ../../mod/admin.php:592
+msgid "Make this instance multi-user or single-user for the named user"
 msgstr ""
 
-#: ../../mod/lostpass.php:44
-#, php-format
-msgid "Password reset requested at %s"
+#: ../../mod/admin.php:593
+msgid "Maximum image size"
 msgstr ""
 
-#: ../../mod/lostpass.php:66
+#: ../../mod/admin.php:593
 msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
 msgstr ""
 
-#: ../../mod/lostpass.php:85
-msgid "Your password has been reset as requested."
+#: ../../mod/admin.php:594
+msgid "Maximum image length"
 msgstr ""
 
-#: ../../mod/lostpass.php:86
-msgid "Your new password is"
-msgstr ""
-
-#: ../../mod/lostpass.php:87
-msgid "Save or copy your new password - and then"
+#: ../../mod/admin.php:594
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
 msgstr ""
 
-#: ../../mod/lostpass.php:88
-msgid "click here to login"
+#: ../../mod/admin.php:595
+msgid "JPEG image quality"
 msgstr ""
 
-#: ../../mod/lostpass.php:89
+#: ../../mod/admin.php:595
 msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
 msgstr ""
 
-#: ../../mod/lostpass.php:107
-#, php-format
-msgid "Your password has been changed at %s"
+#: ../../mod/admin.php:597
+msgid "Register policy"
 msgstr ""
 
-#: ../../mod/lostpass.php:122
-msgid "Forgot your Password?"
+#: ../../mod/admin.php:598
+msgid "Maximum Daily Registrations"
 msgstr ""
 
-#: ../../mod/lostpass.php:123
+#: ../../mod/admin.php:598
 msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
+"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/lostpass.php:124
-msgid "Nickname or Email: "
+#: ../../mod/admin.php:599
+msgid "Register text"
 msgstr ""
 
-#: ../../mod/lostpass.php:125
-msgid "Reset"
+#: ../../mod/admin.php:599
+msgid "Will be displayed prominently on the registration page."
 msgstr ""
 
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
+#: ../../mod/admin.php:600
+msgid "Accounts abandoned after x days"
 msgstr ""
 
-#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
-msgid "No recipient selected."
+#: ../../mod/admin.php:600
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
 msgstr ""
 
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
+#: ../../mod/admin.php:601
+msgid "Allowed friend domains"
 msgstr ""
 
-#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
-msgid "Message could not be sent."
+#: ../../mod/admin.php:601
+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/wallmessage.php:65 ../../mod/message.php:73
-msgid "Message collection failure."
+#: ../../mod/admin.php:602
+msgid "Allowed email domains"
 msgstr ""
 
-#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
-msgid "Message sent."
+#: ../../mod/admin.php:602
+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/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
+#: ../../mod/admin.php:603
+msgid "Block public"
 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:1000 ../../include/conversation.php:1018
-msgid "Please enter a link URL:"
+#: ../../mod/admin.php:603
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
 msgstr ""
 
-#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
-msgid "Send Private Message"
+#: ../../mod/admin.php:604
+msgid "Force publish"
 msgstr ""
 
-#: ../../mod/wallmessage.php:143
-#, php-format
+#: ../../mod/admin.php:604
 msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
+"Check to force all profiles on this site to be listed in the site directory."
 msgstr ""
 
-#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
-#: ../../mod/message.php:553
-msgid "To:"
+#: ../../mod/admin.php:605
+msgid "Global directory update URL"
 msgstr ""
 
-#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
-#: ../../mod/message.php:555
-msgid "Subject:"
+#: ../../mod/admin.php:605
+msgid ""
+"URL to update the global directory. If this is not set, the global directory "
+"is completely unavailable to the application."
 msgstr ""
 
-#: ../../mod/wallmessage.php:151 ../../mod/message.php:329
-#: ../../mod/message.php:558 ../../mod/invite.php:134
-msgid "Your message:"
+#: ../../mod/admin.php:606
+msgid "Allow threaded items"
 msgstr ""
 
-#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
-#: ../../mod/message.php:332 ../../mod/message.php:562
-#: ../../include/conversation.php:1084
-msgid "Upload photo"
+#: ../../mod/admin.php:606
+msgid "Allow infinite level threading for items on this site."
 msgstr ""
 
-#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114
-#: ../../mod/message.php:333 ../../mod/message.php:563
-#: ../../include/conversation.php:1088
-msgid "Insert web link"
+#: ../../mod/admin.php:607
+msgid "Private posts by default for new users"
 msgstr ""
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
+#: ../../mod/admin.php:607
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
 msgstr ""
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
+#: ../../mod/admin.php:608
+msgid "Don't include post content in email notifications"
 msgstr ""
 
-#: ../../mod/newmember.php:12
+#: ../../mod/admin.php:608
 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 ""
-
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
+"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/newmember.php:18
-msgid "Friendica Walk-Through"
+#: ../../mod/admin.php:609
+msgid "Disallow public access to addons listed in the apps menu."
 msgstr ""
 
-#: ../../mod/newmember.php:18
+#: ../../mod/admin.php:609
 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."
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
 msgstr ""
 
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
+#: ../../mod/admin.php:610
+msgid "Don't embed private images in posts"
 msgstr ""
 
-#: ../../mod/newmember.php:26
+#: ../../mod/admin.php:610
 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."
+"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/newmember.php:28
+#: ../../mod/admin.php:611
+msgid "Allow Users to set remote_self"
+msgstr ""
+
+#: ../../mod/admin.php:611
 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."
+"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/newmember.php:36 ../../mod/profile_photo.php:244
-msgid "Upload Profile Photo"
+#: ../../mod/admin.php:612
+msgid "Block multiple registrations"
 msgstr ""
 
-#: ../../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."
+#: ../../mod/admin.php:612
+msgid "Disallow users to register additional accounts for use as pages."
 msgstr ""
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
+#: ../../mod/admin.php:613
+msgid "OpenID support"
 msgstr ""
 
-#: ../../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."
+#: ../../mod/admin.php:613
+msgid "OpenID support for registration and logins."
 msgstr ""
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
+#: ../../mod/admin.php:614
+msgid "Fullname check"
 msgstr ""
 
-#: ../../mod/newmember.php:40
+#: ../../mod/admin.php:614
 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."
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
 msgstr ""
 
-#: ../../mod/newmember.php:44
-msgid "Connecting"
+#: ../../mod/admin.php:615
+msgid "UTF-8 Regular expressions"
 msgstr ""
 
-#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-#: ../../include/contact_selectors.php:81
-msgid "Facebook"
+#: ../../mod/admin.php:615
+msgid "Use PHP UTF8 regular expressions"
 msgstr ""
 
-#: ../../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."
+#: ../../mod/admin.php:616
+msgid "Show Community Page"
 msgstr ""
 
-#: ../../mod/newmember.php:51
+#: ../../mod/admin.php:616
 msgid ""
-"<em>If</em> this is your own personal server, installing the Facebook addon "
-"may ease your transition to the free social web."
+"Display a Community page showing all recent public postings on this site."
 msgstr ""
 
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
+#: ../../mod/admin.php:617
+msgid "Enable OStatus support"
 msgstr ""
 
-#: ../../mod/newmember.php:56
+#: ../../mod/admin.php:617
 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"
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
 msgstr ""
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
+#: ../../mod/admin.php:618
+msgid "OStatus conversation completion interval"
 msgstr ""
 
-#: ../../mod/newmember.php:58
+#: ../../mod/admin.php:618
 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."
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
 msgstr ""
 
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
+#: ../../mod/admin.php:619
+msgid "Enable Diaspora support"
 msgstr ""
 
-#: ../../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."
+#: ../../mod/admin.php:619
+msgid "Provide built-in Diaspora network compatibility."
 msgstr ""
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
+#: ../../mod/admin.php:620
+msgid "Only allow Friendica contacts"
 msgstr ""
 
-#: ../../mod/newmember.php:62
+#: ../../mod/admin.php:620
 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 ""
-
-#: ../../mod/newmember.php:66 ../../include/group.php:270
-msgid "Groups"
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
 msgstr ""
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
+#: ../../mod/admin.php:621
+msgid "Verify SSL"
 msgstr ""
 
-#: ../../mod/newmember.php:70
+#: ../../mod/admin.php:621
 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."
+"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/newmember.php:73
-msgid "Why Aren't My Posts Public?"
+#: ../../mod/admin.php:622
+msgid "Proxy user"
 msgstr ""
 
-#: ../../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."
+#: ../../mod/admin.php:623
+msgid "Proxy URL"
 msgstr ""
 
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
+#: ../../mod/admin.php:624
+msgid "Network timeout"
 msgstr ""
 
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
+#: ../../mod/admin.php:624
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr ""
 
-#: ../../mod/newmember.php:82
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program "
-"features and resources."
+#: ../../mod/admin.php:625
+msgid "Delivery interval"
 msgstr ""
 
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
+#: ../../mod/admin.php:625
+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/suggest.php:32 ../../mod/editpost.php:148
-#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:329
-#: ../../mod/settings.php:609 ../../mod/settings.php:635
-#: ../../mod/message.php:212 ../../mod/photos.php:203 ../../mod/photos.php:292
-#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81
-#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1122
-#: ../../include/items.php:4221
-msgid "Cancel"
+#: ../../mod/admin.php:626
+msgid "Poll interval"
 msgstr ""
 
-#: ../../mod/suggest.php:72
+#: ../../mod/admin.php:626
 msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
 msgstr ""
 
-#: ../../mod/suggest.php:90
-msgid "Ignore/Hide"
+#: ../../mod/admin.php:627
+msgid "Maximum Load Average"
 msgstr ""
 
-#: ../../mod/network.php:136
-msgid "Search Results For:"
+#: ../../mod/admin.php:627
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
 msgstr ""
 
-#: ../../mod/network.php:179 ../../mod/_search.php:21 ../../mod/search.php:21
-msgid "Remove term"
+#: ../../mod/admin.php:629
+msgid "Use MySQL full text engine"
 msgstr ""
 
-#: ../../mod/network.php:188 ../../mod/_search.php:30 ../../mod/search.php:30
-#: ../../include/features.php:42
-msgid "Saved Searches"
+#: ../../mod/admin.php:629
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
 msgstr ""
 
-#: ../../mod/network.php:189 ../../include/group.php:275
-msgid "add"
+#: ../../mod/admin.php:630
+msgid "Suppress Language"
 msgstr ""
 
-#: ../../mod/network.php:350
-msgid "Commented Order"
+#: ../../mod/admin.php:630
+msgid "Suppress language information in meta information about a posting."
 msgstr ""
 
-#: ../../mod/network.php:353
-msgid "Sort by Comment Date"
+#: ../../mod/admin.php:631
+msgid "Path to item cache"
 msgstr ""
 
-#: ../../mod/network.php:356
-msgid "Posted Order"
+#: ../../mod/admin.php:632
+msgid "Cache duration in seconds"
 msgstr ""
 
-#: ../../mod/network.php:359
-msgid "Sort by Post Date"
+#: ../../mod/admin.php:632
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One "
+"day)."
 msgstr ""
 
-#: ../../mod/network.php:365 ../../mod/notifications.php:88
-msgid "Personal"
+#: ../../mod/admin.php:633
+msgid "Path for lock file"
 msgstr ""
 
-#: ../../mod/network.php:368
-msgid "Posts that mention or involve you"
+#: ../../mod/admin.php:634
+msgid "Temp path"
 msgstr ""
 
-#: ../../mod/network.php:374
-msgid "New"
+#: ../../mod/admin.php:635
+msgid "Base path to installation"
 msgstr ""
 
-#: ../../mod/network.php:377
-msgid "Activity Stream - by date"
+#: ../../mod/admin.php:637
+msgid "New base url"
 msgstr ""
 
-#: ../../mod/network.php:383
-msgid "Shared Links"
+#: ../../mod/admin.php:655
+msgid "Update has been marked successful"
 msgstr ""
 
-#: ../../mod/network.php:386
-msgid "Interesting Links"
+#: ../../mod/admin.php:665
+#, php-format
+msgid "Executing %s failed. Check system logs."
 msgstr ""
 
-#: ../../mod/network.php:392
-msgid "Starred"
+#: ../../mod/admin.php:668
+#, php-format
+msgid "Update %s was successfully applied."
 msgstr ""
 
-#: ../../mod/network.php:395
-msgid "Favourite Posts"
+#: ../../mod/admin.php:672
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr ""
 
-#: ../../mod/network.php:457
+#: ../../mod/admin.php:675
 #, 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] ""
-msgstr[1] ""
-
-#: ../../mod/network.php:460
-msgid "Private messages to this group are at risk of public disclosure."
+msgid "Update function %s could not be found."
 msgstr ""
 
-#: ../../mod/network.php:514 ../../mod/content.php:119
-msgid "No such group"
+#: ../../mod/admin.php:690
+msgid "No failed updates."
 msgstr ""
 
-#: ../../mod/network.php:531 ../../mod/content.php:130
-msgid "Group is empty"
+#: ../../mod/admin.php:694
+msgid "Failed Updates"
 msgstr ""
 
-#: ../../mod/network.php:538 ../../mod/content.php:134
-msgid "Group: "
+#: ../../mod/admin.php:695
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
 msgstr ""
 
-#: ../../mod/network.php:548
-msgid "Contact: "
+#: ../../mod/admin.php:696
+msgid "Mark success (if update was manually applied)"
 msgstr ""
 
-#: ../../mod/network.php:550
-msgid "Private messages to this person are at risk of public disclosure."
+#: ../../mod/admin.php:697
+msgid "Attempt to execute this update step automatically"
 msgstr ""
 
-#: ../../mod/network.php:555
-msgid "Invalid contact."
+#: ../../mod/admin.php:737 ../../mod/register.php:92 ../../mod/regmod.php:54
+#, php-format
+msgid "Registration details for %s"
 msgstr ""
 
-#: ../../mod/install.php:117
-msgid "Friendica Communications Server - Setup"
+#: ../../mod/admin.php:743
+msgid "Registration successful. Email send to user"
 msgstr ""
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
+#: ../../mod/admin.php:753
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/admin.php:760
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/admin.php:799
+#, php-format
+msgid "User '%s' deleted"
 msgstr ""
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
+#: ../../mod/admin.php:807
+#, php-format
+msgid "User '%s' unblocked"
 msgstr ""
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
+#: ../../mod/admin.php:807
+#, php-format
+msgid "User '%s' blocked"
 msgstr ""
 
-#: ../../mod/install.php:138
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
+#: ../../mod/admin.php:902
+msgid "Add User"
 msgstr ""
 
-#: ../../mod/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:521
-msgid "Please see the file \"INSTALL.txt\"."
+#: ../../mod/admin.php:903
+msgid "select all"
 msgstr ""
 
-#: ../../mod/install.php:203
-msgid "System check"
+#: ../../mod/admin.php:904
+msgid "User registrations waiting for confirm"
 msgstr ""
 
-#: ../../mod/install.php:207 ../../mod/events.php:373
-msgid "Next"
+#: ../../mod/admin.php:905
+msgid "User waiting for permanent deletion"
 msgstr ""
 
-#: ../../mod/install.php:208
-msgid "Check again"
+#: ../../mod/admin.php:906
+msgid "Request date"
 msgstr ""
 
-#: ../../mod/install.php:227
-msgid "Database connection"
+#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919
+#: ../../mod/admin.php:932 ../../mod/settings.php:611
+#: ../../mod/settings.php:637 ../../mod/crepair.php:150
+msgid "Name"
 msgstr ""
 
-#: ../../mod/install.php:228
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
+#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919
+#: ../../mod/admin.php:934 ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:86
+msgid "Email"
 msgstr ""
 
-#: ../../mod/install.php:229
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
+#: ../../mod/admin.php:907
+msgid "No registrations."
 msgstr ""
 
-#: ../../mod/install.php:230
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
+#: ../../mod/admin.php:909
+msgid "Deny"
 msgstr ""
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
+#: ../../mod/admin.php:911 ../../mod/contacts.php:431
+#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
+msgid "Block"
 msgstr ""
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
+#: ../../mod/admin.php:912 ../../mod/contacts.php:431
+#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
+msgid "Unblock"
 msgstr ""
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
+#: ../../mod/admin.php:913
+msgid "Site admin"
 msgstr ""
 
-#: ../../mod/install.php:237
-msgid "Database Name"
+#: ../../mod/admin.php:914
+msgid "Account expired"
 msgstr ""
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
+#: ../../mod/admin.php:917
+msgid "New User"
 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."
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Register date"
 msgstr ""
 
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Last login"
 msgstr ""
 
-#: ../../mod/install.php:267
-msgid "Site settings"
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Last item"
 msgstr ""
 
-#: ../../mod/install.php:321
-msgid "Could not find a command line version of PHP in the web server PATH."
+#: ../../mod/admin.php:918
+msgid "Deleted since"
 msgstr ""
 
-#: ../../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>"
+#: ../../mod/admin.php:919 ../../mod/settings.php:36
+msgid "Account"
 msgstr ""
 
-#: ../../mod/install.php:326
-msgid "PHP executable path"
+#: ../../mod/admin.php:921
+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/install.php:326
+#: ../../mod/admin.php:922
 msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
+"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/install.php:331
-msgid "Command line PHP"
+#: ../../mod/admin.php:932
+msgid "Name of the new user."
 msgstr ""
 
-#: ../../mod/install.php:340
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+#: ../../mod/admin.php:933
+msgid "Nickname"
 msgstr ""
 
-#: ../../mod/install.php:341
-msgid "Found PHP version: "
+#: ../../mod/admin.php:933
+msgid "Nickname of the new user."
 msgstr ""
 
-#: ../../mod/install.php:343
-msgid "PHP cli binary"
+#: ../../mod/admin.php:934
+msgid "Email address of the new user."
 msgstr ""
 
-#: ../../mod/install.php:354
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
+#: ../../mod/admin.php:967
+#, php-format
+msgid "Plugin %s disabled."
 msgstr ""
 
-#: ../../mod/install.php:355
-msgid "This is required for message delivery to work."
+#: ../../mod/admin.php:971
+#, php-format
+msgid "Plugin %s enabled."
 msgstr ""
 
-#: ../../mod/install.php:357
-msgid "PHP register_argc_argv"
+#: ../../mod/admin.php:981 ../../mod/admin.php:1195
+msgid "Disable"
 msgstr ""
 
-#: ../../mod/install.php:378
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
+#: ../../mod/admin.php:983 ../../mod/admin.php:1197
+msgid "Enable"
 msgstr ""
 
-#: ../../mod/install.php:379
-msgid ""
-"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
-"installation.php\"."
+#: ../../mod/admin.php:1006 ../../mod/admin.php:1225
+msgid "Toggle"
 msgstr ""
 
-#: ../../mod/install.php:381
-msgid "Generate encryption keys"
+#: ../../mod/admin.php:1007 ../../mod/admin.php:1226
+#: ../../mod/newmember.php:22 ../../mod/settings.php:85
+#: ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:169
+msgid "Settings"
 msgstr ""
 
-#: ../../mod/install.php:388
-msgid "libCurl PHP module"
+#: ../../mod/admin.php:1014 ../../mod/admin.php:1235
+msgid "Author: "
 msgstr ""
 
-#: ../../mod/install.php:389
-msgid "GD graphics PHP module"
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1236
+msgid "Maintainer: "
 msgstr ""
 
-#: ../../mod/install.php:390
-msgid "OpenSSL PHP module"
+#: ../../mod/admin.php:1155
+msgid "No themes found."
 msgstr ""
 
-#: ../../mod/install.php:391
-msgid "mysqli PHP module"
+#: ../../mod/admin.php:1217
+msgid "Screenshot"
 msgstr ""
 
-#: ../../mod/install.php:392
-msgid "mb_string PHP module"
+#: ../../mod/admin.php:1263
+msgid "[Experimental]"
 msgstr ""
 
-#: ../../mod/install.php:397 ../../mod/install.php:399
-msgid "Apache mod_rewrite module"
+#: ../../mod/admin.php:1264
+msgid "[Unsupported]"
 msgstr ""
 
-#: ../../mod/install.php:397
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
+#: ../../mod/admin.php:1291
+msgid "Log settings updated."
 msgstr ""
 
-#: ../../mod/install.php:405
-msgid "Error: libCURL PHP module required but not installed."
+#: ../../mod/admin.php:1347
+msgid "Clear"
 msgstr ""
 
-#: ../../mod/install.php:409
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
+#: ../../mod/admin.php:1353
+msgid "Enable Debugging"
 msgstr ""
 
-#: ../../mod/install.php:413
-msgid "Error: openssl PHP module required but not installed."
+#: ../../mod/admin.php:1354
+msgid "Log file"
 msgstr ""
 
-#: ../../mod/install.php:417
-msgid "Error: mysqli PHP module required but not installed."
+#: ../../mod/admin.php:1354
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
 msgstr ""
 
-#: ../../mod/install.php:421
-msgid "Error: mb_string PHP module required but not installed."
+#: ../../mod/admin.php:1355
+msgid "Log level"
 msgstr ""
 
-#: ../../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."
+#: ../../mod/admin.php:1404 ../../mod/contacts.php:487
+msgid "Update now"
 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."
+#: ../../mod/admin.php:1405
+msgid "Close"
 msgstr ""
 
-#: ../../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."
+#: ../../mod/admin.php:1411
+msgid "FTP Host"
 msgstr ""
 
-#: ../../mod/install.php:441
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation. "
-"Please see the file \"INSTALL.txt\" for instructions."
+#: ../../mod/admin.php:1412
+msgid "FTP Path"
 msgstr ""
 
-#: ../../mod/install.php:444
-msgid ".htconfig.php is writable"
+#: ../../mod/admin.php:1413
+msgid "FTP User"
 msgstr ""
 
-#: ../../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."
+#: ../../mod/admin.php:1414
+msgid "FTP Password"
 msgstr ""
 
-#: ../../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."
+#: ../../mod/message.php:9 ../../include/nav.php:161
+msgid "New Message"
 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."
+#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
+msgid "No recipient selected."
 msgstr ""
 
-#: ../../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."
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
 msgstr ""
 
-#: ../../mod/install.php:460
-msgid "view/smarty3 is writable"
+#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
+msgid "Message could not be sent."
 msgstr ""
 
-#: ../../mod/install.php:472
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
+#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
+msgid "Message collection failure."
 msgstr ""
 
-#: ../../mod/install.php:474
-msgid "Url rewrite is working"
+#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
+msgid "Message sent."
 msgstr ""
 
-#: ../../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."
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
 msgstr ""
 
-#: ../../mod/install.php:508
-msgid "Errors encountered creating database tables."
+#: ../../mod/message.php:227
+msgid "Message deleted."
 msgstr ""
 
-#: ../../mod/install.php:519
-msgid "<h1>What next</h1>"
+#: ../../mod/message.php:258
+msgid "Conversation removed."
 msgstr ""
 
-#: ../../mod/install.php:520
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
+#: ../../mod/message.php:283 ../../mod/message.php:291
+#: ../../mod/message.php:466 ../../mod/message.php:474
+#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
+#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
+msgid "Please enter a link URL:"
 msgstr ""
 
-#: ../../mod/admin.php:55
-msgid "Theme settings updated."
+#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
+msgid "Send Private Message"
 msgstr ""
 
-#: ../../mod/admin.php:101 ../../mod/admin.php:571
-msgid "Site"
+#: ../../mod/message.php:320 ../../mod/message.php:553
+#: ../../mod/wallmessage.php:144
+msgid "To:"
 msgstr ""
 
-#: ../../mod/admin.php:102 ../../mod/admin.php:899 ../../mod/admin.php:914
-msgid "Users"
+#: ../../mod/message.php:325 ../../mod/message.php:555
+#: ../../mod/wallmessage.php:145
+msgid "Subject:"
 msgstr ""
 
-#: ../../mod/admin.php:103 ../../mod/admin.php:1003 ../../mod/admin.php:1045
-#: ../../mod/settings.php:56
-msgid "Plugins"
+#: ../../mod/message.php:329 ../../mod/message.php:558
+#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
+msgid "Your message:"
 msgstr ""
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:1211 ../../mod/admin.php:1245
-msgid "Themes"
+#: ../../mod/message.php:332 ../../mod/message.php:562
+#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154
+#: ../../include/conversation.php:1089
+msgid "Upload photo"
 msgstr ""
 
-#: ../../mod/admin.php:105
-msgid "DB updates"
+#: ../../mod/message.php:333 ../../mod/message.php:563
+#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155
+#: ../../include/conversation.php:1093
+msgid "Insert web link"
 msgstr ""
 
-#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1332
-msgid "Logs"
+#: ../../mod/message.php:371
+msgid "No messages."
 msgstr ""
 
-#: ../../mod/admin.php:125 ../../include/nav.php:180
-msgid "Admin"
+#: ../../mod/message.php:378
+#, php-format
+msgid "Unknown sender - %s"
 msgstr ""
 
-#: ../../mod/admin.php:126
-msgid "Plugin Features"
+#: ../../mod/message.php:381
+#, php-format
+msgid "You and %s"
 msgstr ""
 
-#: ../../mod/admin.php:128
-msgid "User registrations waiting for confirmation"
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
 msgstr ""
 
-#: ../../mod/admin.php:187 ../../mod/admin.php:853
-msgid "Normal Account"
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
 msgstr ""
 
-#: ../../mod/admin.php:188 ../../mod/admin.php:854
-msgid "Soapbox Account"
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
 msgstr ""
 
-#: ../../mod/admin.php:189 ../../mod/admin.php:855
-msgid "Community/Celebrity Account"
+#: ../../mod/message.php:411
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/message.php:450
+msgid "Message not available."
 msgstr ""
 
-#: ../../mod/admin.php:190 ../../mod/admin.php:856
-msgid "Automatic Friend Account"
+#: ../../mod/message.php:520
+msgid "Delete message"
 msgstr ""
 
-#: ../../mod/admin.php:191
-msgid "Blog Account"
+#: ../../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/admin.php:192
-msgid "Private Forum"
+#: ../../mod/message.php:552
+msgid "Send Reply"
 msgstr ""
 
-#: ../../mod/admin.php:211
-msgid "Message queues"
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
 msgstr ""
 
-#: ../../mod/admin.php:216 ../../mod/admin.php:570 ../../mod/admin.php:898
-#: ../../mod/admin.php:1002 ../../mod/admin.php:1044 ../../mod/admin.php:1210
-#: ../../mod/admin.php:1244 ../../mod/admin.php:1331
-msgid "Administration"
+#: ../../mod/editpost.php:39
+msgid "Edit post"
 msgstr ""
 
-#: ../../mod/admin.php:217
-msgid "Summary"
+#: ../../mod/editpost.php:111 ../../include/conversation.php:1090
+msgid "upload photo"
 msgstr ""
 
-#: ../../mod/admin.php:219
-msgid "Registered users"
+#: ../../mod/editpost.php:112 ../../include/conversation.php:1091
+msgid "Attach file"
 msgstr ""
 
-#: ../../mod/admin.php:221
-msgid "Pending registrations"
+#: ../../mod/editpost.php:113 ../../include/conversation.php:1092
+msgid "attach file"
 msgstr ""
 
-#: ../../mod/admin.php:222
-msgid "Version"
+#: ../../mod/editpost.php:115 ../../include/conversation.php:1094
+msgid "web link"
 msgstr ""
 
-#: ../../mod/admin.php:224
-msgid "Active plugins"
+#: ../../mod/editpost.php:116 ../../include/conversation.php:1095
+msgid "Insert video link"
 msgstr ""
 
-#: ../../mod/admin.php:247
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+#: ../../mod/editpost.php:117 ../../include/conversation.php:1096
+msgid "video link"
 msgstr ""
 
-#: ../../mod/admin.php:483
-msgid "Site settings updated."
+#: ../../mod/editpost.php:118 ../../include/conversation.php:1097
+msgid "Insert audio link"
 msgstr ""
 
-#: ../../mod/admin.php:512 ../../mod/settings.php:822
-msgid "No special theme for mobile devices"
+#: ../../mod/editpost.php:119 ../../include/conversation.php:1098
+msgid "audio link"
 msgstr ""
 
-#: ../../mod/admin.php:529 ../../mod/contacts.php:408
-msgid "Never"
+#: ../../mod/editpost.php:120 ../../include/conversation.php:1099
+msgid "Set your location"
 msgstr ""
 
-#: ../../mod/admin.php:530
-msgid "At post arrival"
+#: ../../mod/editpost.php:121 ../../include/conversation.php:1100
+msgid "set location"
 msgstr ""
 
-#: ../../mod/admin.php:531 ../../include/contact_selectors.php:56
-msgid "Frequently"
+#: ../../mod/editpost.php:122 ../../include/conversation.php:1101
+msgid "Clear browser location"
 msgstr ""
 
-#: ../../mod/admin.php:532 ../../include/contact_selectors.php:57
-msgid "Hourly"
+#: ../../mod/editpost.php:123 ../../include/conversation.php:1102
+msgid "clear location"
 msgstr ""
 
-#: ../../mod/admin.php:533 ../../include/contact_selectors.php:58
-msgid "Twice daily"
+#: ../../mod/editpost.php:125 ../../include/conversation.php:1108
+msgid "Permission settings"
 msgstr ""
 
-#: ../../mod/admin.php:534 ../../include/contact_selectors.php:59
-msgid "Daily"
+#: ../../mod/editpost.php:133 ../../include/conversation.php:1117
+msgid "CC: email addresses"
 msgstr ""
 
-#: ../../mod/admin.php:539
-msgid "Multi user instance"
+#: ../../mod/editpost.php:134 ../../include/conversation.php:1118
+msgid "Public post"
 msgstr ""
 
-#: ../../mod/admin.php:557
-msgid "Closed"
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1104
+msgid "Set title"
 msgstr ""
 
-#: ../../mod/admin.php:558
-msgid "Requires approval"
+#: ../../mod/editpost.php:139 ../../include/conversation.php:1106
+msgid "Categories (comma-separated list)"
 msgstr ""
 
-#: ../../mod/admin.php:559
-msgid "Open"
+#: ../../mod/editpost.php:140 ../../include/conversation.php:1120
+msgid "Example: bob@example.com, mary@example.com"
 msgstr ""
 
-#: ../../mod/admin.php:563
-msgid "No SSL policy, links will track page SSL state"
+#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18
+#: ../../mod/profiles.php:133 ../../mod/profiles.php:160
+#: ../../mod/profiles.php:587
+msgid "Profile not found."
 msgstr ""
 
-#: ../../mod/admin.php:564
-msgid "Force all links to use SSL"
+#: ../../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/admin.php:565
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+#: ../../mod/dfrn_confirm.php:237
+msgid "Response from remote site was not understood."
 msgstr ""
 
-#: ../../mod/admin.php:572 ../../mod/admin.php:1046 ../../mod/admin.php:1246
-#: ../../mod/admin.php:1333 ../../mod/settings.php:608
-#: ../../mod/settings.php:718 ../../mod/settings.php:792
-#: ../../mod/settings.php:871 ../../mod/settings.php:1101
-msgid "Save Settings"
+#: ../../mod/dfrn_confirm.php:246
+msgid "Unexpected response from remote site: "
 msgstr ""
 
-#: ../../mod/admin.php:574
-msgid "File upload"
+#: ../../mod/dfrn_confirm.php:254
+msgid "Confirmation completed successfully."
 msgstr ""
 
-#: ../../mod/admin.php:575
-msgid "Policies"
+#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
+#: ../../mod/dfrn_confirm.php:277
+msgid "Remote site reported: "
 msgstr ""
 
-#: ../../mod/admin.php:576
-msgid "Advanced"
+#: ../../mod/dfrn_confirm.php:268
+msgid "Temporary failure. Please wait and try again."
 msgstr ""
 
-#: ../../mod/admin.php:577
-msgid "Performance"
+#: ../../mod/dfrn_confirm.php:275
+msgid "Introduction failed or was revoked."
 msgstr ""
 
-#: ../../mod/admin.php:578
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
+#: ../../mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
 msgstr ""
 
-#: ../../mod/admin.php:581
-msgid "Site name"
+#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:620
+#: ../../include/conversation.php:172
+#, php-format
+msgid "%1$s is now friends with %2$s"
 msgstr ""
 
-#: ../../mod/admin.php:582
-msgid "Banner/Logo"
+#: ../../mod/dfrn_confirm.php:562
+#, php-format
+msgid "No user record found for '%s' "
 msgstr ""
 
-#: ../../mod/admin.php:583
-msgid "Additional Info"
+#: ../../mod/dfrn_confirm.php:572
+msgid "Our site encryption key is apparently messed up."
 msgstr ""
 
-#: ../../mod/admin.php:583
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at dir.friendica.com/siteinfo."
+#: ../../mod/dfrn_confirm.php:583
+msgid "Empty site URL was provided or URL could not be decrypted by us."
 msgstr ""
 
-#: ../../mod/admin.php:584
-msgid "System language"
+#: ../../mod/dfrn_confirm.php:604
+msgid "Contact record was not found for you on our site."
 msgstr ""
 
-#: ../../mod/admin.php:585
-msgid "System theme"
+#: ../../mod/dfrn_confirm.php:618
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
 msgstr ""
 
-#: ../../mod/admin.php:585
+#: ../../mod/dfrn_confirm.php:638
 msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
 msgstr ""
 
-#: ../../mod/admin.php:586
-msgid "Mobile system theme"
+#: ../../mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
 msgstr ""
 
-#: ../../mod/admin.php:586
-msgid "Theme for mobile devices"
+#: ../../mod/dfrn_confirm.php:716
+msgid "Unable to update your contact profile details on our system"
 msgstr ""
 
-#: ../../mod/admin.php:587
-msgid "SSL link policy"
+#: ../../mod/dfrn_confirm.php:751
+#, php-format
+msgid "Connection accepted at %s"
 msgstr ""
 
-#: ../../mod/admin.php:587
-msgid "Determines whether generated links should be forced to use SSL"
+#: ../../mod/dfrn_confirm.php:800
+#, php-format
+msgid "%1$s has joined %2$s"
 msgstr ""
 
-#: ../../mod/admin.php:588
-msgid "Old style 'Share'"
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
 msgstr ""
 
-#: ../../mod/admin.php:588
-msgid "Deactivates the bbcode element 'share' for repeating items."
+#: ../../mod/events.php:291
+msgid "l, F j"
 msgstr ""
 
-#: ../../mod/admin.php:589
-msgid "Hide help entry from navigation menu"
+#: ../../mod/events.php:313
+msgid "Edit event"
 msgstr ""
 
-#: ../../mod/admin.php:589
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
+#: ../../mod/events.php:335 ../../include/text.php:1633
+#: ../../include/text.php:1644
+msgid "link to source"
 msgstr ""
 
-#: ../../mod/admin.php:590
-msgid "Single user instance"
+#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:127
+#: ../../boot.php:2003 ../../include/nav.php:79
+msgid "Events"
 msgstr ""
 
-#: ../../mod/admin.php:590
-msgid "Make this instance multi-user or single-user for the named user"
+#: ../../mod/events.php:371
+msgid "Create New Event"
 msgstr ""
 
-#: ../../mod/admin.php:591
-msgid "Maximum image size"
+#: ../../mod/events.php:372
+msgid "Previous"
 msgstr ""
 
-#: ../../mod/admin.php:591
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
+#: ../../mod/events.php:373 ../../mod/install.php:207
+msgid "Next"
 msgstr ""
 
-#: ../../mod/admin.php:592
-msgid "Maximum image length"
+#: ../../mod/events.php:446
+msgid "hour:minute"
 msgstr ""
 
-#: ../../mod/admin.php:592
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
+#: ../../mod/events.php:456
+msgid "Event details"
 msgstr ""
 
-#: ../../mod/admin.php:593
-msgid "JPEG image quality"
+#: ../../mod/events.php:457
+#, php-format
+msgid "Format is %s %s. Starting date and Title are required."
 msgstr ""
 
-#: ../../mod/admin.php:593
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
+#: ../../mod/events.php:459
+msgid "Event Starts:"
 msgstr ""
 
-#: ../../mod/admin.php:595
-msgid "Register policy"
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
 msgstr ""
 
-#: ../../mod/admin.php:596
-msgid "Maximum Daily Registrations"
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
 msgstr ""
 
-#: ../../mod/admin.php:596
-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."
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
 msgstr ""
 
-#: ../../mod/admin.php:597
-msgid "Register text"
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
 msgstr ""
 
-#: ../../mod/admin.php:597
-msgid "Will be displayed prominently on the registration page."
+#: ../../mod/events.php:469
+msgid "Description:"
 msgstr ""
 
-#: ../../mod/admin.php:598
-msgid "Accounts abandoned after x days"
+#: ../../mod/events.php:471 ../../mod/directory.php:134 ../../boot.php:1513
+#: ../../include/event.php:40 ../../include/bb2diaspora.php:155
+msgid "Location:"
 msgstr ""
 
-#: ../../mod/admin.php:598
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
+#: ../../mod/events.php:473
+msgid "Title:"
 msgstr ""
 
-#: ../../mod/admin.php:599
-msgid "Allowed friend domains"
+#: ../../mod/events.php:475
+msgid "Share this event"
 msgstr ""
 
-#: ../../mod/admin.php:599
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
+#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:126
+#: ../../boot.php:1986 ../../include/nav.php:78
+msgid "Photos"
 msgstr ""
 
-#: ../../mod/admin.php:600
-msgid "Allowed email domains"
+#: ../../mod/fbrowser.php:113
+msgid "Files"
 msgstr ""
 
-#: ../../mod/admin.php:600
-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"
+#: ../../mod/home.php:34
+#, php-format
+msgid "Welcome to %s"
 msgstr ""
 
-#: ../../mod/admin.php:601
-msgid "Block public"
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
 msgstr ""
 
-#: ../../mod/admin.php:601
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
 msgstr ""
 
-#: ../../mod/admin.php:602
-msgid "Force publish"
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
 msgstr ""
 
-#: ../../mod/admin.php:602
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
 msgstr ""
 
-#: ../../mod/admin.php:603
-msgid "Global directory update URL"
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
 msgstr ""
 
-#: ../../mod/admin.php:603
+#: ../../mod/wallmessage.php:143
+#, php-format
 msgid ""
-"URL to update the global directory. If this is not set, the global directory "
-"is completely unavailable to the application."
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
 msgstr ""
 
-#: ../../mod/admin.php:604
-msgid "Allow threaded items"
+#: ../../mod/nogroup.php:40 ../../mod/contacts.php:473
+#: ../../mod/contacts.php:665 ../../mod/viewcontacts.php:62
+#, php-format
+msgid "Visit %s's profile [%s]"
 msgstr ""
 
-#: ../../mod/admin.php:604
-msgid "Allow infinite level threading for items on this site."
+#: ../../mod/nogroup.php:41 ../../mod/contacts.php:666
+msgid "Edit contact"
 msgstr ""
 
-#: ../../mod/admin.php:605
-msgid "Private posts by default for new users"
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
 msgstr ""
 
-#: ../../mod/admin.php:605
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
+#: ../../mod/friendica.php:58
+msgid "This is Friendica, version"
 msgstr ""
 
-#: ../../mod/admin.php:606
-msgid "Don't include post content in email notifications"
+#: ../../mod/friendica.php:59
+msgid "running at web location"
 msgstr ""
 
-#: ../../mod/admin.php:606
+#: ../../mod/friendica.php:61
 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."
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
 msgstr ""
 
-#: ../../mod/admin.php:607
-msgid "Disallow public access to addons listed in the apps menu."
+#: ../../mod/friendica.php:63
+msgid "Bug reports and issues: please visit"
 msgstr ""
 
-#: ../../mod/admin.php:607
+#: ../../mod/friendica.php:64
 msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
 msgstr ""
 
-#: ../../mod/admin.php:608
-msgid "Don't embed private images in posts"
+#: ../../mod/friendica.php:78
+msgid "Installed plugins/addons/apps:"
 msgstr ""
 
-#: ../../mod/admin.php:608
-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."
+#: ../../mod/friendica.php:91
+msgid "No installed plugins/addons/apps"
 msgstr ""
 
-#: ../../mod/admin.php:609
-msgid "Allow Users to set remote_self"
+#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
+msgid "Remove My Account"
 msgstr ""
 
-#: ../../mod/admin.php:609
+#: ../../mod/removeme.php:47
 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:610
-msgid "Block multiple registrations"
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
 msgstr ""
 
-#: ../../mod/admin.php:610
-msgid "Disallow users to register additional accounts for use as pages."
+#: ../../mod/removeme.php:48
+msgid "Please enter your password for verification:"
 msgstr ""
 
-#: ../../mod/admin.php:611
-msgid "OpenID support"
+#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
+#, php-format
+msgid "Image exceeds size limit of %d"
 msgstr ""
 
-#: ../../mod/admin.php:611
-msgid "OpenID support for registration and logins."
+#: ../../mod/wall_upload.php:112 ../../mod/photos.php:805
+#: ../../mod/profile_photo.php:153
+msgid "Unable to process image."
 msgstr ""
 
-#: ../../mod/admin.php:612
-msgid "Fullname check"
+#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
+#: ../../mod/wall_upload.php:151 ../../mod/item.php:455
+#: ../../include/message.php:144
+msgid "Wall Photos"
 msgstr ""
 
-#: ../../mod/admin.php:612
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
+#: ../../mod/wall_upload.php:138 ../../mod/photos.php:832
+#: ../../mod/profile_photo.php:301
+msgid "Image upload failed."
 msgstr ""
 
-#: ../../mod/admin.php:613
-msgid "UTF-8 Regular expressions"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
 msgstr ""
 
-#: ../../mod/admin.php:613
-msgid "Use PHP UTF8 regular expressions"
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
 msgstr ""
 
-#: ../../mod/admin.php:614
-msgid "Show Community Page"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
 msgstr ""
 
-#: ../../mod/admin.php:614
+#: ../../mod/api.php:104
 msgid ""
-"Display a Community page showing all recent public postings on this site."
+"Do you want to authorize this application to access your posts and contacts, "
+"and/or create new posts for you?"
 msgstr ""
 
-#: ../../mod/admin.php:615
-msgid "Enable OStatus support"
+#: ../../mod/tagger.php:95 ../../include/conversation.php:266
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
 msgstr ""
 
-#: ../../mod/admin.php:615
-msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
+#: ../../mod/photos.php:52 ../../boot.php:1989
+msgid "Photo Albums"
 msgstr ""
 
-#: ../../mod/admin.php:616
-msgid "OStatus conversation completion interval"
+#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1062
+#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
+#: ../../mod/photos.php:1756 ../../mod/photos.php:1768
+#: ../../view/theme/diabook/theme.php:499
+msgid "Contact Photos"
 msgstr ""
 
-#: ../../mod/admin.php:616
-msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
+#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815
+msgid "Upload New Photos"
 msgstr ""
 
-#: ../../mod/admin.php:617
-msgid "Enable Diaspora support"
+#: ../../mod/photos.php:80 ../../mod/settings.php:29
+msgid "everybody"
 msgstr ""
 
-#: ../../mod/admin.php:617
-msgid "Provide built-in Diaspora network compatibility."
+#: ../../mod/photos.php:144
+msgid "Contact information unavailable"
 msgstr ""
 
-#: ../../mod/admin.php:618
-msgid "Only allow Friendica contacts"
+#: ../../mod/photos.php:155 ../../mod/photos.php:729 ../../mod/photos.php:1187
+#: ../../mod/photos.php:1210 ../../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:500
+#: ../../include/user.php:334 ../../include/user.php:341
+#: ../../include/user.php:348
+msgid "Profile Photos"
 msgstr ""
 
-#: ../../mod/admin.php:618
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
+#: ../../mod/photos.php:165
+msgid "Album not found."
 msgstr ""
 
-#: ../../mod/admin.php:619
-msgid "Verify SSL"
+#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
+msgid "Delete Album"
 msgstr ""
 
-#: ../../mod/admin.php:619
-msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you "
-"cannot connect (at all) to self-signed SSL sites."
+#: ../../mod/photos.php:198
+msgid "Do you really want to delete this photo album and all its photos?"
 msgstr ""
 
-#: ../../mod/admin.php:620
-msgid "Proxy user"
+#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511
+msgid "Delete Photo"
 msgstr ""
 
-#: ../../mod/admin.php:621
-msgid "Proxy URL"
+#: ../../mod/photos.php:287
+msgid "Do you really want to delete this photo?"
 msgstr ""
 
-#: ../../mod/admin.php:622
-msgid "Network timeout"
+#: ../../mod/photos.php:660
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
 msgstr ""
 
-#: ../../mod/admin.php:622
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+#: ../../mod/photos.php:660
+msgid "a photo"
 msgstr ""
 
-#: ../../mod/admin.php:623
-msgid "Delivery interval"
+#: ../../mod/photos.php:765
+msgid "Image exceeds size limit of "
 msgstr ""
 
-#: ../../mod/admin.php:623
-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."
+#: ../../mod/photos.php:773
+msgid "Image file is empty."
 msgstr ""
 
-#: ../../mod/admin.php:624
-msgid "Poll interval"
+#: ../../mod/photos.php:928
+msgid "No photos selected"
 msgstr ""
 
-#: ../../mod/admin.php:624
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
+#: ../../mod/photos.php:1029 ../../mod/videos.php:226
+msgid "Access to this item is restricted."
 msgstr ""
 
-#: ../../mod/admin.php:625
-msgid "Maximum Load Average"
+#: ../../mod/photos.php:1092
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
 msgstr ""
 
-#: ../../mod/admin.php:625
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
+#: ../../mod/photos.php:1127
+msgid "Upload Photos"
 msgstr ""
 
-#: ../../mod/admin.php:627
-msgid "Use MySQL full text engine"
+#: ../../mod/photos.php:1131 ../../mod/photos.php:1199
+msgid "New album name: "
 msgstr ""
 
-#: ../../mod/admin.php:627
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
+#: ../../mod/photos.php:1132
+msgid "or existing album name: "
 msgstr ""
 
-#: ../../mod/admin.php:628
-msgid "Suppress Language"
+#: ../../mod/photos.php:1133
+msgid "Do not show a status post for this upload"
 msgstr ""
 
-#: ../../mod/admin.php:628
-msgid "Suppress language information in meta information about a posting."
+#: ../../mod/photos.php:1135 ../../mod/photos.php:1506
+msgid "Permissions"
 msgstr ""
 
-#: ../../mod/admin.php:629
-msgid "Path to item cache"
+#: ../../mod/photos.php:1144 ../../mod/photos.php:1515
+#: ../../mod/settings.php:1139
+msgid "Show to Groups"
 msgstr ""
 
-#: ../../mod/admin.php:630
-msgid "Cache duration in seconds"
+#: ../../mod/photos.php:1145 ../../mod/photos.php:1516
+#: ../../mod/settings.php:1140
+msgid "Show to Contacts"
 msgstr ""
 
-#: ../../mod/admin.php:630
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One "
-"day)."
+#: ../../mod/photos.php:1146
+msgid "Private Photo"
 msgstr ""
 
-#: ../../mod/admin.php:631
-msgid "Path for lock file"
+#: ../../mod/photos.php:1147
+msgid "Public Photo"
 msgstr ""
 
-#: ../../mod/admin.php:632
-msgid "Temp path"
+#: ../../mod/photos.php:1214
+msgid "Edit Album"
 msgstr ""
 
-#: ../../mod/admin.php:633
-msgid "Base path to installation"
+#: ../../mod/photos.php:1220
+msgid "Show Newest First"
 msgstr ""
 
-#: ../../mod/admin.php:635
-msgid "New base url"
+#: ../../mod/photos.php:1222
+msgid "Show Oldest First"
 msgstr ""
 
-#: ../../mod/admin.php:653
-msgid "Update has been marked successful"
+#: ../../mod/photos.php:1255 ../../mod/photos.php:1798
+msgid "View Photo"
 msgstr ""
 
-#: ../../mod/admin.php:663
-#, php-format
-msgid "Executing %s failed. Check system logs."
+#: ../../mod/photos.php:1290
+msgid "Permission denied. Access to this item may be restricted."
 msgstr ""
 
-#: ../../mod/admin.php:666
-#, php-format
-msgid "Update %s was successfully applied."
+#: ../../mod/photos.php:1292
+msgid "Photo not available"
 msgstr ""
 
-#: ../../mod/admin.php:670
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
+#: ../../mod/photos.php:1348
+msgid "View photo"
 msgstr ""
 
-#: ../../mod/admin.php:673
-#, php-format
-msgid "Update function %s could not be found."
+#: ../../mod/photos.php:1348
+msgid "Edit photo"
 msgstr ""
 
-#: ../../mod/admin.php:688
-msgid "No failed updates."
+#: ../../mod/photos.php:1349
+msgid "Use as profile photo"
 msgstr ""
 
-#: ../../mod/admin.php:692
-msgid "Failed Updates"
+#: ../../mod/photos.php:1374
+msgid "View Full Size"
 msgstr ""
 
-#: ../../mod/admin.php:693
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
+#: ../../mod/photos.php:1453
+msgid "Tags: "
 msgstr ""
 
-#: ../../mod/admin.php:694
-msgid "Mark success (if update was manually applied)"
+#: ../../mod/photos.php:1456
+msgid "[Remove any tag]"
 msgstr ""
 
-#: ../../mod/admin.php:695
-msgid "Attempt to execute this update step automatically"
+#: ../../mod/photos.php:1496
+msgid "Rotate CW (right)"
 msgstr ""
 
-#: ../../mod/admin.php:741
-msgid "Registration successful. Email send to user"
+#: ../../mod/photos.php:1497
+msgid "Rotate CCW (left)"
 msgstr ""
 
-#: ../../mod/admin.php:751
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/admin.php:758
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] ""
-msgstr[1] ""
+#: ../../mod/photos.php:1499
+msgid "New album name"
+msgstr ""
 
-#: ../../mod/admin.php:797
-#, php-format
-msgid "User '%s' deleted"
+#: ../../mod/photos.php:1502
+msgid "Caption"
 msgstr ""
 
-#: ../../mod/admin.php:805
-#, php-format
-msgid "User '%s' unblocked"
+#: ../../mod/photos.php:1504
+msgid "Add a Tag"
 msgstr ""
 
-#: ../../mod/admin.php:805
-#, php-format
-msgid "User '%s' blocked"
+#: ../../mod/photos.php:1508
+msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 msgstr ""
 
-#: ../../mod/admin.php:900
-msgid "Add User"
+#: ../../mod/photos.php:1517
+msgid "Private photo"
 msgstr ""
 
-#: ../../mod/admin.php:901
-msgid "select all"
+#: ../../mod/photos.php:1518
+msgid "Public photo"
 msgstr ""
 
-#: ../../mod/admin.php:902
-msgid "User registrations waiting for confirm"
+#: ../../mod/photos.php:1540 ../../include/conversation.php:1088
+msgid "Share"
 msgstr ""
 
-#: ../../mod/admin.php:903
-msgid "User waiting for permanent deletion"
+#: ../../mod/photos.php:1804 ../../mod/videos.php:308
+msgid "View Album"
 msgstr ""
 
-#: ../../mod/admin.php:904
-msgid "Request date"
+#: ../../mod/photos.php:1813
+msgid "Recent Photos"
 msgstr ""
 
-#: ../../mod/admin.php:904 ../../mod/admin.php:916 ../../mod/admin.php:917
-#: ../../mod/admin.php:930 ../../mod/crepair.php:150
-#: ../../mod/settings.php:610 ../../mod/settings.php:636
-msgid "Name"
+#: ../../mod/hcard.php:10
+msgid "No profile"
 msgstr ""
 
-#: ../../mod/admin.php:904 ../../mod/admin.php:916 ../../mod/admin.php:917
-#: ../../mod/admin.php:932 ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86
-msgid "Email"
+#: ../../mod/register.php:100
+msgid ""
+"Registration successful. Please check your email for further instructions."
 msgstr ""
 
-#: ../../mod/admin.php:905
-msgid "No registrations."
+#: ../../mod/register.php:104
+msgid "Failed to send email message. Here is the message that failed."
 msgstr ""
 
-#: ../../mod/admin.php:906 ../../mod/notifications.php:161
-#: ../../mod/notifications.php:208
-msgid "Approve"
+#: ../../mod/register.php:109
+msgid "Your registration can not be processed."
 msgstr ""
 
-#: ../../mod/admin.php:907
-msgid "Deny"
+#: ../../mod/register.php:149
+#, php-format
+msgid "Registration request at %s"
 msgstr ""
 
-#: ../../mod/admin.php:909 ../../mod/contacts.php:431
-#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
-msgid "Block"
+#: ../../mod/register.php:158
+msgid "Your registration is pending approval by the site owner."
 msgstr ""
 
-#: ../../mod/admin.php:910 ../../mod/contacts.php:431
-#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
-msgid "Unblock"
+#: ../../mod/register.php:196 ../../mod/uimport.php:50
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
 msgstr ""
 
-#: ../../mod/admin.php:911
-msgid "Site admin"
+#: ../../mod/register.php:224
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
 msgstr ""
 
-#: ../../mod/admin.php:912
-msgid "Account expired"
+#: ../../mod/register.php:225
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
 msgstr ""
 
-#: ../../mod/admin.php:915
-msgid "New User"
+#: ../../mod/register.php:226
+msgid "Your OpenID (optional): "
 msgstr ""
 
-#: ../../mod/admin.php:916 ../../mod/admin.php:917
-msgid "Register date"
+#: ../../mod/register.php:240
+msgid "Include your profile in member directory?"
 msgstr ""
 
-#: ../../mod/admin.php:916 ../../mod/admin.php:917
-msgid "Last login"
+#: ../../mod/register.php:261
+msgid "Membership on this site is by invitation only."
 msgstr ""
 
-#: ../../mod/admin.php:916 ../../mod/admin.php:917
-msgid "Last item"
+#: ../../mod/register.php:262
+msgid "Your invitation ID: "
 msgstr ""
 
-#: ../../mod/admin.php:916
-msgid "Deleted since"
+#: ../../mod/register.php:273
+msgid "Your Full Name (e.g. Joe Smith): "
 msgstr ""
 
-#: ../../mod/admin.php:917 ../../mod/settings.php:35
-msgid "Account"
+#: ../../mod/register.php:274
+msgid "Your Email Address: "
 msgstr ""
 
-#: ../../mod/admin.php:919
+#: ../../mod/register.php:275
 msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
+"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/admin.php:920
-msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
+#: ../../mod/register.php:276
+msgid "Choose a nickname: "
 msgstr ""
 
-#: ../../mod/admin.php:930
-msgid "Name of the new user."
+#: ../../mod/register.php:279 ../../boot.php:1136 ../../include/nav.php:108
+msgid "Register"
 msgstr ""
 
-#: ../../mod/admin.php:931
-msgid "Nickname"
+#: ../../mod/register.php:285 ../../mod/uimport.php:64
+msgid "Import"
 msgstr ""
 
-#: ../../mod/admin.php:931
-msgid "Nickname of the new user."
+#: ../../mod/register.php:286
+msgid "Import your profile to this friendica instance"
 msgstr ""
 
-#: ../../mod/admin.php:932
-msgid "Email address of the new user."
+#: ../../mod/lostpass.php:17
+msgid "No valid account found."
 msgstr ""
 
-#: ../../mod/admin.php:965
-#, php-format
-msgid "Plugin %s disabled."
+#: ../../mod/lostpass.php:33
+msgid "Password reset request issued. Check your email."
 msgstr ""
 
-#: ../../mod/admin.php:969
+#: ../../mod/lostpass.php:44
 #, php-format
-msgid "Plugin %s enabled."
+msgid "Password reset requested at %s"
 msgstr ""
 
-#: ../../mod/admin.php:979 ../../mod/admin.php:1182
-msgid "Disable"
+#: ../../mod/lostpass.php:66
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
 msgstr ""
 
-#: ../../mod/admin.php:981 ../../mod/admin.php:1184
-msgid "Enable"
+#: ../../mod/lostpass.php:84 ../../boot.php:1175
+msgid "Password Reset"
 msgstr ""
 
-#: ../../mod/admin.php:1004 ../../mod/admin.php:1212
-msgid "Toggle"
+#: ../../mod/lostpass.php:85
+msgid "Your password has been reset as requested."
 msgstr ""
 
-#: ../../mod/admin.php:1012 ../../mod/admin.php:1222
-msgid "Author: "
+#: ../../mod/lostpass.php:86
+msgid "Your new password is"
 msgstr ""
 
-#: ../../mod/admin.php:1013 ../../mod/admin.php:1223
-msgid "Maintainer: "
+#: ../../mod/lostpass.php:87
+msgid "Save or copy your new password - and then"
 msgstr ""
 
-#: ../../mod/admin.php:1142
-msgid "No themes found."
+#: ../../mod/lostpass.php:88
+msgid "click here to login"
 msgstr ""
 
-#: ../../mod/admin.php:1204
-msgid "Screenshot"
+#: ../../mod/lostpass.php:89
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
 msgstr ""
 
-#: ../../mod/admin.php:1250
-msgid "[Experimental]"
+#: ../../mod/lostpass.php:107
+#, php-format
+msgid "Your password has been changed at %s"
 msgstr ""
 
-#: ../../mod/admin.php:1251
-msgid "[Unsupported]"
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
 msgstr ""
 
-#: ../../mod/admin.php:1278
-msgid "Log settings updated."
+#: ../../mod/lostpass.php:123
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
 msgstr ""
 
-#: ../../mod/admin.php:1334
-msgid "Clear"
+#: ../../mod/lostpass.php:124
+msgid "Nickname or Email: "
 msgstr ""
 
-#: ../../mod/admin.php:1340
-msgid "Enable Debugging"
+#: ../../mod/lostpass.php:125
+msgid "Reset"
 msgstr ""
 
-#: ../../mod/admin.php:1341
-msgid "Log file"
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
 msgstr ""
 
-#: ../../mod/admin.php:1341
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
+#: ../../mod/attach.php:8
+msgid "Item not available."
 msgstr ""
 
-#: ../../mod/admin.php:1342
-msgid "Log level"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
 msgstr ""
 
-#: ../../mod/admin.php:1391 ../../mod/contacts.php:487
-msgid "Update now"
+#: ../../mod/apps.php:11
+msgid "Applications"
 msgstr ""
 
-#: ../../mod/admin.php:1392
-msgid "Close"
+#: ../../mod/apps.php:14
+msgid "No installed applications."
 msgstr ""
 
-#: ../../mod/admin.php:1398
-msgid "FTP Host"
+#: ../../mod/help.php:79
+msgid "Help:"
 msgstr ""
 
-#: ../../mod/admin.php:1399
-msgid "FTP Path"
+#: ../../mod/help.php:84 ../../include/nav.php:113
+msgid "Help"
 msgstr ""
 
-#: ../../mod/admin.php:1400
-msgid "FTP User"
+#: ../../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:264
+msgid "Could not access contact record."
 msgstr ""
 
-#: ../../mod/admin.php:1401
-msgid "FTP Password"
+#: ../../mod/contacts.php:149
+msgid "Could not locate selected profile."
 msgstr ""
 
-#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:938
-#: ../../include/text.php:939 ../../include/nav.php:118
-msgid "Search"
+#: ../../mod/contacts.php:178
+msgid "Contact updated."
 msgstr ""
 
-#: ../../mod/_search.php:180 ../../mod/_search.php:206
-#: ../../mod/search.php:170 ../../mod/search.php:196
-#: ../../mod/community.php:62 ../../mod/community.php:89
-msgid "No results."
+#: ../../mod/contacts.php:278
+msgid "Contact has been blocked"
 msgstr ""
 
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
+#: ../../mod/contacts.php:278
+msgid "Contact has been unblocked"
 msgstr ""
 
-#: ../../mod/share.php:44
-msgid "link"
+#: ../../mod/contacts.php:288
+msgid "Contact has been ignored"
 msgstr ""
 
-#: ../../mod/tagger.php:95 ../../include/conversation.php:266
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
+#: ../../mod/contacts.php:288
+msgid "Contact has been unignored"
 msgstr ""
 
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
+#: ../../mod/contacts.php:299
+msgid "Contact has been archived"
 msgstr ""
 
-#: ../../mod/editpost.php:39
-msgid "Edit post"
+#: ../../mod/contacts.php:299
+msgid "Contact has been unarchived"
 msgstr ""
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1085
-msgid "upload photo"
+#: ../../mod/contacts.php:324 ../../mod/contacts.php:697
+msgid "Do you really want to delete this contact?"
 msgstr ""
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1086
-msgid "Attach file"
+#: ../../mod/contacts.php:341
+msgid "Contact has been removed."
 msgstr ""
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1087
-msgid "attach file"
+#: ../../mod/contacts.php:379
+#, php-format
+msgid "You are mutual friends with %s"
 msgstr ""
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1089
-msgid "web link"
+#: ../../mod/contacts.php:383
+#, php-format
+msgid "You are sharing with %s"
 msgstr ""
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:1090
-msgid "Insert video link"
+#: ../../mod/contacts.php:388
+#, php-format
+msgid "%s is sharing with you"
 msgstr ""
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:1091
-msgid "video link"
+#: ../../mod/contacts.php:405
+msgid "Private communications are not available for this contact."
 msgstr ""
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1092
-msgid "Insert audio link"
+#: ../../mod/contacts.php:412
+msgid "(Update was successful)"
 msgstr ""
 
-#: ../../mod/editpost.php:119 ../../include/conversation.php:1093
-msgid "audio link"
+#: ../../mod/contacts.php:412
+msgid "(Update was not successful)"
 msgstr ""
 
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1094
-msgid "Set your location"
+#: ../../mod/contacts.php:414
+msgid "Suggest friends"
 msgstr ""
 
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1095
-msgid "set location"
+#: ../../mod/contacts.php:418
+#, php-format
+msgid "Network type: %s"
 msgstr ""
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1096
-msgid "Clear browser location"
+#: ../../mod/contacts.php:421 ../../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:426
+msgid "View all contacts"
 msgstr ""
 
-#: ../../mod/editpost.php:123 ../../include/conversation.php:1097
-msgid "clear location"
+#: ../../mod/contacts.php:434
+msgid "Toggle Blocked status"
 msgstr ""
 
-#: ../../mod/editpost.php:125 ../../include/conversation.php:1103
-msgid "Permission settings"
+#: ../../mod/contacts.php:437 ../../mod/contacts.php:491
+#: ../../mod/contacts.php:701
+msgid "Unignore"
 msgstr ""
 
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1112
-msgid "CC: email addresses"
+#: ../../mod/contacts.php:440
+msgid "Toggle Ignored status"
 msgstr ""
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1113
-msgid "Public post"
+#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
+msgid "Unarchive"
 msgstr ""
 
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1099
-msgid "Set title"
+#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
+msgid "Archive"
 msgstr ""
 
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1101
-msgid "Categories (comma-separated list)"
+#: ../../mod/contacts.php:447
+msgid "Toggle Archive status"
 msgstr ""
 
-#: ../../mod/editpost.php:140 ../../include/conversation.php:1115
-msgid "Example: bob@example.com, mary@example.com"
+#: ../../mod/contacts.php:450
+msgid "Repair"
 msgstr ""
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
+#: ../../mod/contacts.php:453
+msgid "Advanced Contact Settings"
 msgstr ""
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
+#: ../../mod/contacts.php:459
+msgid "Communications lost with this contact!"
 msgstr ""
 
-#: ../../mod/regmod.php:63
-msgid "Account approved."
+#: ../../mod/contacts.php:462
+msgid "Contact Editor"
 msgstr ""
 
-#: ../../mod/regmod.php:100
+#: ../../mod/contacts.php:465
+msgid "Profile Visibility"
+msgstr ""
+
+#: ../../mod/contacts.php:466
 #, php-format
-msgid "Registration revoked for %s"
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
 msgstr ""
 
-#: ../../mod/regmod.php:112
-msgid "Please login."
+#: ../../mod/contacts.php:467
+msgid "Contact Information / Notes"
 msgstr ""
 
-#: ../../mod/directory.php:57
-msgid "Find on this site"
+#: ../../mod/contacts.php:468
+msgid "Edit contact notes"
 msgstr ""
 
-#: ../../mod/directory.php:59 ../../mod/contacts.php:693
-msgid "Finding: "
+#: ../../mod/contacts.php:474
+msgid "Block/Unblock contact"
 msgstr ""
 
-#: ../../mod/directory.php:60
-msgid "Site Directory"
+#: ../../mod/contacts.php:475
+msgid "Ignore contact"
 msgstr ""
 
-#: ../../mod/directory.php:61 ../../mod/contacts.php:694
-#: ../../include/contact_widgets.php:33
-msgid "Find"
+#: ../../mod/contacts.php:476
+msgid "Repair URL settings"
 msgstr ""
 
-#: ../../mod/directory.php:111 ../../mod/profiles.php:690
-msgid "Age: "
+#: ../../mod/contacts.php:477
+msgid "View conversations"
 msgstr ""
 
-#: ../../mod/directory.php:114
-msgid "Gender: "
+#: ../../mod/contacts.php:479
+msgid "Delete contact"
 msgstr ""
 
-#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
-msgid "About:"
+#: ../../mod/contacts.php:483
+msgid "Last update:"
 msgstr ""
 
-#: ../../mod/directory.php:187
-msgid "No entries (some entries may be hidden)."
+#: ../../mod/contacts.php:485
+msgid "Update public posts"
 msgstr ""
 
-#: ../../mod/crepair.php:104
-msgid "Contact settings applied."
+#: ../../mod/contacts.php:494
+msgid "Currently blocked"
 msgstr ""
 
-#: ../../mod/crepair.php:106
-msgid "Contact update failed."
+#: ../../mod/contacts.php:495
+msgid "Currently ignored"
 msgstr ""
 
-#: ../../mod/crepair.php:137
-msgid "Repair Contact Settings"
+#: ../../mod/contacts.php:496
+msgid "Currently archived"
 msgstr ""
 
-#: ../../mod/crepair.php:139
+#: ../../mod/contacts.php:497
 msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
-"information your communications with this contact may stop working."
+"Replies/likes to your public posts <strong>may</strong> still be visible"
 msgstr ""
 
-#: ../../mod/crepair.php:140
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
+#: ../../mod/contacts.php:498
+msgid "Notification for new posts"
 msgstr ""
 
-#: ../../mod/crepair.php:146
-msgid "Return to contact editor"
+#: ../../mod/contacts.php:498
+msgid "Send a notification of every new post of this contact"
 msgstr ""
 
-#: ../../mod/crepair.php:151
-msgid "Account Nickname"
+#: ../../mod/contacts.php:499
+msgid "Fetch further information for feeds"
 msgstr ""
 
-#: ../../mod/crepair.php:152
-msgid "@Tagname - overrides Name/Nickname"
+#: ../../mod/contacts.php:550
+msgid "Suggestions"
 msgstr ""
 
-#: ../../mod/crepair.php:153
-msgid "Account URL"
+#: ../../mod/contacts.php:553
+msgid "Suggest potential friends"
 msgstr ""
 
-#: ../../mod/crepair.php:154
-msgid "Friend Request URL"
+#: ../../mod/contacts.php:556 ../../mod/group.php:194
+msgid "All Contacts"
 msgstr ""
 
-#: ../../mod/crepair.php:155
-msgid "Friend Confirm URL"
+#: ../../mod/contacts.php:559
+msgid "Show all contacts"
 msgstr ""
 
-#: ../../mod/crepair.php:156
-msgid "Notification Endpoint URL"
+#: ../../mod/contacts.php:562
+msgid "Unblocked"
 msgstr ""
 
-#: ../../mod/crepair.php:157
-msgid "Poll/Feed URL"
+#: ../../mod/contacts.php:565
+msgid "Only show unblocked contacts"
 msgstr ""
 
-#: ../../mod/crepair.php:158
-msgid "New photo from this URL"
+#: ../../mod/contacts.php:569
+msgid "Blocked"
 msgstr ""
 
-#: ../../mod/crepair.php:159
-msgid "Remote Self"
+#: ../../mod/contacts.php:572
+msgid "Only show blocked contacts"
 msgstr ""
 
-#: ../../mod/crepair.php:161
-msgid "Mirror postings from this contact"
+#: ../../mod/contacts.php:576
+msgid "Ignored"
 msgstr ""
 
-#: ../../mod/crepair.php:161
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
+#: ../../mod/contacts.php:579
+msgid "Only show ignored contacts"
 msgstr ""
 
-#: ../../mod/uimport.php:66
-msgid "Move account"
+#: ../../mod/contacts.php:583
+msgid "Archived"
 msgstr ""
 
-#: ../../mod/uimport.php:67
-msgid "You can import an account from another Friendica server."
+#: ../../mod/contacts.php:586
+msgid "Only show archived contacts"
 msgstr ""
 
-#: ../../mod/uimport.php:68
-msgid ""
-"You need to export your account from the old server and upload it here. We "
-"will recreate your old account here with all your contacts. We will try also "
-"to inform your friends that you moved here."
+#: ../../mod/contacts.php:590
+msgid "Hidden"
 msgstr ""
 
-#: ../../mod/uimport.php:69
-msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (statusnet/identi.ca) or from Diaspora"
+#: ../../mod/contacts.php:593
+msgid "Only show hidden contacts"
 msgstr ""
 
-#: ../../mod/uimport.php:70
-msgid "Account file"
+#: ../../mod/contacts.php:641
+msgid "Mutual Friendship"
 msgstr ""
 
-#: ../../mod/uimport.php:70
-msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
+#: ../../mod/contacts.php:645
+msgid "is a fan of yours"
 msgstr ""
 
-#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
+#: ../../mod/contacts.php:649
+msgid "you are a fan of"
 msgstr ""
 
-#: ../../mod/lockview.php:48
-msgid "Visible to:"
+#: ../../mod/contacts.php:688 ../../view/theme/diabook/theme.php:125
+#: ../../include/nav.php:173
+msgid "Contacts"
 msgstr ""
 
-#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:941
-msgid "Save"
+#: ../../mod/contacts.php:692
+msgid "Search your contacts"
 msgstr ""
 
-#: ../../mod/help.php:79
-msgid "Help:"
+#: ../../mod/contacts.php:693 ../../mod/directory.php:59
+msgid "Finding: "
 msgstr ""
 
-#: ../../mod/help.php:84 ../../include/nav.php:113
-msgid "Help"
+#: ../../mod/contacts.php:694 ../../mod/directory.php:61
+#: ../../include/contact_widgets.php:33
+msgid "Find"
 msgstr ""
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
+#: ../../mod/contacts.php:699 ../../mod/settings.php:132
+#: ../../mod/settings.php:635
+msgid "Update"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:93
-msgid "This introduction has already been accepted."
+#: ../../mod/videos.php:125
+msgid "No videos selected"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
-msgid "Profile location is not valid or does not contain profile information."
+#: ../../mod/videos.php:317
+msgid "Recent Videos"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
-msgid "Warning: profile location has no identifiable owner name."
+#: ../../mod/videos.php:319
+msgid "Upload New Videos"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
-msgid "Warning: profile location has no profile photo."
+#: ../../mod/common.php:42
+msgid "Common Friends"
 msgstr ""
 
-#: ../../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] ""
-msgstr[1] ""
-
-#: ../../mod/dfrn_request.php:170
-msgid "Introduction complete."
+#: ../../mod/common.php:78
+msgid "No contacts in common."
 msgstr ""
 
-#: ../../mod/dfrn_request.php:209
-msgid "Unrecoverable protocol error."
+#: ../../mod/follow.php:27
+msgid "Contact added"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:237
-msgid "Profile unavailable."
+#: ../../mod/uimport.php:66
+msgid "Move account"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:262
-#, php-format
-msgid "%s has received too many connection requests today."
+#: ../../mod/uimport.php:67
+msgid "You can import an account from another Friendica server."
 msgstr ""
 
-#: ../../mod/dfrn_request.php:263
-msgid "Spam protection measures have been invoked."
+#: ../../mod/uimport.php:68
+msgid ""
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also "
+"to inform your friends that you moved here."
 msgstr ""
 
-#: ../../mod/dfrn_request.php:264
-msgid "Friends are advised to please try again in 24 hours."
+#: ../../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/dfrn_request.php:326
-msgid "Invalid locator"
+#: ../../mod/uimport.php:70
+msgid "Account file"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:335
-msgid "Invalid email address."
+#: ../../mod/uimport.php:70
+msgid ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
 msgstr ""
 
-#: ../../mod/dfrn_request.php:362
-msgid "This account has not been configured for email. Request failed."
+#: ../../mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:458
-msgid "Unable to resolve your name at the provided location."
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:471
-msgid "You have already introduced yourself here."
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
 msgstr ""
 
-#: ../../mod/dfrn_request.php:475
-#, php-format
-msgid "Apparently you are already friends with %s."
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:496
-msgid "Invalid profile URL."
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
-msgid "Disallowed profile URL."
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
 msgstr ""
 
-#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180
-msgid "Failed to update contact record."
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133
+msgid "Remove"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:592
-msgid "Your introduction has been sent."
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:645
-msgid "Please login to confirm introduction."
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:659
+#: ../../mod/newmember.php:12
 msgid ""
-"Incorrect identity currently logged in. Please login to <strong>this</"
-"strong> profile."
-msgstr ""
-
-#: ../../mod/dfrn_request.php:670
-msgid "Hide this contact"
+"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 ""
 
-#: ../../mod/dfrn_request.php:673
-#, php-format
-msgid "Welcome home %s."
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:674
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:675
-msgid "Confirm"
+#: ../../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 ""
 
-#: ../../mod/dfrn_request.php:716 ../../include/items.php:3686
-msgid "[Name Withheld]"
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:811
+#: ../../mod/newmember.php:26
 msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
+"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 ""
 
-#: ../../mod/dfrn_request.php:827
-msgid "<strike>Connect as an email follower</strike> (Coming soon)"
+#: ../../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 ""
 
-#: ../../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>."
+#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
+#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979
+#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
+#: ../../include/nav.php:77
+msgid "Profile"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:832
-msgid "Friend/Connection Request"
+#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:833
+#: ../../mod/newmember.php:36
 msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
+"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 ""
 
-#: ../../mod/dfrn_request.php:834
-msgid "Please answer the following:"
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:835
-#, php-format
-msgid "Does %s know you?"
+#: ../../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 ""
 
-#: ../../mod/dfrn_request.php:838
-msgid "Add a personal note:"
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
-msgid "Friendica"
+#: ../../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 ""
 
-#: ../../mod/dfrn_request.php:841
-msgid "StatusNet/Federated Social Web"
+#: ../../mod/newmember.php:44
+msgid "Connecting"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:730
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
+#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
+#: ../../include/contact_selectors.php:81
+msgid "Facebook"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:843
-#, php-format
+#: ../../mod/newmember.php:49
 msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search "
-"bar."
-msgstr ""
-
-#: ../../mod/dfrn_request.php:844
-msgid "Your Identity Address:"
+"Authorise the Facebook Connector if you currently have a Facebook account "
+"and we will (optionally) import all your Facebook friends and conversations."
 msgstr ""
 
-#: ../../mod/dfrn_request.php:847
-msgid "Submit Request"
+#: ../../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 ""
 
-#: ../../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]"
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
 msgstr ""
 
-#: ../../mod/content.php:496 ../../include/conversation.php:688
-msgid "View in context"
+#: ../../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 ""
 
-#: ../../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:264
-msgid "Could not access contact record."
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
 msgstr ""
 
-#: ../../mod/contacts.php:149
-msgid "Could not locate selected profile."
+#: ../../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 ""
 
-#: ../../mod/contacts.php:178
-msgid "Contact updated."
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
 msgstr ""
 
-#: ../../mod/contacts.php:278
-msgid "Contact has been blocked"
+#: ../../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 ""
 
-#: ../../mod/contacts.php:278
-msgid "Contact has been unblocked"
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
 msgstr ""
 
-#: ../../mod/contacts.php:288
-msgid "Contact has been ignored"
+#: ../../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 ""
 
-#: ../../mod/contacts.php:288
-msgid "Contact has been unignored"
+#: ../../mod/newmember.php:66 ../../include/group.php:270
+msgid "Groups"
 msgstr ""
 
-#: ../../mod/contacts.php:299
-msgid "Contact has been archived"
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
 msgstr ""
 
-#: ../../mod/contacts.php:299
-msgid "Contact has been unarchived"
+#: ../../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 ""
 
-#: ../../mod/contacts.php:324 ../../mod/contacts.php:697
-msgid "Do you really want to delete this contact?"
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
 msgstr ""
 
-#: ../../mod/contacts.php:341
-msgid "Contact has been removed."
+#: ../../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 ""
 
-#: ../../mod/contacts.php:379
-#, php-format
-msgid "You are mutual friends with %s"
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
 msgstr ""
 
-#: ../../mod/contacts.php:383
-#, php-format
-msgid "You are sharing with %s"
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
 msgstr ""
 
-#: ../../mod/contacts.php:388
-#, php-format
-msgid "%s is sharing with you"
+#: ../../mod/newmember.php:82
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program "
+"features and resources."
 msgstr ""
 
-#: ../../mod/contacts.php:405
-msgid "Private communications are not available for this contact."
+#: ../../mod/search.php:21 ../../mod/network.php:179
+msgid "Remove term"
 msgstr ""
 
-#: ../../mod/contacts.php:412
-msgid "(Update was successful)"
+#: ../../mod/search.php:30 ../../mod/network.php:188
+#: ../../include/features.php:42
+msgid "Saved Searches"
 msgstr ""
 
-#: ../../mod/contacts.php:412
-msgid "(Update was not successful)"
+#: ../../mod/search.php:99 ../../include/text.php:951
+#: ../../include/text.php:952 ../../include/nav.php:118
+msgid "Search"
 msgstr ""
 
-#: ../../mod/contacts.php:414
-msgid "Suggest friends"
+#: ../../mod/search.php:170 ../../mod/search.php:196
+#: ../../mod/community.php:62 ../../mod/community.php:89
+msgid "No results."
 msgstr ""
 
-#: ../../mod/contacts.php:418
-#, php-format
-msgid "Network type: %s"
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
 msgstr ""
 
-#: ../../mod/contacts.php:421 ../../include/contact_widgets.php:199
+#: ../../mod/invite.php:49
 #, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/contacts.php:426
-msgid "View all contacts"
-msgstr ""
-
-#: ../../mod/contacts.php:434
-msgid "Toggle Blocked status"
-msgstr ""
-
-#: ../../mod/contacts.php:437 ../../mod/contacts.php:491
-#: ../../mod/contacts.php:701
-msgid "Unignore"
-msgstr ""
-
-#: ../../mod/contacts.php:437 ../../mod/contacts.php:491
-#: ../../mod/contacts.php:701 ../../mod/notifications.php:51
-#: ../../mod/notifications.php:164 ../../mod/notifications.php:210
-msgid "Ignore"
-msgstr ""
-
-#: ../../mod/contacts.php:440
-msgid "Toggle Ignored status"
-msgstr ""
-
-#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
-msgid "Unarchive"
-msgstr ""
-
-#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
-msgid "Archive"
-msgstr ""
-
-#: ../../mod/contacts.php:447
-msgid "Toggle Archive status"
-msgstr ""
-
-#: ../../mod/contacts.php:450
-msgid "Repair"
-msgstr ""
-
-#: ../../mod/contacts.php:453
-msgid "Advanced Contact Settings"
-msgstr ""
-
-#: ../../mod/contacts.php:459
-msgid "Communications lost with this contact!"
+msgid "%s : Not a valid email address."
 msgstr ""
 
-#: ../../mod/contacts.php:462
-msgid "Contact Editor"
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
 msgstr ""
 
-#: ../../mod/contacts.php:465
-msgid "Profile Visibility"
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
 msgstr ""
 
-#: ../../mod/contacts.php:466
+#: ../../mod/invite.php:89
 #, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr ""
-
-#: ../../mod/contacts.php:467
-msgid "Contact Information / Notes"
-msgstr ""
-
-#: ../../mod/contacts.php:468
-msgid "Edit contact notes"
+msgid "%s : Message delivery failed."
 msgstr ""
 
-#: ../../mod/contacts.php:473 ../../mod/contacts.php:665
-#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
+#: ../../mod/invite.php:93
 #, php-format
-msgid "Visit %s's profile [%s]"
-msgstr ""
-
-#: ../../mod/contacts.php:474
-msgid "Block/Unblock contact"
-msgstr ""
-
-#: ../../mod/contacts.php:475
-msgid "Ignore contact"
-msgstr ""
-
-#: ../../mod/contacts.php:476
-msgid "Repair URL settings"
-msgstr ""
-
-#: ../../mod/contacts.php:477
-msgid "View conversations"
-msgstr ""
-
-#: ../../mod/contacts.php:479
-msgid "Delete contact"
-msgstr ""
-
-#: ../../mod/contacts.php:483
-msgid "Last update:"
-msgstr ""
-
-#: ../../mod/contacts.php:485
-msgid "Update public posts"
-msgstr ""
-
-#: ../../mod/contacts.php:494
-msgid "Currently blocked"
-msgstr ""
-
-#: ../../mod/contacts.php:495
-msgid "Currently ignored"
-msgstr ""
-
-#: ../../mod/contacts.php:496
-msgid "Currently archived"
-msgstr ""
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] ""
+msgstr[1] ""
 
-#: ../../mod/contacts.php:497 ../../mod/notifications.php:157
-#: ../../mod/notifications.php:204
-msgid "Hide this contact from others"
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
 msgstr ""
 
-#: ../../mod/contacts.php:497
+#: ../../mod/invite.php:120
+#, php-format
 msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr ""
-
-#: ../../mod/contacts.php:498
-msgid "Notification for new posts"
-msgstr ""
-
-#: ../../mod/contacts.php:498
-msgid "Send a notification of every new post of this contact"
-msgstr ""
-
-#: ../../mod/contacts.php:499
-msgid "Fetch further information for feeds"
-msgstr ""
-
-#: ../../mod/contacts.php:550
-msgid "Suggestions"
-msgstr ""
-
-#: ../../mod/contacts.php:553
-msgid "Suggest potential friends"
-msgstr ""
-
-#: ../../mod/contacts.php:556 ../../mod/group.php:194
-msgid "All Contacts"
-msgstr ""
-
-#: ../../mod/contacts.php:559
-msgid "Show all contacts"
-msgstr ""
-
-#: ../../mod/contacts.php:562
-msgid "Unblocked"
-msgstr ""
-
-#: ../../mod/contacts.php:565
-msgid "Only show unblocked contacts"
-msgstr ""
-
-#: ../../mod/contacts.php:569
-msgid "Blocked"
-msgstr ""
-
-#: ../../mod/contacts.php:572
-msgid "Only show blocked contacts"
-msgstr ""
-
-#: ../../mod/contacts.php:576
-msgid "Ignored"
-msgstr ""
-
-#: ../../mod/contacts.php:579
-msgid "Only show ignored contacts"
-msgstr ""
-
-#: ../../mod/contacts.php:583
-msgid "Archived"
-msgstr ""
-
-#: ../../mod/contacts.php:586
-msgid "Only show archived contacts"
+"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/contacts.php:590
-msgid "Hidden"
+#: ../../mod/invite.php:122
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
 msgstr ""
 
-#: ../../mod/contacts.php:593
-msgid "Only show hidden contacts"
+#: ../../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/contacts.php:641
-msgid "Mutual Friendship"
+#: ../../mod/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other "
+"public sites or invite members."
 msgstr ""
 
-#: ../../mod/contacts.php:645
-msgid "is a fan of yours"
+#: ../../mod/invite.php:132
+msgid "Send invitations"
 msgstr ""
 
-#: ../../mod/contacts.php:649
-msgid "you are a fan of"
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
 msgstr ""
 
-#: ../../mod/contacts.php:666 ../../mod/nogroup.php:41
-msgid "Edit contact"
+#: ../../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/contacts.php:692
-msgid "Search your contacts"
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
 msgstr ""
 
-#: ../../mod/contacts.php:699 ../../mod/settings.php:131
-#: ../../mod/settings.php:634
-msgid "Update"
+#: ../../mod/invite.php:137
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
 msgstr ""
 
-#: ../../mod/settings.php:28 ../../mod/photos.php:80
-msgid "everybody"
+#: ../../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/settings.php:40
+#: ../../mod/settings.php:41
 msgid "Additional features"
 msgstr ""
 
-#: ../../mod/settings.php:45
+#: ../../mod/settings.php:46
 msgid "Display"
 msgstr ""
 
-#: ../../mod/settings.php:51 ../../mod/settings.php:774
+#: ../../mod/settings.php:52 ../../mod/settings.php:775
 msgid "Social Networks"
 msgstr ""
 
-#: ../../mod/settings.php:61 ../../include/nav.php:167
+#: ../../mod/settings.php:62 ../../include/nav.php:167
 msgid "Delegations"
 msgstr ""
 
-#: ../../mod/settings.php:66
+#: ../../mod/settings.php:67
 msgid "Connected apps"
 msgstr ""
 
-#: ../../mod/settings.php:71 ../../mod/uexport.php:85
+#: ../../mod/settings.php:72 ../../mod/uexport.php:85
 msgid "Export personal data"
 msgstr ""
 
-#: ../../mod/settings.php:76
+#: ../../mod/settings.php:77
 msgid "Remove account"
 msgstr ""
 
-#: ../../mod/settings.php:128
+#: ../../mod/settings.php:129
 msgid "Missing some important data!"
 msgstr ""
 
-#: ../../mod/settings.php:237
+#: ../../mod/settings.php:238
 msgid "Failed to connect with email account using the settings provided."
 msgstr ""
 
-#: ../../mod/settings.php:242
+#: ../../mod/settings.php:243
 msgid "Email settings updated."
 msgstr ""
 
-#: ../../mod/settings.php:257
+#: ../../mod/settings.php:258
 msgid "Features updated"
 msgstr ""
 
-#: ../../mod/settings.php:318
+#: ../../mod/settings.php:319
 msgid "Relocate message has been send to your contacts"
 msgstr ""
 
-#: ../../mod/settings.php:332
+#: ../../mod/settings.php:333
 msgid "Passwords do not match. Password unchanged."
 msgstr ""
 
-#: ../../mod/settings.php:337
+#: ../../mod/settings.php:338
 msgid "Empty passwords are not allowed. Password unchanged."
 msgstr ""
 
-#: ../../mod/settings.php:345
+#: ../../mod/settings.php:346
 msgid "Wrong password."
 msgstr ""
 
-#: ../../mod/settings.php:356
+#: ../../mod/settings.php:357
 msgid "Password changed."
 msgstr ""
 
-#: ../../mod/settings.php:358
+#: ../../mod/settings.php:359
 msgid "Password update failed. Please try again."
 msgstr ""
 
-#: ../../mod/settings.php:423
+#: ../../mod/settings.php:424
 msgid " Please use a shorter name."
 msgstr ""
 
-#: ../../mod/settings.php:425
+#: ../../mod/settings.php:426
 msgid " Name too short."
 msgstr ""
 
-#: ../../mod/settings.php:434
+#: ../../mod/settings.php:435
 msgid "Wrong Password"
 msgstr ""
 
-#: ../../mod/settings.php:439
+#: ../../mod/settings.php:440
 msgid " Not valid email."
 msgstr ""
 
-#: ../../mod/settings.php:445
+#: ../../mod/settings.php:446
 msgid " Cannot change to that email."
 msgstr ""
 
-#: ../../mod/settings.php:500
+#: ../../mod/settings.php:501
 msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr ""
 
-#: ../../mod/settings.php:504
+#: ../../mod/settings.php:505
 msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr ""
 
-#: ../../mod/settings.php:534
+#: ../../mod/settings.php:535
 msgid "Settings updated."
 msgstr ""
 
-#: ../../mod/settings.php:607 ../../mod/settings.php:633
-#: ../../mod/settings.php:669
+#: ../../mod/settings.php:608 ../../mod/settings.php:634
+#: ../../mod/settings.php:670
 msgid "Add application"
 msgstr ""
 
-#: ../../mod/settings.php:611 ../../mod/settings.php:637
+#: ../../mod/settings.php:612 ../../mod/settings.php:638
 msgid "Consumer Key"
 msgstr ""
 
-#: ../../mod/settings.php:612 ../../mod/settings.php:638
+#: ../../mod/settings.php:613 ../../mod/settings.php:639
 msgid "Consumer Secret"
 msgstr ""
 
-#: ../../mod/settings.php:613 ../../mod/settings.php:639
+#: ../../mod/settings.php:614 ../../mod/settings.php:640
 msgid "Redirect"
 msgstr ""
 
-#: ../../mod/settings.php:614 ../../mod/settings.php:640
+#: ../../mod/settings.php:615 ../../mod/settings.php:641
 msgid "Icon url"
 msgstr ""
 
-#: ../../mod/settings.php:625
+#: ../../mod/settings.php:626
 msgid "You can't edit this application."
 msgstr ""
 
-#: ../../mod/settings.php:668
+#: ../../mod/settings.php:669
 msgid "Connected Apps"
 msgstr ""
 
-#: ../../mod/settings.php:672
+#: ../../mod/settings.php:673
 msgid "Client key starts with"
 msgstr ""
 
-#: ../../mod/settings.php:673
+#: ../../mod/settings.php:674
 msgid "No name"
 msgstr ""
 
-#: ../../mod/settings.php:674
+#: ../../mod/settings.php:675
 msgid "Remove authorization"
 msgstr ""
 
-#: ../../mod/settings.php:686
+#: ../../mod/settings.php:687
 msgid "No Plugin settings configured"
 msgstr ""
 
-#: ../../mod/settings.php:694
+#: ../../mod/settings.php:695
 msgid "Plugin Settings"
 msgstr ""
 
-#: ../../mod/settings.php:708
+#: ../../mod/settings.php:709
 msgid "Off"
 msgstr ""
 
-#: ../../mod/settings.php:708
+#: ../../mod/settings.php:709
 msgid "On"
 msgstr ""
 
-#: ../../mod/settings.php:716
+#: ../../mod/settings.php:717
 msgid "Additional Features"
 msgstr ""
 
-#: ../../mod/settings.php:730 ../../mod/settings.php:731
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
 #, php-format
 msgid "Built-in support for %s connectivity is %s"
 msgstr ""
 
-#: ../../mod/settings.php:730 ../../mod/settings.php:731
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
 msgid "enabled"
 msgstr ""
 
-#: ../../mod/settings.php:730 ../../mod/settings.php:731
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
 msgid "disabled"
 msgstr ""
 
-#: ../../mod/settings.php:731
+#: ../../mod/settings.php:732
 msgid "StatusNet"
 msgstr ""
 
-#: ../../mod/settings.php:767
+#: ../../mod/settings.php:768
 msgid "Email access is disabled on this site."
 msgstr ""
 
-#: ../../mod/settings.php:779
+#: ../../mod/settings.php:780
 msgid "Email/Mailbox Setup"
 msgstr ""
 
-#: ../../mod/settings.php:780
+#: ../../mod/settings.php:781
 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:781
+#: ../../mod/settings.php:782
 msgid "Last successful email check:"
 msgstr ""
 
-#: ../../mod/settings.php:783
+#: ../../mod/settings.php:784
 msgid "IMAP server name:"
 msgstr ""
 
-#: ../../mod/settings.php:784
+#: ../../mod/settings.php:785
 msgid "IMAP port:"
 msgstr ""
 
-#: ../../mod/settings.php:785
+#: ../../mod/settings.php:786
 msgid "Security:"
 msgstr ""
 
-#: ../../mod/settings.php:785 ../../mod/settings.php:790
+#: ../../mod/settings.php:786 ../../mod/settings.php:791
 msgid "None"
 msgstr ""
 
-#: ../../mod/settings.php:786
+#: ../../mod/settings.php:787
 msgid "Email login name:"
 msgstr ""
 
-#: ../../mod/settings.php:787
+#: ../../mod/settings.php:788
 msgid "Email password:"
 msgstr ""
 
-#: ../../mod/settings.php:788
+#: ../../mod/settings.php:789
 msgid "Reply-to address:"
 msgstr ""
 
-#: ../../mod/settings.php:789
+#: ../../mod/settings.php:790
 msgid "Send public posts to all email contacts:"
 msgstr ""
 
-#: ../../mod/settings.php:790
+#: ../../mod/settings.php:791
 msgid "Action after import:"
 msgstr ""
 
-#: ../../mod/settings.php:790
+#: ../../mod/settings.php:791
 msgid "Mark as seen"
 msgstr ""
 
-#: ../../mod/settings.php:790
+#: ../../mod/settings.php:791
 msgid "Move to folder"
 msgstr ""
 
-#: ../../mod/settings.php:791
+#: ../../mod/settings.php:792
 msgid "Move to folder:"
 msgstr ""
 
-#: ../../mod/settings.php:869
+#: ../../mod/settings.php:870
 msgid "Display Settings"
 msgstr ""
 
-#: ../../mod/settings.php:875 ../../mod/settings.php:889
+#: ../../mod/settings.php:876 ../../mod/settings.php:890
 msgid "Display Theme:"
 msgstr ""
 
-#: ../../mod/settings.php:876
+#: ../../mod/settings.php:877
 msgid "Mobile Theme:"
 msgstr ""
 
-#: ../../mod/settings.php:877
+#: ../../mod/settings.php:878
 msgid "Update browser every xx seconds"
 msgstr ""
 
-#: ../../mod/settings.php:877
+#: ../../mod/settings.php:878
 msgid "Minimum of 10 seconds, no maximum"
 msgstr ""
 
-#: ../../mod/settings.php:878
+#: ../../mod/settings.php:879
 msgid "Number of items to display per page:"
 msgstr ""
 
-#: ../../mod/settings.php:878 ../../mod/settings.php:879
+#: ../../mod/settings.php:879 ../../mod/settings.php:880
 msgid "Maximum of 100 items"
 msgstr ""
 
-#: ../../mod/settings.php:879
+#: ../../mod/settings.php:880
 msgid "Number of items to display per page when viewed from mobile device:"
 msgstr ""
 
-#: ../../mod/settings.php:880
+#: ../../mod/settings.php:881
 msgid "Don't show emoticons"
 msgstr ""
 
-#: ../../mod/settings.php:881
+#: ../../mod/settings.php:882
 msgid "Don't show notices"
 msgstr ""
 
-#: ../../mod/settings.php:882
+#: ../../mod/settings.php:883
 msgid "Infinite scroll"
 msgstr ""
 
-#: ../../mod/settings.php:959
+#: ../../mod/settings.php:960
+msgid "User Types"
+msgstr ""
+
+#: ../../mod/settings.php:961
+msgid "Community Types"
+msgstr ""
+
+#: ../../mod/settings.php:962
 msgid "Normal Account Page"
 msgstr ""
 
-#: ../../mod/settings.php:960
+#: ../../mod/settings.php:963
 msgid "This account is a normal personal profile"
 msgstr ""
 
-#: ../../mod/settings.php:963
+#: ../../mod/settings.php:966
 msgid "Soapbox Page"
 msgstr ""
 
-#: ../../mod/settings.php:964
+#: ../../mod/settings.php:967
 msgid "Automatically approve all connection/friend requests as read-only fans"
 msgstr ""
 
-#: ../../mod/settings.php:967
+#: ../../mod/settings.php:970
 msgid "Community Forum/Celebrity Account"
 msgstr ""
 
-#: ../../mod/settings.php:968
+#: ../../mod/settings.php:971
 msgid "Automatically approve all connection/friend requests as read-write fans"
 msgstr ""
 
-#: ../../mod/settings.php:971
+#: ../../mod/settings.php:974
 msgid "Automatic Friend Page"
 msgstr ""
 
-#: ../../mod/settings.php:972
+#: ../../mod/settings.php:975
 msgid "Automatically approve all connection/friend requests as friends"
 msgstr ""
 
-#: ../../mod/settings.php:975
+#: ../../mod/settings.php:978
 msgid "Private Forum [Experimental]"
 msgstr ""
 
-#: ../../mod/settings.php:976
+#: ../../mod/settings.php:979
 msgid "Private forum - approved members only"
 msgstr ""
 
-#: ../../mod/settings.php:988
+#: ../../mod/settings.php:991
 msgid "OpenID:"
 msgstr ""
 
-#: ../../mod/settings.php:988
+#: ../../mod/settings.php:991
 msgid "(Optional) Allow this OpenID to login to this account."
 msgstr ""
 
-#: ../../mod/settings.php:998
+#: ../../mod/settings.php:1001
 msgid "Publish your default profile in your local site directory?"
 msgstr ""
 
-#: ../../mod/settings.php:1004
+#: ../../mod/settings.php:1007
 msgid "Publish your default profile in the global social directory?"
 msgstr ""
 
-#: ../../mod/settings.php:1012
+#: ../../mod/settings.php:1015
 msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr ""
 
-#: ../../mod/settings.php:1016
+#: ../../mod/settings.php:1019 ../../include/conversation.php:1055
 msgid "Hide your profile details from unknown viewers?"
 msgstr ""
 
-#: ../../mod/settings.php:1021
+#: ../../mod/settings.php:1024
 msgid "Allow friends to post to your profile page?"
 msgstr ""
 
-#: ../../mod/settings.php:1027
+#: ../../mod/settings.php:1030
 msgid "Allow friends to tag your posts?"
 msgstr ""
 
-#: ../../mod/settings.php:1033
+#: ../../mod/settings.php:1036
 msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr ""
 
-#: ../../mod/settings.php:1039
+#: ../../mod/settings.php:1042
 msgid "Permit unknown people to send you private mail?"
 msgstr ""
 
-#: ../../mod/settings.php:1047
+#: ../../mod/settings.php:1050
 msgid "Profile is <strong>not published</strong>."
 msgstr ""
 
-#: ../../mod/settings.php:1050 ../../mod/profile_photo.php:248
+#: ../../mod/settings.php:1053 ../../mod/profile_photo.php:248
 msgid "or"
 msgstr ""
 
-#: ../../mod/settings.php:1055
+#: ../../mod/settings.php:1058
 msgid "Your Identity Address is"
 msgstr ""
 
-#: ../../mod/settings.php:1066
+#: ../../mod/settings.php:1069
 msgid "Automatically expire posts after this many days:"
 msgstr ""
 
-#: ../../mod/settings.php:1066
+#: ../../mod/settings.php:1069
 msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr ""
 
-#: ../../mod/settings.php:1067
+#: ../../mod/settings.php:1070
 msgid "Advanced expiration settings"
 msgstr ""
 
-#: ../../mod/settings.php:1068
+#: ../../mod/settings.php:1071
 msgid "Advanced Expiration"
 msgstr ""
 
-#: ../../mod/settings.php:1069
+#: ../../mod/settings.php:1072
 msgid "Expire posts:"
 msgstr ""
 
-#: ../../mod/settings.php:1070
+#: ../../mod/settings.php:1073
 msgid "Expire personal notes:"
 msgstr ""
 
-#: ../../mod/settings.php:1071
+#: ../../mod/settings.php:1074
 msgid "Expire starred posts:"
 msgstr ""
 
-#: ../../mod/settings.php:1072
+#: ../../mod/settings.php:1075
 msgid "Expire photos:"
 msgstr ""
 
-#: ../../mod/settings.php:1073
+#: ../../mod/settings.php:1076
 msgid "Only expire posts by others:"
 msgstr ""
 
-#: ../../mod/settings.php:1099
+#: ../../mod/settings.php:1102
 msgid "Account Settings"
 msgstr ""
 
-#: ../../mod/settings.php:1107
+#: ../../mod/settings.php:1110
 msgid "Password Settings"
 msgstr ""
 
-#: ../../mod/settings.php:1108
+#: ../../mod/settings.php:1111
 msgid "New Password:"
 msgstr ""
 
-#: ../../mod/settings.php:1109
+#: ../../mod/settings.php:1112
 msgid "Confirm:"
 msgstr ""
 
-#: ../../mod/settings.php:1109
+#: ../../mod/settings.php:1112
 msgid "Leave password fields blank unless changing"
 msgstr ""
 
-#: ../../mod/settings.php:1110
+#: ../../mod/settings.php:1113
 msgid "Current Password:"
 msgstr ""
 
-#: ../../mod/settings.php:1110 ../../mod/settings.php:1111
+#: ../../mod/settings.php:1113 ../../mod/settings.php:1114
 msgid "Your current password to confirm the changes"
 msgstr ""
 
-#: ../../mod/settings.php:1111
+#: ../../mod/settings.php:1114
 msgid "Password:"
 msgstr ""
 
-#: ../../mod/settings.php:1115
+#: ../../mod/settings.php:1118
 msgid "Basic Settings"
 msgstr ""
 
-#: ../../mod/settings.php:1116 ../../include/profile_advanced.php:15
+#: ../../mod/settings.php:1119 ../../include/profile_advanced.php:15
 msgid "Full Name:"
 msgstr ""
 
-#: ../../mod/settings.php:1117
+#: ../../mod/settings.php:1120
 msgid "Email Address:"
 msgstr ""
 
-#: ../../mod/settings.php:1118
+#: ../../mod/settings.php:1121
 msgid "Your Timezone:"
 msgstr ""
 
-#: ../../mod/settings.php:1119
+#: ../../mod/settings.php:1122
 msgid "Default Post Location:"
 msgstr ""
 
-#: ../../mod/settings.php:1120
+#: ../../mod/settings.php:1123
 msgid "Use Browser Location:"
 msgstr ""
 
-#: ../../mod/settings.php:1123
+#: ../../mod/settings.php:1126
 msgid "Security and Privacy Settings"
 msgstr ""
 
-#: ../../mod/settings.php:1125
+#: ../../mod/settings.php:1128
 msgid "Maximum Friend Requests/Day:"
 msgstr ""
 
-#: ../../mod/settings.php:1125 ../../mod/settings.php:1155
+#: ../../mod/settings.php:1128 ../../mod/settings.php:1158
 msgid "(to prevent spam abuse)"
 msgstr ""
 
-#: ../../mod/settings.php:1126
+#: ../../mod/settings.php:1129
 msgid "Default Post Permissions"
 msgstr ""
 
-#: ../../mod/settings.php:1127
+#: ../../mod/settings.php:1130
 msgid "(click to open/close)"
 msgstr ""
 
-#: ../../mod/settings.php:1136 ../../mod/photos.php:1144
-#: ../../mod/photos.php:1515
-msgid "Show to Groups"
-msgstr ""
-
-#: ../../mod/settings.php:1137 ../../mod/photos.php:1145
-#: ../../mod/photos.php:1516
-msgid "Show to Contacts"
-msgstr ""
-
-#: ../../mod/settings.php:1138
+#: ../../mod/settings.php:1141
 msgid "Default Private Post"
 msgstr ""
 
-#: ../../mod/settings.php:1139
+#: ../../mod/settings.php:1142
 msgid "Default Public Post"
 msgstr ""
 
-#: ../../mod/settings.php:1143
+#: ../../mod/settings.php:1146
 msgid "Default Permissions for New Posts"
 msgstr ""
 
-#: ../../mod/settings.php:1155
+#: ../../mod/settings.php:1158
 msgid "Maximum private messages per day from unknown people:"
 msgstr ""
 
-#: ../../mod/settings.php:1158
+#: ../../mod/settings.php:1161
 msgid "Notification Settings"
 msgstr ""
 
-#: ../../mod/settings.php:1159
+#: ../../mod/settings.php:1162
 msgid "By default post a status message when:"
 msgstr ""
 
-#: ../../mod/settings.php:1160
+#: ../../mod/settings.php:1163
 msgid "accepting a friend request"
 msgstr ""
 
-#: ../../mod/settings.php:1161
+#: ../../mod/settings.php:1164
 msgid "joining a forum/community"
 msgstr ""
 
-#: ../../mod/settings.php:1162
+#: ../../mod/settings.php:1165
 msgid "making an <em>interesting</em> profile change"
 msgstr ""
 
-#: ../../mod/settings.php:1163
+#: ../../mod/settings.php:1166
 msgid "Send a notification email when:"
 msgstr ""
 
-#: ../../mod/settings.php:1164
+#: ../../mod/settings.php:1167
 msgid "You receive an introduction"
 msgstr ""
 
-#: ../../mod/settings.php:1165
+#: ../../mod/settings.php:1168
 msgid "Your introductions are confirmed"
 msgstr ""
 
-#: ../../mod/settings.php:1166
+#: ../../mod/settings.php:1169
 msgid "Someone writes on your profile wall"
 msgstr ""
 
-#: ../../mod/settings.php:1167
+#: ../../mod/settings.php:1170
 msgid "Someone writes a followup comment"
 msgstr ""
 
-#: ../../mod/settings.php:1168
+#: ../../mod/settings.php:1171
 msgid "You receive a private message"
 msgstr ""
 
-#: ../../mod/settings.php:1169
+#: ../../mod/settings.php:1172
 msgid "You receive a friend suggestion"
 msgstr ""
 
-#: ../../mod/settings.php:1170
+#: ../../mod/settings.php:1173
 msgid "You are tagged in a post"
 msgstr ""
 
-#: ../../mod/settings.php:1171
+#: ../../mod/settings.php:1174
 msgid "You are poked/prodded/etc. in a post"
 msgstr ""
 
-#: ../../mod/settings.php:1174
+#: ../../mod/settings.php:1177
 msgid "Advanced Account/Page Type Settings"
 msgstr ""
 
-#: ../../mod/settings.php:1175
+#: ../../mod/settings.php:1178
 msgid "Change the behaviour of this account for special situations"
 msgstr ""
 
-#: ../../mod/settings.php:1178
+#: ../../mod/settings.php:1181
 msgid "Relocate"
 msgstr ""
 
-#: ../../mod/settings.php:1179
+#: ../../mod/settings.php:1182
 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:1180
+#: ../../mod/settings.php:1183
 msgid "Resend relocate message to contacts"
 msgstr ""
 
+#: ../../mod/display.php:263
+msgid "Item has been removed."
+msgstr ""
+
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr ""
+
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr ""
+
 #: ../../mod/profiles.php:37
 msgid "Profile deleted."
 msgstr ""
@@ -4465,2915 +4257,3086 @@ msgid ""
 "be visible to anybody using the internet."
 msgstr ""
 
+#: ../../mod/profiles.php:690 ../../mod/directory.php:111
+msgid "Age: "
+msgstr ""
+
 #: ../../mod/profiles.php:729
 msgid "Edit/Manage Profiles"
 msgstr ""
 
-#: ../../mod/group.php:29
-msgid "Group created."
+#: ../../mod/profiles.php:730 ../../boot.php:1473 ../../boot.php:1499
+msgid "Change profile photo"
 msgstr ""
 
-#: ../../mod/group.php:35
-msgid "Could not create group."
+#: ../../mod/profiles.php:731 ../../boot.php:1474
+msgid "Create New Profile"
 msgstr ""
 
-#: ../../mod/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
+#: ../../mod/profiles.php:742 ../../boot.php:1484
+msgid "Profile Image"
 msgstr ""
 
-#: ../../mod/group.php:60
-msgid "Group name changed."
+#: ../../mod/profiles.php:744 ../../boot.php:1487
+msgid "visible to everybody"
 msgstr ""
 
-#: ../../mod/group.php:87
-msgid "Save Group"
+#: ../../mod/profiles.php:745 ../../boot.php:1488
+msgid "Edit visibility"
 msgstr ""
 
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
+#: ../../mod/share.php:44
+msgid "link"
 msgstr ""
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
+#: ../../mod/uexport.php:77
+msgid "Export account"
 msgstr ""
 
-#: ../../mod/group.php:113
-msgid "Group removed."
+#: ../../mod/uexport.php:77
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
 msgstr ""
 
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
+#: ../../mod/uexport.php:78
+msgid "Export all"
 msgstr ""
 
-#: ../../mod/group.php:179
-msgid "Group Editor"
+#: ../../mod/uexport.php:78
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
 msgstr ""
 
-#: ../../mod/group.php:192
-msgid "Members"
+#: ../../mod/ping.php:238
+msgid "{0} wants to be your friend"
 msgstr ""
 
-#: ../../mod/group.php:224 ../../mod/profperm.php:105
-msgid "Click on a contact to add or remove."
+#: ../../mod/ping.php:243
+msgid "{0} sent you a message"
+msgstr ""
+
+#: ../../mod/ping.php:248
+msgid "{0} requested registration"
+msgstr ""
+
+#: ../../mod/ping.php:254
+#, php-format
+msgid "{0} commented %s's post"
+msgstr ""
+
+#: ../../mod/ping.php:259
+#, php-format
+msgid "{0} liked %s's post"
+msgstr ""
+
+#: ../../mod/ping.php:264
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr ""
+
+#: ../../mod/ping.php:269
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr ""
+
+#: ../../mod/ping.php:274
+msgid "{0} posted"
 msgstr ""
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
+#: ../../mod/ping.php:279
+#, php-format
+msgid "{0} tagged %s's post with #%s"
 msgstr ""
 
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
+#: ../../mod/ping.php:285
+msgid "{0} mentioned you in a post"
 msgstr ""
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
+#: ../../mod/navigation.php:20 ../../include/nav.php:34
+msgid "Nothing new here"
 msgstr ""
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
+#: ../../mod/navigation.php:24 ../../include/nav.php:38
+msgid "Clear notifications"
 msgstr ""
 
-#: ../../mod/babel.php:39
-msgid "bb2html: "
+#: ../../mod/community.php:23
+msgid "Not available."
 msgstr ""
 
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
+#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:129
+#: ../../include/nav.php:128
+msgid "Community"
 msgstr ""
 
-#: ../../mod/babel.php:47
-msgid "bb2md: "
+#: ../../mod/filer.php:30 ../../include/conversation.php:1004
+#: ../../include/conversation.php:1022
+msgid "Save to Folder:"
 msgstr ""
 
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
+#: ../../mod/filer.php:30
+msgid "- select -"
 msgstr ""
 
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
+#: ../../mod/filer.php:31 ../../mod/notes.php:63 ../../include/text.php:954
+msgid "Save"
 msgstr ""
 
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
+#: ../../mod/wall_attach.php:75
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
 msgstr ""
 
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
+#: ../../mod/wall_attach.php:75
+msgid "Or - did you try to upload an empty file?"
 msgstr ""
 
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
+#: ../../mod/wall_attach.php:81
+#, php-format
+msgid "File exceeds size limit of %d"
 msgstr ""
 
-#: ../../mod/community.php:23
-msgid "Not available."
+#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
+msgid "File upload failed."
 msgstr ""
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
 msgstr ""
 
-#: ../../mod/notify.php:61 ../../mod/notifications.php:332
-msgid "No more system notifications."
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
 msgstr ""
 
-#: ../../mod/notify.php:65 ../../mod/notifications.php:336
-msgid "System Notifications"
+#: ../../mod/profperm.php:105 ../../mod/group.php:224
+msgid "Click on a contact to add or remove."
 msgstr ""
 
-#: ../../mod/message.php:9 ../../include/nav.php:161
-msgid "New Message"
+#: ../../mod/profperm.php:114
+msgid "Visible To"
 msgstr ""
 
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
 msgstr ""
 
-#: ../../mod/message.php:182 ../../mod/notifications.php:103
-#: ../../include/nav.php:158
-msgid "Messages"
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
 msgstr ""
 
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
+#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:527
+#: ../../include/contact_widgets.php:34
+msgid "Friend Suggestions"
 msgstr ""
 
-#: ../../mod/message.php:227
-msgid "Message deleted."
+#: ../../mod/suggest.php:72
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
 msgstr ""
 
-#: ../../mod/message.php:258
-msgid "Conversation removed."
+#: ../../mod/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1445
+#: ../../include/contact_widgets.php:9
+msgid "Connect"
 msgstr ""
 
-#: ../../mod/message.php:371
-msgid "No messages."
+#: ../../mod/suggest.php:90
+msgid "Ignore/Hide"
 msgstr ""
 
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
 msgstr ""
 
-#: ../../mod/message.php:381
+#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
 #, php-format
-msgid "You and %s"
+msgid "%1$s welcomes %2$s"
 msgstr ""
 
-#: ../../mod/message.php:384
-#, php-format
-msgid "%s and You"
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
 msgstr ""
 
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
+#: ../../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/message.php:408
-msgid "D, d M Y - g:i A"
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
 msgstr ""
 
-#: ../../mod/message.php:411
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/message.php:450
-msgid "Message not available."
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
 msgstr ""
 
-#: ../../mod/message.php:520
-msgid "Delete message"
+#: ../../mod/delegate.php:124 ../../include/nav.php:167
+msgid "Delegate Page Management"
 msgstr ""
 
-#: ../../mod/message.php:548
+#: ../../mod/delegate.php:126
 msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
+"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/message.php:552
-msgid "Send Reply"
+#: ../../mod/delegate.php:127
+msgid "Existing Page Managers"
 msgstr ""
 
-#: ../../mod/like.php:169 ../../include/conversation.php:140
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
+#: ../../mod/delegate.php:129
+msgid "Existing Page Delegates"
 msgstr ""
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
+#: ../../mod/delegate.php:131
+msgid "Potential Delegates"
 msgstr ""
 
-#: ../../mod/localtime.php:12 ../../include/event.php:11
-#: ../../include/bb2diaspora.php:133
-msgid "l F d, Y \\@ g:i A"
+#: ../../mod/delegate.php:134
+msgid "Add"
 msgstr ""
 
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
+#: ../../mod/delegate.php:135
+msgid "No entries."
 msgstr ""
 
-#: ../../mod/localtime.php:26
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
+#: ../../mod/viewcontacts.php:39
+msgid "No contacts."
 msgstr ""
 
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:874
+msgid "View Contacts"
 msgstr ""
 
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
+#: ../../mod/notes.php:44 ../../boot.php:2010
+msgid "Personal Notes"
 msgstr ""
 
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
 msgstr ""
 
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
 msgstr ""
 
-#: ../../mod/filer.php:30 ../../include/conversation.php:1004
-#: ../../include/conversation.php:1022
-msgid "Save to Folder:"
+#: ../../mod/poke.php:194
+msgid "Recipient"
 msgstr ""
 
-#: ../../mod/filer.php:30
-msgid "- select -"
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
 msgstr ""
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
+#: ../../mod/poke.php:198
+msgid "Make this post private"
 msgstr ""
 
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
+#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:525
+msgid "Global Directory"
 msgstr ""
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
+#: ../../mod/directory.php:57
+msgid "Find on this site"
 msgstr ""
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
+#: ../../mod/directory.php:60
+msgid "Site Directory"
 msgstr ""
 
-#: ../../mod/viewcontacts.php:39
-msgid "No contacts."
+#: ../../mod/directory.php:114
+msgid "Gender: "
 msgstr ""
 
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:861
-msgid "View Contacts"
+#: ../../mod/directory.php:136 ../../boot.php:1515
+#: ../../include/profile_advanced.php:17
+msgid "Gender:"
 msgstr ""
 
-#: ../../mod/dirfind.php:26
-msgid "People Search"
+#: ../../mod/directory.php:138 ../../boot.php:1518
+#: ../../include/profile_advanced.php:37
+msgid "Status:"
 msgstr ""
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
+#: ../../mod/directory.php:140 ../../boot.php:1520
+#: ../../include/profile_advanced.php:48
+msgid "Homepage:"
 msgstr ""
 
-#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1810
-msgid "Upload New Photos"
+#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
+msgid "About:"
 msgstr ""
 
-#: ../../mod/photos.php:144
-msgid "Contact information unavailable"
+#: ../../mod/directory.php:187
+msgid "No entries (some entries may be hidden)."
 msgstr ""
 
-#: ../../mod/photos.php:165
-msgid "Album not found."
+#: ../../mod/localtime.php:12 ../../include/event.php:11
+#: ../../include/bb2diaspora.php:133
+msgid "l F d, Y \\@ g:i A"
 msgstr ""
 
-#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
-msgid "Delete Album"
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
 msgstr ""
 
-#: ../../mod/photos.php:198
-msgid "Do you really want to delete this photo album and all its photos?"
+#: ../../mod/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
 msgstr ""
 
-#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511
-msgid "Delete Photo"
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
 msgstr ""
 
-#: ../../mod/photos.php:287
-msgid "Do you really want to delete this photo?"
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
 msgstr ""
 
-#: ../../mod/photos.php:660
+#: ../../mod/localtime.php:36
 #, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
+msgid "Converted localtime: %s"
 msgstr ""
 
-#: ../../mod/photos.php:660
-msgid "a photo"
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
 msgstr ""
 
-#: ../../mod/photos.php:765
-msgid "Image exceeds size limit of "
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
 msgstr ""
 
-#: ../../mod/photos.php:773
-msgid "Image file is empty."
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
 msgstr ""
 
-#: ../../mod/photos.php:805 ../../mod/wall_upload.php:112
-#: ../../mod/profile_photo.php:153
-msgid "Unable to process image."
+#: ../../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 ""
 
-#: ../../mod/photos.php:832 ../../mod/wall_upload.php:138
-#: ../../mod/profile_photo.php:301
-msgid "Image upload failed."
+#: ../../mod/profile_photo.php:118
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
 msgstr ""
 
-#: ../../mod/photos.php:928
-msgid "No photos selected"
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
 msgstr ""
 
-#: ../../mod/photos.php:1029 ../../mod/videos.php:226
-msgid "Access to this item is restricted."
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
 msgstr ""
 
-#: ../../mod/photos.php:1092
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
 msgstr ""
 
-#: ../../mod/photos.php:1127
-msgid "Upload Photos"
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
 msgstr ""
 
-#: ../../mod/photos.php:1131 ../../mod/photos.php:1199
-msgid "New album name: "
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
 msgstr ""
 
-#: ../../mod/photos.php:1132
-msgid "or existing album name: "
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
 msgstr ""
 
-#: ../../mod/photos.php:1133
-msgid "Do not show a status post for this upload"
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
 msgstr ""
 
-#: ../../mod/photos.php:1135 ../../mod/photos.php:1506
-msgid "Permissions"
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
 msgstr ""
 
-#: ../../mod/photos.php:1146
-msgid "Private Photo"
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
 msgstr ""
 
-#: ../../mod/photos.php:1147
-msgid "Public Photo"
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
 msgstr ""
 
-#: ../../mod/photos.php:1214
-msgid "Edit Album"
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
 msgstr ""
 
-#: ../../mod/photos.php:1220
-msgid "Show Newest First"
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
 msgstr ""
 
-#: ../../mod/photos.php:1222
-msgid "Show Oldest First"
+#: ../../mod/install.php:127
+msgid "Could not create table."
 msgstr ""
 
-#: ../../mod/photos.php:1255 ../../mod/photos.php:1793
-msgid "View Photo"
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
 msgstr ""
 
-#: ../../mod/photos.php:1290
-msgid "Permission denied. Access to this item may be restricted."
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
 msgstr ""
 
-#: ../../mod/photos.php:1292
-msgid "Photo not available"
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:521
+msgid "Please see the file \"INSTALL.txt\"."
 msgstr ""
 
-#: ../../mod/photos.php:1348
-msgid "View photo"
+#: ../../mod/install.php:203
+msgid "System check"
 msgstr ""
 
-#: ../../mod/photos.php:1348
-msgid "Edit photo"
+#: ../../mod/install.php:208
+msgid "Check again"
 msgstr ""
 
-#: ../../mod/photos.php:1349
-msgid "Use as profile photo"
+#: ../../mod/install.php:227
+msgid "Database connection"
 msgstr ""
 
-#: ../../mod/photos.php:1374
-msgid "View Full Size"
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
 msgstr ""
 
-#: ../../mod/photos.php:1453
-msgid "Tags: "
+#: ../../mod/install.php:229
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
 msgstr ""
 
-#: ../../mod/photos.php:1456
-msgid "[Remove any tag]"
+#: ../../mod/install.php:230
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
 msgstr ""
 
-#: ../../mod/photos.php:1496
-msgid "Rotate CW (right)"
+#: ../../mod/install.php:234
+msgid "Database Server Name"
 msgstr ""
 
-#: ../../mod/photos.php:1497
-msgid "Rotate CCW (left)"
+#: ../../mod/install.php:235
+msgid "Database Login Name"
 msgstr ""
 
-#: ../../mod/photos.php:1499
-msgid "New album name"
+#: ../../mod/install.php:236
+msgid "Database Login Password"
 msgstr ""
 
-#: ../../mod/photos.php:1502
-msgid "Caption"
+#: ../../mod/install.php:237
+msgid "Database Name"
 msgstr ""
 
-#: ../../mod/photos.php:1504
-msgid "Add a Tag"
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
 msgstr ""
 
-#: ../../mod/photos.php:1508
-msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+#: ../../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 ""
 
-#: ../../mod/photos.php:1517
-msgid "Private photo"
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
 msgstr ""
 
-#: ../../mod/photos.php:1518
-msgid "Public photo"
+#: ../../mod/install.php:267
+msgid "Site settings"
 msgstr ""
 
-#: ../../mod/photos.php:1540 ../../include/conversation.php:1083
-msgid "Share"
+#: ../../mod/install.php:321
+msgid "Could not find a command line version of PHP in the web server PATH."
 msgstr ""
 
-#: ../../mod/photos.php:1799 ../../mod/videos.php:308
-msgid "View Album"
+#: ../../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 ""
 
-#: ../../mod/photos.php:1808
-msgid "Recent Photos"
+#: ../../mod/install.php:326
+msgid "PHP executable path"
 msgstr ""
 
-#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+#: ../../mod/install.php:326
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
 msgstr ""
 
-#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75
-msgid "Or - did you try to upload an empty file?"
+#: ../../mod/install.php:331
+msgid "Command line PHP"
 msgstr ""
 
-#: ../../mod/wall_attach.php:81 ../../wall_attach.php:81
-#, php-format
-msgid "File exceeds size limit of %d"
+#: ../../mod/install.php:340
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
 msgstr ""
 
-#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
-#: ../../wall_attach.php:122 ../../wall_attach.php:133
-msgid "File upload failed."
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
 msgstr ""
 
-#: ../../mod/videos.php:125
-msgid "No videos selected"
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
 msgstr ""
 
-#: ../../mod/videos.php:301 ../../include/text.php:1387
-msgid "View Video"
+#: ../../mod/install.php:354
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
 msgstr ""
 
-#: ../../mod/videos.php:317
-msgid "Recent Videos"
+#: ../../mod/install.php:355
+msgid "This is required for message delivery to work."
 msgstr ""
 
-#: ../../mod/videos.php:319
-msgid "Upload New Videos"
+#: ../../mod/install.php:357
+msgid "PHP register_argc_argv"
 msgstr ""
 
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
+#: ../../mod/install.php:378
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
 msgstr ""
 
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
+#: ../../mod/install.php:379
+msgid ""
+"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
+"installation.php\"."
 msgstr ""
 
-#: ../../mod/poke.php:194
-msgid "Recipient"
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
 msgstr ""
 
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
 msgstr ""
 
-#: ../../mod/poke.php:198
-msgid "Make this post private"
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
 msgstr ""
 
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
 msgstr ""
 
-#: ../../mod/uexport.php:77
-msgid "Export account"
+#: ../../mod/install.php:391
+msgid "mysqli PHP module"
 msgstr ""
 
-#: ../../mod/uexport.php:77
-msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
+#: ../../mod/install.php:392
+msgid "mb_string PHP module"
 msgstr ""
 
-#: ../../mod/uexport.php:78
-msgid "Export all"
+#: ../../mod/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
 msgstr ""
 
-#: ../../mod/uexport.php:78
+#: ../../mod/install.php:397
 msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
+"Error: Apache webserver mod-rewrite module is required but not installed."
 msgstr ""
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
+msgstr ""
+
+#: ../../mod/install.php:409
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
 msgstr ""
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
 msgstr ""
 
-#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
-#, php-format
-msgid "Image exceeds size limit of %d"
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
 msgstr ""
 
-#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
-#: ../../mod/wall_upload.php:151 ../../mod/item.php:455
-#: ../../include/message.php:144
-msgid "Wall Photos"
+#: ../../mod/install.php:421
+msgid "Error: mb_string PHP module required but not installed."
 msgstr ""
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
+#: ../../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 ""
 
-#: ../../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."
+#: ../../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 ""
 
-#: ../../mod/profile_photo.php:118
+#: ../../mod/install.php:440
 msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
+"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 ""
 
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
+#: ../../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 ""
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
+#: ../../mod/install.php:444
+msgid ".htconfig.php is writable"
 msgstr ""
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
+#: ../../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 ""
 
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
+#: ../../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 ""
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
+#: ../../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 ""
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
+#: ../../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 ""
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
 msgstr ""
 
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
+#: ../../mod/install.php:472
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
 msgstr ""
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
+#: ../../mod/install.php:474
+msgid "Url rewrite is working"
 msgstr ""
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
+#: ../../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 ""
 
-#: ../../mod/apps.php:11
-msgid "Applications"
+#: ../../mod/install.php:508
+msgid "Errors encountered creating database tables."
 msgstr ""
 
-#: ../../mod/apps.php:14
-msgid "No installed applications."
+#: ../../mod/install.php:519
+msgid "<h1>What next</h1>"
 msgstr ""
 
-#: ../../mod/navigation.php:20 ../../include/nav.php:34
-msgid "Nothing new here"
+#: ../../mod/install.php:520
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
 msgstr ""
 
-#: ../../mod/navigation.php:24 ../../include/nav.php:38
-msgid "Clear notifications"
+#: ../../mod/group.php:29
+msgid "Group created."
 msgstr ""
 
-#: ../../mod/match.php:12
-msgid "Profile Match"
+#: ../../mod/group.php:35
+msgid "Could not create group."
 msgstr ""
 
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
 msgstr ""
 
-#: ../../mod/match.php:57
-msgid "is interested in:"
+#: ../../mod/group.php:60
+msgid "Group name changed."
 msgstr ""
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
+#: ../../mod/group.php:87
+msgid "Save Group"
 msgstr ""
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
 msgstr ""
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
 msgstr ""
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133
-msgid "Remove"
+#: ../../mod/group.php:113
+msgid "Group removed."
 msgstr ""
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
 msgstr ""
 
-#: ../../mod/events.php:291
-msgid "l, F j"
+#: ../../mod/group.php:179
+msgid "Group Editor"
 msgstr ""
 
-#: ../../mod/events.php:313
-msgid "Edit event"
+#: ../../mod/group.php:192
+msgid "Members"
 msgstr ""
 
-#: ../../mod/events.php:335 ../../include/text.php:1620
-#: ../../include/text.php:1631
-msgid "link to source"
+#: ../../mod/content.php:119 ../../mod/network.php:514
+msgid "No such group"
 msgstr ""
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
+#: ../../mod/content.php:130 ../../mod/network.php:531
+msgid "Group is empty"
 msgstr ""
 
-#: ../../mod/events.php:372
-msgid "Previous"
+#: ../../mod/content.php:134 ../../mod/network.php:538
+msgid "Group: "
 msgstr ""
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
+#: ../../mod/content.php:496 ../../include/conversation.php:688
+msgid "View in context"
 msgstr ""
 
-#: ../../mod/events.php:456
-msgid "Event details"
+#: ../../mod/regmod.php:63
+msgid "Account approved."
 msgstr ""
 
-#: ../../mod/events.php:457
+#: ../../mod/regmod.php:100
 #, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr ""
-
-#: ../../mod/events.php:459
-msgid "Event Starts:"
+msgid "Registration revoked for %s"
 msgstr ""
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
+#: ../../mod/regmod.php:112
+msgid "Please login."
 msgstr ""
 
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
+#: ../../mod/match.php:12
+msgid "Profile Match"
 msgstr ""
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
 msgstr ""
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
+#: ../../mod/match.php:57
+msgid "is interested in:"
 msgstr ""
 
-#: ../../mod/events.php:469
-msgid "Description:"
+#: ../../mod/item.php:110
+msgid "Unable to locate original post."
 msgstr ""
 
-#: ../../mod/events.php:473
-msgid "Title:"
+#: ../../mod/item.php:319
+msgid "Empty post discarded."
 msgstr ""
 
-#: ../../mod/events.php:475
-msgid "Share this event"
+#: ../../mod/item.php:891
+msgid "System error. Post not saved."
 msgstr ""
 
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
+#: ../../mod/item.php:917
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social network."
 msgstr ""
 
-#: ../../mod/delegate.php:124 ../../include/nav.php:167
-msgid "Delegate Page Management"
+#: ../../mod/item.php:919
+#, php-format
+msgid "You may visit them online at %s"
 msgstr ""
 
-#: ../../mod/delegate.php:126
+#: ../../mod/item.php:920
 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."
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
 msgstr ""
 
-#: ../../mod/delegate.php:127
-msgid "Existing Page Managers"
+#: ../../mod/item.php:924
+#, php-format
+msgid "%s posted an update."
 msgstr ""
 
-#: ../../mod/delegate.php:129
-msgid "Existing Page Delegates"
+#: ../../mod/mood.php:62 ../../include/conversation.php:227
+#, php-format
+msgid "%1$s is currently %2$s"
 msgstr ""
 
-#: ../../mod/delegate.php:131
-msgid "Potential Delegates"
+#: ../../mod/mood.php:133
+msgid "Mood"
 msgstr ""
 
-#: ../../mod/delegate.php:134
-msgid "Add"
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
 msgstr ""
 
-#: ../../mod/delegate.php:135
-msgid "No entries."
+#: ../../mod/network.php:136
+msgid "Search Results For:"
 msgstr ""
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
+#: ../../mod/network.php:189 ../../include/group.php:275
+msgid "add"
 msgstr ""
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
+#: ../../mod/network.php:350
+msgid "Commented Order"
 msgstr ""
 
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
+#: ../../mod/network.php:353
+msgid "Sort by Comment Date"
 msgstr ""
 
-#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
-msgid "Remove My Account"
+#: ../../mod/network.php:356
+msgid "Posted Order"
 msgstr ""
 
-#: ../../mod/removeme.php:46
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
+#: ../../mod/network.php:359
+msgid "Sort by Post Date"
 msgstr ""
 
-#: ../../mod/removeme.php:47
-msgid "Please enter your password for verification:"
+#: ../../mod/network.php:368
+msgid "Posts that mention or involve you"
 msgstr ""
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
+#: ../../mod/network.php:374
+msgid "New"
 msgstr ""
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
+#: ../../mod/network.php:377
+msgid "Activity Stream - by date"
 msgstr ""
 
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
+#: ../../mod/network.php:383
+msgid "Shared Links"
 msgstr ""
 
-#: ../../mod/item.php:110
-msgid "Unable to locate original post."
+#: ../../mod/network.php:386
+msgid "Interesting Links"
 msgstr ""
 
-#: ../../mod/item.php:319
-msgid "Empty post discarded."
+#: ../../mod/network.php:392
+msgid "Starred"
 msgstr ""
 
-#: ../../mod/item.php:891
-msgid "System error. Post not saved."
+#: ../../mod/network.php:395
+msgid "Favourite Posts"
 msgstr ""
 
-#: ../../mod/item.php:917
+#: ../../mod/network.php:457
 #, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social network."
+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] ""
+msgstr[1] ""
+
+#: ../../mod/network.php:460
+msgid "Private messages to this group are at risk of public disclosure."
 msgstr ""
 
-#: ../../mod/item.php:919
-#, php-format
-msgid "You may visit them online at %s"
+#: ../../mod/network.php:548
+msgid "Contact: "
 msgstr ""
 
-#: ../../mod/item.php:920
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
+#: ../../mod/network.php:550
+msgid "Private messages to this person are at risk of public disclosure."
 msgstr ""
 
-#: ../../mod/item.php:924
-#, php-format
-msgid "%s posted an update."
+#: ../../mod/network.php:555
+msgid "Invalid contact."
 msgstr ""
 
-#: ../../mod/ping.php:238
-msgid "{0} wants to be your friend"
+#: ../../mod/crepair.php:104
+msgid "Contact settings applied."
 msgstr ""
 
-#: ../../mod/ping.php:243
-msgid "{0} sent you a message"
+#: ../../mod/crepair.php:106
+msgid "Contact update failed."
 msgstr ""
 
-#: ../../mod/ping.php:248
-msgid "{0} requested registration"
+#: ../../mod/crepair.php:137
+msgid "Repair Contact Settings"
 msgstr ""
 
-#: ../../mod/ping.php:254
-#, php-format
-msgid "{0} commented %s's post"
+#: ../../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/ping.php:259
-#, php-format
-msgid "{0} liked %s's post"
+#: ../../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/ping.php:264
-#, php-format
-msgid "{0} disliked %s's post"
+#: ../../mod/crepair.php:146
+msgid "Return to contact editor"
 msgstr ""
 
-#: ../../mod/ping.php:269
-#, php-format
-msgid "{0} is now friends with %s"
+#: ../../mod/crepair.php:151
+msgid "Account Nickname"
 msgstr ""
 
-#: ../../mod/ping.php:274
-msgid "{0} posted"
+#: ../../mod/crepair.php:152
+msgid "@Tagname - overrides Name/Nickname"
 msgstr ""
 
-#: ../../mod/ping.php:279
-#, php-format
-msgid "{0} tagged %s's post with #%s"
+#: ../../mod/crepair.php:153
+msgid "Account URL"
 msgstr ""
 
-#: ../../mod/ping.php:285
-msgid "{0} mentioned you in a post"
+#: ../../mod/crepair.php:154
+msgid "Friend Request URL"
 msgstr ""
 
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
+#: ../../mod/crepair.php:155
+msgid "Friend Confirm URL"
 msgstr ""
 
-#: ../../mod/openid.php:53
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
+#: ../../mod/crepair.php:156
+msgid "Notification Endpoint URL"
 msgstr ""
 
-#: ../../mod/openid.php:93 ../../include/auth.php:112
-#: ../../include/auth.php:175
-msgid "Login failed."
+#: ../../mod/crepair.php:157
+msgid "Poll/Feed URL"
 msgstr ""
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
+#: ../../mod/crepair.php:158
+msgid "New photo from this URL"
 msgstr ""
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
+#: ../../mod/crepair.php:159
+msgid "Remote Self"
 msgstr ""
 
-#: ../../mod/notifications.php:78
-msgid "System"
+#: ../../mod/crepair.php:161
+msgid "Mirror postings from this contact"
 msgstr ""
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:142
-msgid "Network"
+#: ../../mod/crepair.php:161
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
 msgstr ""
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:151
-msgid "Introductions"
+#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
+#: ../../include/nav.php:145
+msgid "Your posts and conversations"
 msgstr ""
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
+#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
+msgid "Your profile page"
 msgstr ""
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
+#: ../../view/theme/diabook/theme.php:125
+msgid "Your contacts"
 msgstr ""
 
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
+#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
+msgid "Your photos"
 msgstr ""
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
+#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79
+msgid "Your events"
 msgstr ""
 
-#: ../../mod/notifications.php:152
-#, php-format
-msgid "suggested by %s"
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
+msgid "Personal notes"
 msgstr ""
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
+msgid "Your personal photos"
 msgstr ""
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
+#: ../../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 ""
 
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
+#: ../../view/theme/diabook/theme.php:391
+#: ../../view/theme/diabook/theme.php:626
+#: ../../view/theme/diabook/config.php:160
+msgid "Community Profiles"
 msgstr ""
 
-#: ../../mod/notifications.php:181
-msgid "yes"
+#: ../../view/theme/diabook/theme.php:412
+#: ../../view/theme/diabook/theme.php:630
+#: ../../view/theme/diabook/config.php:164
+msgid "Last users"
 msgstr ""
 
-#: ../../mod/notifications.php:181
-msgid "no"
+#: ../../view/theme/diabook/theme.php:441
+#: ../../view/theme/diabook/theme.php:632
+#: ../../view/theme/diabook/config.php:166
+msgid "Last likes"
 msgstr ""
 
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
+#: ../../view/theme/diabook/theme.php:463 ../../include/text.php:1953
+#: ../../include/conversation.php:118 ../../include/conversation.php:246
+msgid "event"
 msgstr ""
 
-#: ../../mod/notifications.php:189
-msgid "Friend"
+#: ../../view/theme/diabook/theme.php:486
+#: ../../view/theme/diabook/theme.php:631
+#: ../../view/theme/diabook/config.php:165
+msgid "Last photos"
 msgstr ""
 
-#: ../../mod/notifications.php:190
-msgid "Sharer"
+#: ../../view/theme/diabook/theme.php:523
+#: ../../view/theme/diabook/theme.php:629
+#: ../../view/theme/diabook/config.php:163
+msgid "Find Friends"
 msgstr ""
 
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
+#: ../../view/theme/diabook/theme.php:524
+msgid "Local Directory"
 msgstr ""
 
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
+#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35
+msgid "Similar Interests"
 msgstr ""
 
-#: ../../mod/notifications.php:196
-msgid "New Follower"
+#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37
+msgid "Invite Friends"
 msgstr ""
 
-#: ../../mod/notifications.php:217
-msgid "No introductions."
+#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/theme.php:625
+#: ../../view/theme/diabook/config.php:159
+msgid "Earth Layers"
 msgstr ""
 
-#: ../../mod/notifications.php:220 ../../include/nav.php:152
-msgid "Notifications"
+#: ../../view/theme/diabook/theme.php:584
+msgid "Set zoomfactor for Earth Layers"
 msgstr ""
 
-#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
-#: ../../mod/notifications.php:469
-#, php-format
-msgid "%s liked %s's post"
+#: ../../view/theme/diabook/theme.php:585
+#: ../../view/theme/diabook/config.php:156
+msgid "Set longitude (X) for Earth Layers"
 msgstr ""
 
-#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
-#: ../../mod/notifications.php:478
-#, php-format
-msgid "%s disliked %s's post"
+#: ../../view/theme/diabook/theme.php:586
+#: ../../view/theme/diabook/config.php:157
+msgid "Set latitude (Y) for Earth Layers"
+msgstr ""
+
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:627
+#: ../../view/theme/diabook/config.php:161
+msgid "Help or @NewHere ?"
 msgstr ""
 
-#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
-#: ../../mod/notifications.php:492
-#, php-format
-msgid "%s is now friends with %s"
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:628
+#: ../../view/theme/diabook/config.php:162
+msgid "Connect Services"
 msgstr ""
 
-#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
-#, php-format
-msgid "%s created a new post"
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328
+msgid "don't show"
 msgstr ""
 
-#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
-#: ../../mod/notifications.php:501
-#, php-format
-msgid "%s commented on %s's post"
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327
+msgid "show"
 msgstr ""
 
-#: ../../mod/notifications.php:302
-msgid "No more network notifications."
+#: ../../view/theme/diabook/theme.php:622
+msgid "Show/hide boxes at right-hand column:"
 msgstr ""
 
-#: ../../mod/notifications.php:306
-msgid "Network Notifications"
+#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:49
+#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
+#: ../../view/theme/cleanzero/config.php:82
+msgid "Theme settings"
 msgstr ""
 
-#: ../../mod/notifications.php:427
-msgid "No more personal notifications."
+#: ../../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 ""
 
-#: ../../mod/notifications.php:431
-msgid "Personal Notifications"
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/dispy/config.php:74
+msgid "Set line-height for posts and comments"
 msgstr ""
 
-#: ../../mod/notifications.php:508
-msgid "No more home notifications."
+#: ../../view/theme/diabook/config.php:153
+msgid "Set resolution for middle column"
 msgstr ""
 
-#: ../../mod/notifications.php:512
-msgid "Home Notifications"
+#: ../../view/theme/diabook/config.php:154
+msgid "Set color scheme"
 msgstr ""
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
+#: ../../view/theme/diabook/config.php:155
+msgid "Set zoomfactor for Earth Layer"
 msgstr ""
 
-#: ../../mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
+#: ../../view/theme/vier/config.php:50
+msgid "Set style"
 msgstr ""
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
 msgstr ""
 
-#: ../../mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
 msgstr ""
 
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
 msgstr ""
 
-#: ../../mod/invite.php:93
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] ""
-msgstr[1] ""
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr ""
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
+#: ../../view/theme/quattro/config.php:68
+#: ../../view/theme/cleanzero/config.php:86
+msgid "Color scheme"
 msgstr ""
 
-#: ../../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."
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
 msgstr ""
 
-#: ../../mod/invite.php:122
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
 msgstr ""
 
-#: ../../mod/invite.php:123
-#, php-format
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
 msgstr ""
 
-#: ../../mod/invite.php:126
-msgid ""
-"Our apologies. This system is not currently configured to connect with other "
-"public sites or invite members."
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
 msgstr ""
 
-#: ../../mod/invite.php:132
-msgid "Send invitations"
+#: ../../boot.php:692
+msgid "Delete this item?"
 msgstr ""
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
+#: ../../boot.php:695
+msgid "show fewer"
 msgstr ""
 
-#: ../../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."
+#: ../../boot.php:1023
+#, php-format
+msgid "Update %s failed. See error logs."
 msgstr ""
 
-#: ../../mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
+#: ../../boot.php:1025
+#, php-format
+msgid "Update Error at %s"
 msgstr ""
 
-#: ../../mod/invite.php:137
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
+#: ../../boot.php:1135
+msgid "Create a New Account"
 msgstr ""
 
-#: ../../mod/invite.php:139
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendica.com"
+#: ../../boot.php:1160 ../../include/nav.php:73
+msgid "Logout"
 msgstr ""
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
+#: ../../boot.php:1161 ../../include/nav.php:91
+msgid "Login"
 msgstr ""
 
-#: ../../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"
+#: ../../boot.php:1163
+msgid "Nickname or Email address: "
 msgstr ""
 
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
+#: ../../boot.php:1164
+msgid "Password: "
 msgstr ""
 
-#: ../../mod/home.php:34
-#, php-format
-msgid "Welcome to %s"
+#: ../../boot.php:1165
+msgid "Remember me"
 msgstr ""
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
+#: ../../boot.php:1168
+msgid "Or login using OpenID: "
 msgstr ""
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
+#: ../../boot.php:1174
+msgid "Forgot your password?"
 msgstr ""
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
+#: ../../boot.php:1177
+msgid "Website Terms of Service"
 msgstr ""
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
+#: ../../boot.php:1178
+msgid "terms of service"
 msgstr ""
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
+#: ../../boot.php:1180
+msgid "Website Privacy Policy"
 msgstr ""
 
-#: ../../include/contact_widgets.php:23
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] ""
-msgstr[1] ""
+#: ../../boot.php:1181
+msgid "privacy policy"
+msgstr ""
 
-#: ../../include/contact_widgets.php:29
-msgid "Find People"
+#: ../../boot.php:1314
+msgid "Requested account is not available."
 msgstr ""
 
-#: ../../include/contact_widgets.php:30
-msgid "Enter name or interest"
+#: ../../boot.php:1393 ../../boot.php:1497
+msgid "Edit profile"
 msgstr ""
 
-#: ../../include/contact_widgets.php:31
-msgid "Connect/Follow"
+#: ../../boot.php:1459
+msgid "Message"
 msgstr ""
 
-#: ../../include/contact_widgets.php:32
-msgid "Examples: Robert Morgenstein, Fishing"
+#: ../../boot.php:1467 ../../include/nav.php:171
+msgid "Profiles"
 msgstr ""
 
-#: ../../include/contact_widgets.php:36
-msgid "Random Profile"
+#: ../../boot.php:1467
+msgid "Manage/edit profiles"
 msgstr ""
 
-#: ../../include/contact_widgets.php:70
-msgid "Networks"
+#: ../../boot.php:1596 ../../boot.php:1682
+msgid "g A l F d"
 msgstr ""
 
-#: ../../include/contact_widgets.php:73
-msgid "All Networks"
+#: ../../boot.php:1597 ../../boot.php:1683
+msgid "F d"
 msgstr ""
 
-#: ../../include/contact_widgets.php:103 ../../include/features.php:60
-msgid "Saved Folders"
+#: ../../boot.php:1642 ../../boot.php:1723
+msgid "[today]"
 msgstr ""
 
-#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
-msgid "Everything"
+#: ../../boot.php:1654
+msgid "Birthday Reminders"
 msgstr ""
 
-#: ../../include/contact_widgets.php:135
-msgid "Categories"
+#: ../../boot.php:1655
+msgid "Birthdays this week:"
 msgstr ""
 
-#: ../../include/plugin.php:454 ../../include/plugin.php:456
-msgid "Click here to upgrade."
+#: ../../boot.php:1716
+msgid "[No description]"
 msgstr ""
 
-#: ../../include/plugin.php:462
-msgid "This action exceeds the limits set by your subscription plan."
+#: ../../boot.php:1734
+msgid "Event Reminders"
 msgstr ""
 
-#: ../../include/plugin.php:467
-msgid "This action is not available under your subscription plan."
+#: ../../boot.php:1735
+msgid "Events this week:"
 msgstr ""
 
-#: ../../include/api.php:263 ../../include/api.php:274
-#: ../../include/api.php:375
-msgid "User not found."
+#: ../../boot.php:1972 ../../include/nav.php:76
+msgid "Status"
 msgstr ""
 
-#: ../../include/api.php:1123
-msgid "There is no status with this id."
+#: ../../boot.php:1975
+msgid "Status Messages and Posts"
 msgstr ""
 
-#: ../../include/api.php:1193
-msgid "There is no conversation with this id."
+#: ../../boot.php:1982
+msgid "Profile Details"
 msgstr ""
 
-#: ../../include/network.php:886
-msgid "view full size"
+#: ../../boot.php:1993 ../../boot.php:1996
+msgid "Videos"
 msgstr ""
 
-#: ../../include/event.php:20 ../../include/bb2diaspora.php:139
-msgid "Starts:"
+#: ../../boot.php:2006
+msgid "Events and Calendar"
 msgstr ""
 
-#: ../../include/event.php:30 ../../include/bb2diaspora.php:147
-msgid "Finishes:"
+#: ../../boot.php:2013
+msgid "Only You Can See This"
 msgstr ""
 
-#: ../../include/notifier.php:774 ../../include/delivery.php:456
-msgid "(no subject)"
+#: ../../include/features.php:23
+msgid "General Features"
 msgstr ""
 
-#: ../../include/notifier.php:784 ../../include/enotify.php:28
-#: ../../include/delivery.php:467
-msgid "noreply"
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
 msgstr ""
 
-#: ../../include/user.php:39
-msgid "An invitation is required."
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
 msgstr ""
 
-#: ../../include/user.php:44
-msgid "Invitation could not be verified."
+#: ../../include/features.php:30
+msgid "Post Composition Features"
 msgstr ""
 
-#: ../../include/user.php:52
-msgid "Invalid OpenID url"
+#: ../../include/features.php:31
+msgid "Richtext Editor"
 msgstr ""
 
-#: ../../include/user.php:66 ../../include/auth.php:128
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
 msgstr ""
 
-#: ../../include/user.php:66 ../../include/auth.php:128
-msgid "The error message was:"
+#: ../../include/features.php:32
+msgid "Post Preview"
 msgstr ""
 
-#: ../../include/user.php:73
-msgid "Please enter the required information."
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
 msgstr ""
 
-#: ../../include/user.php:87
-msgid "Please use a shorter name."
+#: ../../include/features.php:33
+msgid "Auto-mention Forums"
 msgstr ""
 
-#: ../../include/user.php:89
-msgid "Name too short."
+#: ../../include/features.php:33
+msgid ""
+"Add/remove mention when a fourm page is selected/deselected in ACL window."
 msgstr ""
 
-#: ../../include/user.php:104
-msgid "That doesn't appear to be your full (First Last) name."
+#: ../../include/features.php:38
+msgid "Network Sidebar Widgets"
 msgstr ""
 
-#: ../../include/user.php:109
-msgid "Your email domain is not among those allowed on this site."
+#: ../../include/features.php:39
+msgid "Search by Date"
 msgstr ""
 
-#: ../../include/user.php:112
-msgid "Not a valid email address."
+#: ../../include/features.php:39
+msgid "Ability to select posts by date ranges"
 msgstr ""
 
-#: ../../include/user.php:125
-msgid "Cannot use that email."
+#: ../../include/features.php:40
+msgid "Group Filter"
 msgstr ""
 
-#: ../../include/user.php:131
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected group"
 msgstr ""
 
-#: ../../include/user.php:137 ../../include/user.php:235
-msgid "Nickname is already registered. Please choose another."
+#: ../../include/features.php:41
+msgid "Network Filter"
 msgstr ""
 
-#: ../../include/user.php:147
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
+#: ../../include/features.php:41
+msgid "Enable widget to display Network posts only from selected network"
 msgstr ""
 
-#: ../../include/user.php:163
-msgid "SERIOUS ERROR: Generation of security keys failed."
+#: ../../include/features.php:42
+msgid "Save search terms for re-use"
 msgstr ""
 
-#: ../../include/user.php:221
-msgid "An error occurred during registration. Please try again."
+#: ../../include/features.php:47
+msgid "Network Tabs"
 msgstr ""
 
-#: ../../include/user.php:256
-msgid "An error occurred creating your default profile. Please try again."
+#: ../../include/features.php:48
+msgid "Network Personal Tab"
 msgstr ""
 
-#: ../../include/user.php:288 ../../include/user.php:292
-#: ../../include/profile_selectors.php:42
-msgid "Friends"
+#: ../../include/features.php:48
+msgid "Enable tab to display only Network posts that you've interacted on"
 msgstr ""
 
-#: ../../include/conversation.php:207
-#, php-format
-msgid "%1$s poked %2$s"
+#: ../../include/features.php:49
+msgid "Network New Tab"
 msgstr ""
 
-#: ../../include/conversation.php:211 ../../include/text.php:990
-msgid "poked"
+#: ../../include/features.php:49
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
 msgstr ""
 
-#: ../../include/conversation.php:291
-msgid "post/item"
+#: ../../include/features.php:50
+msgid "Network Shared Links Tab"
 msgstr ""
 
-#: ../../include/conversation.php:292
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
+#: ../../include/features.php:50
+msgid "Enable tab to display only Network posts with links in them"
 msgstr ""
 
-#: ../../include/conversation.php:770
-msgid "remove"
+#: ../../include/features.php:55
+msgid "Post/Comment Tools"
 msgstr ""
 
-#: ../../include/conversation.php:774
-msgid "Delete Selected Items"
+#: ../../include/features.php:56
+msgid "Multiple Deletion"
 msgstr ""
 
-#: ../../include/conversation.php:873
-msgid "Follow Thread"
+#: ../../include/features.php:56
+msgid "Select and delete multiple posts/comments at once"
 msgstr ""
 
-#: ../../include/conversation.php:874 ../../include/Contact.php:229
-msgid "View Status"
+#: ../../include/features.php:57
+msgid "Edit Sent Posts"
 msgstr ""
 
-#: ../../include/conversation.php:875 ../../include/Contact.php:230
-msgid "View Profile"
+#: ../../include/features.php:57
+msgid "Edit and correct posts and comments after sending"
 msgstr ""
 
-#: ../../include/conversation.php:876 ../../include/Contact.php:231
-msgid "View Photos"
+#: ../../include/features.php:58
+msgid "Tagging"
 msgstr ""
 
-#: ../../include/conversation.php:877 ../../include/Contact.php:232
-#: ../../include/Contact.php:255
-msgid "Network Posts"
+#: ../../include/features.php:58
+msgid "Ability to tag existing posts"
 msgstr ""
 
-#: ../../include/conversation.php:878 ../../include/Contact.php:233
-#: ../../include/Contact.php:255
-msgid "Edit Contact"
+#: ../../include/features.php:59
+msgid "Post Categories"
 msgstr ""
 
-#: ../../include/conversation.php:879 ../../include/Contact.php:235
-#: ../../include/Contact.php:255
-msgid "Send PM"
+#: ../../include/features.php:59
+msgid "Add categories to your posts"
 msgstr ""
 
-#: ../../include/conversation.php:880 ../../include/Contact.php:228
-msgid "Poke"
+#: ../../include/features.php:60 ../../include/contact_widgets.php:103
+msgid "Saved Folders"
 msgstr ""
 
-#: ../../include/conversation.php:942
-#, php-format
-msgid "%s likes this."
+#: ../../include/features.php:60
+msgid "Ability to file posts under folders"
 msgstr ""
 
-#: ../../include/conversation.php:942
-#, php-format
-msgid "%s doesn't like this."
+#: ../../include/features.php:61
+msgid "Dislike Posts"
 msgstr ""
 
-#: ../../include/conversation.php:947
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
+#: ../../include/features.php:61
+msgid "Ability to dislike posts/comments"
 msgstr ""
 
-#: ../../include/conversation.php:950
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
+#: ../../include/features.php:62
+msgid "Star Posts"
 msgstr ""
 
-#: ../../include/conversation.php:964
-msgid "and"
+#: ../../include/features.php:62
+msgid "Ability to mark special posts with a star indicator"
 msgstr ""
 
-#: ../../include/conversation.php:970
-#, php-format
-msgid ", and %d other people"
+#: ../../include/auth.php:38
+msgid "Logged out."
 msgstr ""
 
-#: ../../include/conversation.php:972
-#, php-format
-msgid "%s like this."
+#: ../../include/auth.php:128 ../../include/user.php:66
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
 msgstr ""
 
-#: ../../include/conversation.php:972
-#, php-format
-msgid "%s don't like this."
+#: ../../include/auth.php:128 ../../include/user.php:66
+msgid "The error message was:"
 msgstr ""
 
-#: ../../include/conversation.php:999 ../../include/conversation.php:1017
-msgid "Visible to <strong>everybody</strong>"
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:139
+msgid "Starts:"
 msgstr ""
 
-#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
-msgid "Please enter a video link/URL:"
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:147
+msgid "Finishes:"
 msgstr ""
 
-#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
-msgid "Please enter an audio link/URL:"
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
 msgstr ""
 
-#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
-msgid "Tag term:"
+#: ../../include/profile_advanced.php:23
+msgid "j F"
 msgstr ""
 
-#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
-msgid "Where are you right now?"
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
 msgstr ""
 
-#: ../../include/conversation.php:1006
-msgid "Delete item(s)?"
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
 msgstr ""
 
-#: ../../include/conversation.php:1048
-msgid "Post to Email"
+#: ../../include/profile_advanced.php:43
+#, php-format
+msgid "for %1$d %2$s"
 msgstr ""
 
-#: ../../include/conversation.php:1104
-msgid "permissions"
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
 msgstr ""
 
-#: ../../include/conversation.php:1128
-msgid "Post to Groups"
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
 msgstr ""
 
-#: ../../include/conversation.php:1129
-msgid "Post to Contacts"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
 msgstr ""
 
-#: ../../include/conversation.php:1130
-msgid "Private post"
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
 msgstr ""
 
-#: ../../include/auth.php:38
-msgid "Logged out."
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
 msgstr ""
 
-#: ../../include/uimport.php:94
-msgid "Error decoding account file"
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
 msgstr ""
 
-#: ../../include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
 msgstr ""
 
-#: ../../include/uimport.php:116 ../../include/uimport.php:127
-msgid "Error! Cannot check nickname"
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
 msgstr ""
 
-#: ../../include/uimport.php:120 ../../include/uimport.php:131
-#, php-format
-msgid "User '%s' already exists on this server!"
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
 msgstr ""
 
-#: ../../include/uimport.php:153
-msgid "User creation error"
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
 msgstr ""
 
-#: ../../include/uimport.php:171
-msgid "User profile creation error"
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
 msgstr ""
 
-#: ../../include/uimport.php:220
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] ""
-msgstr[1] ""
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr ""
 
-#: ../../include/uimport.php:290
-msgid "Done. You can now login with your username and password"
+#: ../../include/Scrape.php:584
+msgid " on Last.fm"
 msgstr ""
 
-#: ../../include/text.php:304
+#: ../../include/text.php:296
 msgid "newer"
 msgstr ""
 
-#: ../../include/text.php:306
+#: ../../include/text.php:298
 msgid "older"
 msgstr ""
 
-#: ../../include/text.php:311
+#: ../../include/text.php:303
 msgid "prev"
 msgstr ""
 
-#: ../../include/text.php:313
+#: ../../include/text.php:305
 msgid "first"
 msgstr ""
 
-#: ../../include/text.php:345
+#: ../../include/text.php:337
 msgid "last"
 msgstr ""
 
-#: ../../include/text.php:348
+#: ../../include/text.php:340
 msgid "next"
 msgstr ""
 
-#: ../../include/text.php:840
+#: ../../include/text.php:853
 msgid "No contacts"
 msgstr ""
 
-#: ../../include/text.php:849
+#: ../../include/text.php:862
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
 msgstr[0] ""
 msgstr[1] ""
 
-#: ../../include/text.php:990
+#: ../../include/text.php:1003
 msgid "poke"
 msgstr ""
 
-#: ../../include/text.php:991
+#: ../../include/text.php:1003 ../../include/conversation.php:211
+msgid "poked"
+msgstr ""
+
+#: ../../include/text.php:1004
 msgid "ping"
 msgstr ""
 
-#: ../../include/text.php:991
+#: ../../include/text.php:1004
 msgid "pinged"
 msgstr ""
 
-#: ../../include/text.php:992
+#: ../../include/text.php:1005
 msgid "prod"
 msgstr ""
 
-#: ../../include/text.php:992
+#: ../../include/text.php:1005
 msgid "prodded"
 msgstr ""
 
-#: ../../include/text.php:993
+#: ../../include/text.php:1006
 msgid "slap"
 msgstr ""
 
-#: ../../include/text.php:993
+#: ../../include/text.php:1006
 msgid "slapped"
 msgstr ""
 
-#: ../../include/text.php:994
+#: ../../include/text.php:1007
 msgid "finger"
 msgstr ""
 
-#: ../../include/text.php:994
+#: ../../include/text.php:1007
 msgid "fingered"
 msgstr ""
 
-#: ../../include/text.php:995
+#: ../../include/text.php:1008
 msgid "rebuff"
 msgstr ""
 
-#: ../../include/text.php:995
+#: ../../include/text.php:1008
 msgid "rebuffed"
 msgstr ""
 
-#: ../../include/text.php:1009
+#: ../../include/text.php:1022
 msgid "happy"
 msgstr ""
 
-#: ../../include/text.php:1010
+#: ../../include/text.php:1023
 msgid "sad"
 msgstr ""
 
-#: ../../include/text.php:1011
+#: ../../include/text.php:1024
 msgid "mellow"
 msgstr ""
 
-#: ../../include/text.php:1012
+#: ../../include/text.php:1025
 msgid "tired"
 msgstr ""
 
-#: ../../include/text.php:1013
+#: ../../include/text.php:1026
 msgid "perky"
 msgstr ""
 
-#: ../../include/text.php:1014
+#: ../../include/text.php:1027
 msgid "angry"
 msgstr ""
 
-#: ../../include/text.php:1015
+#: ../../include/text.php:1028
 msgid "stupified"
 msgstr ""
 
-#: ../../include/text.php:1016
+#: ../../include/text.php:1029
 msgid "puzzled"
 msgstr ""
 
-#: ../../include/text.php:1017
+#: ../../include/text.php:1030
 msgid "interested"
 msgstr ""
 
-#: ../../include/text.php:1018
+#: ../../include/text.php:1031
 msgid "bitter"
 msgstr ""
 
-#: ../../include/text.php:1019
+#: ../../include/text.php:1032
 msgid "cheerful"
 msgstr ""
 
-#: ../../include/text.php:1020
+#: ../../include/text.php:1033
 msgid "alive"
 msgstr ""
 
-#: ../../include/text.php:1021
+#: ../../include/text.php:1034
 msgid "annoyed"
 msgstr ""
 
-#: ../../include/text.php:1022
+#: ../../include/text.php:1035
 msgid "anxious"
 msgstr ""
 
-#: ../../include/text.php:1023
+#: ../../include/text.php:1036
 msgid "cranky"
 msgstr ""
 
-#: ../../include/text.php:1024
+#: ../../include/text.php:1037
 msgid "disturbed"
 msgstr ""
 
-#: ../../include/text.php:1025
+#: ../../include/text.php:1038
 msgid "frustrated"
 msgstr ""
 
-#: ../../include/text.php:1026
+#: ../../include/text.php:1039
 msgid "motivated"
 msgstr ""
 
-#: ../../include/text.php:1027
+#: ../../include/text.php:1040
 msgid "relaxed"
 msgstr ""
 
-#: ../../include/text.php:1028
+#: ../../include/text.php:1041
 msgid "surprised"
 msgstr ""
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1209
 msgid "Monday"
 msgstr ""
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1209
 msgid "Tuesday"
 msgstr ""
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1209
 msgid "Wednesday"
 msgstr ""
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1209
 msgid "Thursday"
 msgstr ""
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1209
 msgid "Friday"
 msgstr ""
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1209
 msgid "Saturday"
 msgstr ""
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1209
 msgid "Sunday"
 msgstr ""
 
-#: ../../include/text.php:1200
+#: ../../include/text.php:1213
 msgid "January"
 msgstr ""
 
-#: ../../include/text.php:1200
+#: ../../include/text.php:1213
 msgid "February"
 msgstr ""
 
-#: ../../include/text.php:1200
+#: ../../include/text.php:1213
 msgid "March"
 msgstr ""
 
-#: ../../include/text.php:1200
+#: ../../include/text.php:1213
 msgid "April"
 msgstr ""
 
-#: ../../include/text.php:1200
+#: ../../include/text.php:1213
 msgid "May"
 msgstr ""
 
-#: ../../include/text.php:1200
+#: ../../include/text.php:1213
 msgid "June"
 msgstr ""
 
-#: ../../include/text.php:1200
+#: ../../include/text.php:1213
 msgid "July"
 msgstr ""
 
-#: ../../include/text.php:1200
+#: ../../include/text.php:1213
 msgid "August"
 msgstr ""
 
-#: ../../include/text.php:1200
+#: ../../include/text.php:1213
 msgid "September"
 msgstr ""
 
-#: ../../include/text.php:1200
+#: ../../include/text.php:1213
 msgid "October"
 msgstr ""
 
-#: ../../include/text.php:1200
+#: ../../include/text.php:1213
 msgid "November"
 msgstr ""
 
-#: ../../include/text.php:1200
+#: ../../include/text.php:1213
 msgid "December"
 msgstr ""
 
-#: ../../include/text.php:1419
+#: ../../include/text.php:1432
 msgid "bytes"
 msgstr ""
 
-#: ../../include/text.php:1443 ../../include/text.php:1455
+#: ../../include/text.php:1456 ../../include/text.php:1468
 msgid "Click to open/close"
 msgstr ""
 
-#: ../../include/text.php:1688
+#: ../../include/text.php:1689 ../../include/user.php:246
+msgid "default"
+msgstr ""
+
+#: ../../include/text.php:1701
 msgid "Select an alternate language"
 msgstr ""
 
-#: ../../include/text.php:1944
+#: ../../include/text.php:1957
 msgid "activity"
 msgstr ""
 
-#: ../../include/text.php:1947
+#: ../../include/text.php:1960
 msgid "post"
 msgstr ""
 
-#: ../../include/text.php:2115
+#: ../../include/text.php:2128
 msgid "Item filed"
 msgstr ""
 
-#: ../../include/enotify.php:16
-msgid "Friendica Notification"
+#: ../../include/api.php:263 ../../include/api.php:274
+#: ../../include/api.php:375
+msgid "User not found."
 msgstr ""
 
-#: ../../include/enotify.php:19
-msgid "Thank You,"
+#: ../../include/api.php:1123
+msgid "There is no status with this id."
 msgstr ""
 
-#: ../../include/enotify.php:21
-#, php-format
-msgid "%s Administrator"
+#: ../../include/api.php:1193
+msgid "There is no conversation with this id."
 msgstr ""
 
-#: ../../include/enotify.php:40
+#: ../../include/dba.php:51 ../../include/dba_pdo.php:72
 #, php-format
-msgid "%s <!item_type!>"
+msgid "Cannot locate DNS info for database server '%s'"
 msgstr ""
 
-#: ../../include/enotify.php:44
+#: ../../include/items.php:1981 ../../include/datetime.php:472
 #, php-format
-msgid "[Friendica:Notify] New mail received at %s"
+msgid "%s's birthday"
 msgstr ""
 
-#: ../../include/enotify.php:46
+#: ../../include/items.php:1982 ../../include/datetime.php:473
 #, php-format
-msgid "%1$s sent you a new private message at %2$s."
+msgid "Happy Birthday %s"
 msgstr ""
 
-#: ../../include/enotify.php:47
-#, php-format
-msgid "%1$s sent you %2$s."
+#: ../../include/items.php:3710
+msgid "A new person is sharing with you at "
 msgstr ""
 
-#: ../../include/enotify.php:47
-msgid "a private message"
+#: ../../include/items.php:3710
+msgid "You have a new follower at "
 msgstr ""
 
-#: ../../include/enotify.php:48
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
+#: ../../include/items.php:4233
+msgid "Do you really want to delete this item?"
 msgstr ""
 
-#: ../../include/enotify.php:91
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+#: ../../include/items.php:4460
+msgid "Archives"
 msgstr ""
 
-#: ../../include/enotify.php:98
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+#: ../../include/delivery.php:456 ../../include/notifier.php:774
+msgid "(no subject)"
 msgstr ""
 
-#: ../../include/enotify.php:106
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+#: ../../include/delivery.php:467 ../../include/notifier.php:784
+#: ../../include/enotify.php:28
+msgid "noreply"
 msgstr ""
 
-#: ../../include/enotify.php:116
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+#: ../../include/diaspora.php:703
+msgid "Sharing notification from Diaspora network"
 msgstr ""
 
-#: ../../include/enotify.php:117
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
+#: ../../include/diaspora.php:2299
+msgid "Attachments:"
 msgstr ""
 
-#: ../../include/enotify.php:120 ../../include/enotify.php:135
-#: ../../include/enotify.php:148 ../../include/enotify.php:161
-#: ../../include/enotify.php:179 ../../include/enotify.php:192
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
 msgstr ""
 
-#: ../../include/enotify.php:127
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
+#: ../../include/follow.php:59
+msgid ""
+"This site is not configured to allow communications with other networks."
 msgstr ""
 
-#: ../../include/enotify.php:129
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
 msgstr ""
 
-#: ../../include/enotify.php:131
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
 msgstr ""
 
-#: ../../include/enotify.php:142
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
 msgstr ""
 
-#: ../../include/enotify.php:143
-#, php-format
-msgid "%1$s tagged you at %2$s"
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
 msgstr ""
 
-#: ../../include/enotify.php:144
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
+#: ../../include/follow.php:86
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
 msgstr ""
 
-#: ../../include/enotify.php:155
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
 msgstr ""
 
-#: ../../include/enotify.php:156
-#, php-format
-msgid "%1$s shared a new post at %2$s"
+#: ../../include/follow.php:93
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
 msgstr ""
 
-#: ../../include/enotify.php:157
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
 msgstr ""
 
-#: ../../include/enotify.php:169
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
 msgstr ""
 
-#: ../../include/enotify.php:170
-#, php-format
-msgid "%1$s poked you at %2$s"
+#: ../../include/follow.php:259
+msgid "following"
 msgstr ""
 
-#: ../../include/enotify.php:171
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr ""
+
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr ""
+
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr ""
+
+#: ../../include/security.php:366
+msgid ""
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr ""
+
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr ""
+
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr ""
+
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr ""
+
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
 msgstr ""
 
-#: ../../include/enotify.php:186
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
 msgstr ""
 
-#: ../../include/enotify.php:187
-#, php-format
-msgid "%1$s tagged your post at %2$s"
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
 msgstr ""
 
-#: ../../include/enotify.php:188
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
 msgstr ""
 
-#: ../../include/enotify.php:199
-msgid "[Friendica:Notify] Introduction received"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
 msgstr ""
 
-#: ../../include/enotify.php:200
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
 msgstr ""
 
-#: ../../include/enotify.php:201
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
 msgstr ""
 
-#: ../../include/enotify.php:204 ../../include/enotify.php:222
-#, php-format
-msgid "You may visit their profile at %s"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
 msgstr ""
 
-#: ../../include/enotify.php:206
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
 msgstr ""
 
-#: ../../include/enotify.php:213
-msgid "[Friendica:Notify] Friend suggestion received"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
 msgstr ""
 
-#: ../../include/enotify.php:214
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
 msgstr ""
 
-#: ../../include/enotify.php:215
-#, php-format
-msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
 msgstr ""
 
-#: ../../include/enotify.php:220
-msgid "Name:"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
 msgstr ""
 
-#: ../../include/enotify.php:221
-msgid "Photo:"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
 msgstr ""
 
-#: ../../include/enotify.php:224
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
 msgstr ""
 
-#: ../../include/Scrape.php:584
-msgid " on Last.fm"
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
 msgstr ""
 
-#: ../../include/group.php:25
-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."
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
 msgstr ""
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
 msgstr ""
 
-#: ../../include/group.php:226
-msgid "Everybody"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
 msgstr ""
 
-#: ../../include/group.php:249
-msgid "edit"
+#: ../../include/profile_selectors.php:42 ../../include/user.php:288
+#: ../../include/user.php:292
+msgid "Friends"
 msgstr ""
 
-#: ../../include/group.php:271
-msgid "Edit group"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
 msgstr ""
 
-#: ../../include/group.php:272
-msgid "Create a new group"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
 msgstr ""
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
 msgstr ""
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
+#: ../../include/profile_selectors.php:42
+msgid "Married"
 msgstr ""
 
-#: ../../include/follow.php:59
-msgid ""
-"This site is not configured to allow communications with other networks."
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
 msgstr ""
 
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
 msgstr ""
 
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
 msgstr ""
 
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
 msgstr ""
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
 msgstr ""
 
-#: ../../include/follow.php:86
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
 msgstr ""
 
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
 msgstr ""
 
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
 msgstr ""
 
-#: ../../include/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
 msgstr ""
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
 msgstr ""
 
-#: ../../include/follow.php:259
-msgid "following"
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
 msgstr ""
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
 msgstr ""
 
-#: ../../include/nav.php:73
-msgid "End this session"
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
 msgstr ""
 
-#: ../../include/nav.php:91
-msgid "Sign in"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
 msgstr ""
 
-#: ../../include/nav.php:104
-msgid "Home Page"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
 msgstr ""
 
-#: ../../include/nav.php:108
-msgid "Create an account"
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
 msgstr ""
 
-#: ../../include/nav.php:113
-msgid "Help and documentation"
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
 msgstr ""
 
-#: ../../include/nav.php:116
-msgid "Apps"
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
 msgstr ""
 
-#: ../../include/nav.php:116
-msgid "Addon applications, utilities, games"
+#: ../../include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
 msgstr ""
 
-#: ../../include/nav.php:118
-msgid "Search site content"
+#: ../../include/uimport.php:116 ../../include/uimport.php:127
+msgid "Error! Cannot check nickname"
 msgstr ""
 
-#: ../../include/nav.php:128
-msgid "Conversations on this site"
+#: ../../include/uimport.php:120 ../../include/uimport.php:131
+#, php-format
+msgid "User '%s' already exists on this server!"
 msgstr ""
 
-#: ../../include/nav.php:130
-msgid "Directory"
+#: ../../include/uimport.php:153
+msgid "User creation error"
 msgstr ""
 
-#: ../../include/nav.php:130
-msgid "People directory"
+#: ../../include/uimport.php:171
+msgid "User profile creation error"
 msgstr ""
 
-#: ../../include/nav.php:132
-msgid "Information"
-msgstr ""
+#: ../../include/uimport.php:220
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] ""
+msgstr[1] ""
 
-#: ../../include/nav.php:132
-msgid "Information about this friendica instance"
+#: ../../include/uimport.php:290
+msgid "Done. You can now login with your username and password"
 msgstr ""
 
-#: ../../include/nav.php:142
-msgid "Conversations from your friends"
+#: ../../include/plugin.php:455 ../../include/plugin.php:457
+msgid "Click here to upgrade."
 msgstr ""
 
-#: ../../include/nav.php:143
-msgid "Network Reset"
+#: ../../include/plugin.php:463
+msgid "This action exceeds the limits set by your subscription plan."
 msgstr ""
 
-#: ../../include/nav.php:143
-msgid "Load Network page with no filters"
+#: ../../include/plugin.php:468
+msgid "This action is not available under your subscription plan."
 msgstr ""
 
-#: ../../include/nav.php:151
-msgid "Friend Requests"
+#: ../../include/conversation.php:207
+#, php-format
+msgid "%1$s poked %2$s"
 msgstr ""
 
-#: ../../include/nav.php:153
-msgid "See all notifications"
+#: ../../include/conversation.php:291
+msgid "post/item"
 msgstr ""
 
-#: ../../include/nav.php:154
-msgid "Mark all system notifications seen"
+#: ../../include/conversation.php:292
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
 msgstr ""
 
-#: ../../include/nav.php:158
-msgid "Private mail"
+#: ../../include/conversation.php:770
+msgid "remove"
 msgstr ""
 
-#: ../../include/nav.php:159
-msgid "Inbox"
+#: ../../include/conversation.php:774
+msgid "Delete Selected Items"
 msgstr ""
 
-#: ../../include/nav.php:160
-msgid "Outbox"
+#: ../../include/conversation.php:873
+msgid "Follow Thread"
 msgstr ""
 
-#: ../../include/nav.php:164
-msgid "Manage"
+#: ../../include/conversation.php:874 ../../include/Contact.php:229
+msgid "View Status"
 msgstr ""
 
-#: ../../include/nav.php:164
-msgid "Manage other pages"
+#: ../../include/conversation.php:875 ../../include/Contact.php:230
+msgid "View Profile"
 msgstr ""
 
-#: ../../include/nav.php:169
-msgid "Account settings"
+#: ../../include/conversation.php:876 ../../include/Contact.php:231
+msgid "View Photos"
 msgstr ""
 
-#: ../../include/nav.php:171
-msgid "Manage/Edit Profiles"
+#: ../../include/conversation.php:877 ../../include/Contact.php:232
+#: ../../include/Contact.php:255
+msgid "Network Posts"
 msgstr ""
 
-#: ../../include/nav.php:173
-msgid "Manage/edit friends and contacts"
+#: ../../include/conversation.php:878 ../../include/Contact.php:233
+#: ../../include/Contact.php:255
+msgid "Edit Contact"
 msgstr ""
 
-#: ../../include/nav.php:180
-msgid "Site setup and configuration"
+#: ../../include/conversation.php:879 ../../include/Contact.php:235
+#: ../../include/Contact.php:255
+msgid "Send PM"
 msgstr ""
 
-#: ../../include/nav.php:184
-msgid "Navigation"
+#: ../../include/conversation.php:880 ../../include/Contact.php:228
+msgid "Poke"
 msgstr ""
 
-#: ../../include/nav.php:184
-msgid "Site map"
+#: ../../include/conversation.php:942
+#, php-format
+msgid "%s likes this."
 msgstr ""
 
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
+#: ../../include/conversation.php:942
+#, php-format
+msgid "%s doesn't like this."
 msgstr ""
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
+#: ../../include/conversation.php:947
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
 msgstr ""
 
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
+#: ../../include/conversation.php:950
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
 msgstr ""
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
+#: ../../include/conversation.php:964
+msgid "and"
 msgstr ""
 
-#: ../../include/profile_advanced.php:43
+#: ../../include/conversation.php:970
 #, php-format
-msgid "for %1$d %2$s"
+msgid ", and %d other people"
 msgstr ""
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
+#: ../../include/conversation.php:972
+#, php-format
+msgid "%s like this."
 msgstr ""
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
+#: ../../include/conversation.php:972
+#, php-format
+msgid "%s don't like this."
 msgstr ""
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
+#: ../../include/conversation.php:999 ../../include/conversation.php:1017
+msgid "Visible to <strong>everybody</strong>"
 msgstr ""
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
+#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
+msgid "Please enter a video link/URL:"
 msgstr ""
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
+msgid "Please enter an audio link/URL:"
 msgstr ""
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
+#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
+msgid "Tag term:"
 msgstr ""
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
+#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
+msgid "Where are you right now?"
 msgstr ""
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
+#: ../../include/conversation.php:1006
+msgid "Delete item(s)?"
 msgstr ""
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
+#: ../../include/conversation.php:1049
+msgid "Post to Email"
 msgstr ""
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
+#: ../../include/conversation.php:1054
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
 msgstr ""
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
+#: ../../include/conversation.php:1109
+msgid "permissions"
 msgstr ""
 
-#: ../../include/bbcode.php:284 ../../include/bbcode.php:917
-#: ../../include/bbcode.php:918
-msgid "Image/photo"
+#: ../../include/conversation.php:1133
+msgid "Post to Groups"
 msgstr ""
 
-#: ../../include/bbcode.php:354
-#, php-format
-msgid ""
-"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href="
-"\"%s\" target=\"_blank\">post</a>"
+#: ../../include/conversation.php:1134
+msgid "Post to Contacts"
 msgstr ""
 
-#: ../../include/bbcode.php:453
-msgid "<span><b>"
+#: ../../include/conversation.php:1135
+msgid "Private post"
 msgstr ""
 
-#: ../../include/bbcode.php:881 ../../include/bbcode.php:901
-msgid "$1 wrote:"
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
 msgstr ""
 
-#: ../../include/bbcode.php:932 ../../include/bbcode.php:933
-msgid "Encrypted content"
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
 msgstr ""
 
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
 msgstr ""
 
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
+#: ../../include/contact_widgets.php:23
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/contact_widgets.php:29
+msgid "Find People"
 msgstr ""
 
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
+#: ../../include/contact_widgets.php:30
+msgid "Enter name or interest"
 msgstr ""
 
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
+#: ../../include/contact_widgets.php:31
+msgid "Connect/Follow"
 msgstr ""
 
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
+#: ../../include/contact_widgets.php:32
+msgid "Examples: Robert Morgenstein, Fishing"
 msgstr ""
 
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
+#: ../../include/contact_widgets.php:36
+msgid "Random Profile"
 msgstr ""
 
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
+#: ../../include/contact_widgets.php:70
+msgid "Networks"
 msgstr ""
 
-#: ../../include/contact_selectors.php:61
-msgid "Monthly"
+#: ../../include/contact_widgets.php:73
+msgid "All Networks"
 msgstr ""
 
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
+#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
+msgid "Everything"
 msgstr ""
 
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
+#: ../../include/contact_widgets.php:135
+msgid "Categories"
 msgstr ""
 
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
+#: ../../include/nav.php:73
+msgid "End this session"
 msgstr ""
 
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
+#: ../../include/nav.php:91
+msgid "Sign in"
 msgstr ""
 
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
+#: ../../include/nav.php:104
+msgid "Home Page"
 msgstr ""
 
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
+#: ../../include/nav.php:108
+msgid "Create an account"
 msgstr ""
 
-#: ../../include/contact_selectors.php:87
-msgid "Google+"
+#: ../../include/nav.php:113
+msgid "Help and documentation"
 msgstr ""
 
-#: ../../include/contact_selectors.php:88
-msgid "pump.io"
+#: ../../include/nav.php:116
+msgid "Apps"
 msgstr ""
 
-#: ../../include/contact_selectors.php:89
-msgid "Twitter"
+#: ../../include/nav.php:116
+msgid "Addon applications, utilities, games"
 msgstr ""
 
-#: ../../include/contact_selectors.php:90
-msgid "Diaspora Connector"
+#: ../../include/nav.php:118
+msgid "Search site content"
 msgstr ""
 
-#: ../../include/contact_selectors.php:91
-msgid "Statusnet"
+#: ../../include/nav.php:128
+msgid "Conversations on this site"
 msgstr ""
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
+#: ../../include/nav.php:130
+msgid "Directory"
 msgstr ""
 
-#: ../../include/datetime.php:153 ../../include/datetime.php:285
-msgid "year"
+#: ../../include/nav.php:130
+msgid "People directory"
 msgstr ""
 
-#: ../../include/datetime.php:158 ../../include/datetime.php:286
-msgid "month"
+#: ../../include/nav.php:132
+msgid "Information"
 msgstr ""
 
-#: ../../include/datetime.php:163 ../../include/datetime.php:288
-msgid "day"
+#: ../../include/nav.php:132
+msgid "Information about this friendica instance"
 msgstr ""
 
-#: ../../include/datetime.php:276
-msgid "never"
+#: ../../include/nav.php:142
+msgid "Conversations from your friends"
 msgstr ""
 
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
+#: ../../include/nav.php:143
+msgid "Network Reset"
 msgstr ""
 
-#: ../../include/datetime.php:285
-msgid "years"
+#: ../../include/nav.php:143
+msgid "Load Network page with no filters"
 msgstr ""
 
-#: ../../include/datetime.php:286
-msgid "months"
+#: ../../include/nav.php:151
+msgid "Friend Requests"
 msgstr ""
 
-#: ../../include/datetime.php:287
-msgid "week"
+#: ../../include/nav.php:153
+msgid "See all notifications"
 msgstr ""
 
-#: ../../include/datetime.php:287
-msgid "weeks"
+#: ../../include/nav.php:154
+msgid "Mark all system notifications seen"
 msgstr ""
 
-#: ../../include/datetime.php:288
-msgid "days"
+#: ../../include/nav.php:158
+msgid "Private mail"
 msgstr ""
 
-#: ../../include/datetime.php:289
-msgid "hour"
+#: ../../include/nav.php:159
+msgid "Inbox"
 msgstr ""
 
-#: ../../include/datetime.php:289
-msgid "hours"
+#: ../../include/nav.php:160
+msgid "Outbox"
 msgstr ""
 
-#: ../../include/datetime.php:290
-msgid "minute"
+#: ../../include/nav.php:164
+msgid "Manage"
 msgstr ""
 
-#: ../../include/datetime.php:290
-msgid "minutes"
+#: ../../include/nav.php:164
+msgid "Manage other pages"
 msgstr ""
 
-#: ../../include/datetime.php:291
-msgid "second"
+#: ../../include/nav.php:169
+msgid "Account settings"
 msgstr ""
 
-#: ../../include/datetime.php:291
-msgid "seconds"
+#: ../../include/nav.php:171
+msgid "Manage/Edit Profiles"
 msgstr ""
 
-#: ../../include/datetime.php:300
-#, php-format
-msgid "%1$d %2$s ago"
+#: ../../include/nav.php:173
+msgid "Manage/edit friends and contacts"
 msgstr ""
 
-#: ../../include/datetime.php:472 ../../include/items.php:1964
-#, php-format
-msgid "%s's birthday"
+#: ../../include/nav.php:180
+msgid "Site setup and configuration"
 msgstr ""
 
-#: ../../include/datetime.php:473 ../../include/items.php:1965
-#, php-format
-msgid "Happy Birthday %s"
+#: ../../include/nav.php:184
+msgid "Navigation"
 msgstr ""
 
-#: ../../include/features.php:23
-msgid "General Features"
+#: ../../include/nav.php:184
+msgid "Site map"
 msgstr ""
 
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
+#: ../../include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
 msgstr ""
 
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
+#: ../../include/contact_selectors.php:33
+msgid "Block immediately"
 msgstr ""
 
-#: ../../include/features.php:30
-msgid "Post Composition Features"
+#: ../../include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
 msgstr ""
 
-#: ../../include/features.php:31
-msgid "Richtext Editor"
+#: ../../include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
 msgstr ""
 
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
+#: ../../include/contact_selectors.php:36
+msgid "OK, probably harmless"
 msgstr ""
 
-#: ../../include/features.php:32
-msgid "Post Preview"
+#: ../../include/contact_selectors.php:37
+msgid "Reputable, has my trust"
 msgstr ""
 
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
 msgstr ""
 
-#: ../../include/features.php:33
-msgid "Auto-mention Forums"
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
 msgstr ""
 
-#: ../../include/features.php:33
-msgid ""
-"Add/remove mention when a fourm page is selected/deselected in ACL window."
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
 msgstr ""
 
-#: ../../include/features.php:38
-msgid "Network Sidebar Widgets"
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
 msgstr ""
 
-#: ../../include/features.php:39
-msgid "Search by Date"
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
 msgstr ""
 
-#: ../../include/features.php:39
-msgid "Ability to select posts by date ranges"
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
 msgstr ""
 
-#: ../../include/features.php:40
-msgid "Group Filter"
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
 msgstr ""
 
-#: ../../include/features.php:40
-msgid "Enable widget to display Network posts only from selected group"
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
 msgstr ""
 
-#: ../../include/features.php:41
-msgid "Network Filter"
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
 msgstr ""
 
-#: ../../include/features.php:41
-msgid "Enable widget to display Network posts only from selected network"
+#: ../../include/contact_selectors.php:88
+msgid "pump.io"
 msgstr ""
 
-#: ../../include/features.php:42
-msgid "Save search terms for re-use"
+#: ../../include/contact_selectors.php:89
+msgid "Twitter"
 msgstr ""
 
-#: ../../include/features.php:47
-msgid "Network Tabs"
+#: ../../include/contact_selectors.php:90
+msgid "Diaspora Connector"
 msgstr ""
 
-#: ../../include/features.php:48
-msgid "Network Personal Tab"
+#: ../../include/contact_selectors.php:91
+msgid "Statusnet"
 msgstr ""
 
-#: ../../include/features.php:48
-msgid "Enable tab to display only Network posts that you've interacted on"
+#: ../../include/enotify.php:16
+msgid "Friendica Notification"
 msgstr ""
 
-#: ../../include/features.php:49
-msgid "Network New Tab"
+#: ../../include/enotify.php:19
+msgid "Thank You,"
 msgstr ""
 
-#: ../../include/features.php:49
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+#: ../../include/enotify.php:21
+#, php-format
+msgid "%s Administrator"
 msgstr ""
 
-#: ../../include/features.php:50
-msgid "Network Shared Links Tab"
+#: ../../include/enotify.php:40
+#, php-format
+msgid "%s <!item_type!>"
 msgstr ""
 
-#: ../../include/features.php:50
-msgid "Enable tab to display only Network posts with links in them"
+#: ../../include/enotify.php:44
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
 msgstr ""
 
-#: ../../include/features.php:55
-msgid "Post/Comment Tools"
+#: ../../include/enotify.php:46
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
 msgstr ""
 
-#: ../../include/features.php:56
-msgid "Multiple Deletion"
+#: ../../include/enotify.php:47
+#, php-format
+msgid "%1$s sent you %2$s."
 msgstr ""
 
-#: ../../include/features.php:56
-msgid "Select and delete multiple posts/comments at once"
+#: ../../include/enotify.php:47
+msgid "a private message"
 msgstr ""
 
-#: ../../include/features.php:57
-msgid "Edit Sent Posts"
+#: ../../include/enotify.php:48
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
 msgstr ""
 
-#: ../../include/features.php:57
-msgid "Edit and correct posts and comments after sending"
+#: ../../include/enotify.php:91
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
 msgstr ""
 
-#: ../../include/features.php:58
-msgid "Tagging"
+#: ../../include/enotify.php:98
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
 msgstr ""
 
-#: ../../include/features.php:58
-msgid "Ability to tag existing posts"
+#: ../../include/enotify.php:106
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
 msgstr ""
 
-#: ../../include/features.php:59
-msgid "Post Categories"
+#: ../../include/enotify.php:116
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
 msgstr ""
 
-#: ../../include/features.php:59
-msgid "Add categories to your posts"
+#: ../../include/enotify.php:117
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
 msgstr ""
 
-#: ../../include/features.php:60
-msgid "Ability to file posts under folders"
+#: ../../include/enotify.php:120 ../../include/enotify.php:135
+#: ../../include/enotify.php:148 ../../include/enotify.php:161
+#: ../../include/enotify.php:179 ../../include/enotify.php:192
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
 msgstr ""
 
-#: ../../include/features.php:61
-msgid "Dislike Posts"
+#: ../../include/enotify.php:127
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
 msgstr ""
 
-#: ../../include/features.php:61
-msgid "Ability to dislike posts/comments"
+#: ../../include/enotify.php:129
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
 msgstr ""
 
-#: ../../include/features.php:62
-msgid "Star Posts"
+#: ../../include/enotify.php:131
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
 msgstr ""
 
-#: ../../include/features.php:62
-msgid "Ability to mark special posts with a star indicator"
+#: ../../include/enotify.php:142
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
 msgstr ""
 
-#: ../../include/diaspora.php:703
-msgid "Sharing notification from Diaspora network"
+#: ../../include/enotify.php:143
+#, php-format
+msgid "%1$s tagged you at %2$s"
 msgstr ""
 
-#: ../../include/diaspora.php:2299
-msgid "Attachments:"
+#: ../../include/enotify.php:144
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
 msgstr ""
 
-#: ../../include/acl_selectors.php:326
-msgid "Visible to everybody"
+#: ../../include/enotify.php:155
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
 msgstr ""
 
-#: ../../include/items.php:3693
-msgid "A new person is sharing with you at "
+#: ../../include/enotify.php:156
+#, php-format
+msgid "%1$s shared a new post at %2$s"
 msgstr ""
 
-#: ../../include/items.php:3693
-msgid "You have a new follower at "
+#: ../../include/enotify.php:157
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
 msgstr ""
 
-#: ../../include/items.php:4216
-msgid "Do you really want to delete this item?"
+#: ../../include/enotify.php:169
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
 msgstr ""
 
-#: ../../include/items.php:4443
-msgid "Archives"
+#: ../../include/enotify.php:170
+#, php-format
+msgid "%1$s poked you at %2$s"
 msgstr ""
 
-#: ../../include/oembed.php:174
-msgid "Embedded content"
+#: ../../include/enotify.php:171
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
 msgstr ""
 
-#: ../../include/oembed.php:183
-msgid "Embedding disabled"
+#: ../../include/enotify.php:186
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
 msgstr ""
 
-#: ../../include/security.php:22
-msgid "Welcome "
+#: ../../include/enotify.php:187
+#, php-format
+msgid "%1$s tagged your post at %2$s"
 msgstr ""
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
+#: ../../include/enotify.php:188
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
 msgstr ""
 
-#: ../../include/security.php:26
-msgid "Welcome back "
+#: ../../include/enotify.php:199
+msgid "[Friendica:Notify] Introduction received"
 msgstr ""
 
-#: ../../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."
+#: ../../include/enotify.php:200
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
+#: ../../include/enotify.php:201
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
+#: ../../include/enotify.php:204 ../../include/enotify.php:222
+#, php-format
+msgid "You may visit their profile at %s"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
+#: ../../include/enotify.php:206
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
+#: ../../include/enotify.php:213
+msgid "[Friendica:Notify] Friend suggestion received"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
+#: ../../include/enotify.php:214
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
+#: ../../include/enotify.php:215
+#, php-format
+msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
+#: ../../include/enotify.php:220
+msgid "Name:"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
+#: ../../include/enotify.php:221
+msgid "Photo:"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
+#: ../../include/enotify.php:224
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
+#: ../../include/user.php:39
+msgid "An invitation is required."
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
+#: ../../include/user.php:44
+msgid "Invitation could not be verified."
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
+#: ../../include/user.php:52
+msgid "Invalid OpenID url"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
+#: ../../include/user.php:73
+msgid "Please enter the required information."
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
+#: ../../include/user.php:87
+msgid "Please use a shorter name."
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
+#: ../../include/user.php:89
+msgid "Name too short."
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
+#: ../../include/user.php:104
+msgid "That doesn't appear to be your full (First Last) name."
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
+#: ../../include/user.php:109
+msgid "Your email domain is not among those allowed on this site."
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
+#: ../../include/user.php:112
+msgid "Not a valid email address."
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
+#: ../../include/user.php:125
+msgid "Cannot use that email."
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
+#: ../../include/user.php:131
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
+#: ../../include/user.php:137 ../../include/user.php:235
+msgid "Nickname is already registered. Please choose another."
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
+#: ../../include/user.php:147
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
+#: ../../include/user.php:163
+msgid "SERIOUS ERROR: Generation of security keys failed."
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
+#: ../../include/user.php:221
+msgid "An error occurred during registration. Please try again."
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
+#: ../../include/user.php:256
+msgid "An error occurred creating your default profile. Please try again."
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
+#: ../../include/acl_selectors.php:326
+msgid "Visible to everybody"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
+#: ../../include/bbcode.php:287 ../../include/bbcode.php:920
+#: ../../include/bbcode.php:921
+msgid "Image/photo"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
+#: ../../include/bbcode.php:357
+#, php-format
+msgid ""
+"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href="
+"\"%s\" target=\"_blank\">post</a>"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
+#: ../../include/bbcode.php:458
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
+#: ../../include/bbcode.php:884 ../../include/bbcode.php:904
+msgid "$1 wrote:"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
+#: ../../include/bbcode.php:935 ../../include/bbcode.php:936
+msgid "Encrypted content"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
+#: ../../include/oembed.php:174
+msgid "Embedded content"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
+#: ../../include/oembed.php:183
+msgid "Embedding disabled"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
+#: ../../include/group.php:25
+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 ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
+#: ../../include/group.php:226
+msgid "Everybody"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
+#: ../../include/group.php:249
+msgid "edit"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
+#: ../../include/group.php:271
+msgid "Edit group"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
+#: ../../include/group.php:272
+msgid "Create a new group"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
+#: ../../include/Contact.php:115
+msgid "stopped following"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
+#: ../../include/Contact.php:234
+msgid "Drop Contact"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
+#: ../../include/datetime.php:153 ../../include/datetime.php:285
+msgid "year"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
+#: ../../include/datetime.php:158 ../../include/datetime.php:286
+msgid "month"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
+#: ../../include/datetime.php:163 ../../include/datetime.php:288
+msgid "day"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
+#: ../../include/datetime.php:276
+msgid "never"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
+#: ../../include/datetime.php:285
+msgid "years"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
+#: ../../include/datetime.php:286
+msgid "months"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
+#: ../../include/datetime.php:287
+msgid "week"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
+#: ../../include/datetime.php:287
+msgid "weeks"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
+#: ../../include/datetime.php:288
+msgid "days"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
+#: ../../include/datetime.php:289
+msgid "hour"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
+#: ../../include/datetime.php:289
+msgid "hours"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
+#: ../../include/datetime.php:290
+msgid "minute"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
+#: ../../include/datetime.php:290
+msgid "minutes"
 msgstr ""
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
+#: ../../include/datetime.php:291
+msgid "second"
 msgstr ""
 
-#: ../../include/Contact.php:234
-msgid "Drop Contact"
+#: ../../include/datetime.php:291
+msgid "seconds"
 msgstr ""
 
-#: ../../include/dba.php:45
+#: ../../include/datetime.php:300
 #, php-format
-msgid "Cannot locate DNS info for database server '%s'"
+msgid "%1$d %2$s ago"
+msgstr ""
+
+#: ../../include/network.php:886
+msgid "view full size"
 msgstr ""
index 027097fb5b1a1d5eb2cd668e46e45145ac3aba64..a385085c081baac862246e826994cc214b00eee0 100644 (file)
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-12-31 18:07+0100\n"
-"PO-Revision-Date: 2014-01-04 14:37+0000\n"
+"POT-Creation-Date: 2014-05-16 11:05+0200\n"
+"PO-Revision-Date: 2014-05-17 09:06+0000\n"
 "Last-Translator: Michal Šupler <msupler@gmail.com>\n"
 "Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n"
 "MIME-Version: 1.0\n"
@@ -22,25 +22,26 @@ msgstr ""
 msgid "This entry was edited"
 msgstr "Tento záznam byl editován"
 
-#: ../../object/Item.php:113 ../../mod/content.php:619
-#: ../../mod/photos.php:1351
+#: ../../object/Item.php:113 ../../mod/photos.php:1355
+#: ../../mod/content.php:619
 msgid "Private Message"
 msgstr "Soukromá zpráva"
 
 #: ../../object/Item.php:117 ../../mod/editpost.php:109
-#: ../../mod/content.php:727 ../../mod/settings.php:663
+#: ../../mod/settings.php:671 ../../mod/content.php:727
 msgid "Edit"
 msgstr "Upravit"
 
-#: ../../object/Item.php:126 ../../mod/content.php:437
-#: ../../mod/content.php:739 ../../include/conversation.php:611
+#: ../../object/Item.php:126 ../../mod/photos.php:1649
+#: ../../mod/content.php:437 ../../mod/content.php:739
+#: ../../include/conversation.php:612
 msgid "Select"
 msgstr "Vybrat"
 
-#: ../../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
+#: ../../object/Item.php:127 ../../mod/admin.php:910 ../../mod/photos.php:1650
+#: ../../mod/contacts.php:703 ../../mod/settings.php:672
+#: ../../mod/group.php:171 ../../mod/content.php:438 ../../mod/content.php:740
+#: ../../include/conversation.php:613
 msgid "Delete"
 msgstr "Odstranit"
 
@@ -68,8 +69,8 @@ msgstr "označeno hvězdou"
 msgid "add tag"
 msgstr "přidat štítek"
 
-#: ../../object/Item.php:213 ../../mod/content.php:683
-#: ../../mod/photos.php:1529
+#: ../../object/Item.php:213 ../../mod/photos.php:1538
+#: ../../mod/content.php:683
 msgid "I like this (toggle)"
 msgstr "Líbí se mi to (přepínač)"
 
@@ -77,8 +78,8 @@ msgstr "Líbí se mi to (přepínač)"
 msgid "like"
 msgstr "má rád"
 
-#: ../../object/Item.php:214 ../../mod/content.php:684
-#: ../../mod/photos.php:1530
+#: ../../object/Item.php:214 ../../mod/photos.php:1539
+#: ../../mod/content.php:684
 msgid "I don't like this (toggle)"
 msgstr "Nelíbí se mi to (přepínač)"
 
@@ -94,58 +95,58 @@ msgstr "Sdílet toto"
 msgid "share"
 msgstr "sdílí"
 
-#: ../../object/Item.php:278 ../../include/conversation.php:663
+#: ../../object/Item.php:298 ../../include/conversation.php:665
 msgid "Categories:"
 msgstr "Kategorie:"
 
-#: ../../object/Item.php:279 ../../include/conversation.php:664
+#: ../../object/Item.php:299 ../../include/conversation.php:666
 msgid "Filed under:"
 msgstr "Vyplněn pod:"
 
-#: ../../object/Item.php:287 ../../object/Item.php:288
+#: ../../object/Item.php:307 ../../object/Item.php:308
 #: ../../mod/content.php:471 ../../mod/content.php:851
-#: ../../mod/content.php:852 ../../include/conversation.php:651
+#: ../../mod/content.php:852 ../../include/conversation.php:653
 #, php-format
 msgid "View %s's profile @ %s"
 msgstr "Zobrazit profil uživatele %s na %s"
 
-#: ../../object/Item.php:289 ../../mod/content.php:853
+#: ../../object/Item.php:309 ../../mod/content.php:853
 msgid "to"
 msgstr "pro"
 
-#: ../../object/Item.php:290
+#: ../../object/Item.php:310
 msgid "via"
 msgstr "přes"
 
-#: ../../object/Item.php:291 ../../mod/content.php:854
+#: ../../object/Item.php:311 ../../mod/content.php:854
 msgid "Wall-to-Wall"
 msgstr "Zeď-na-Zeď"
 
-#: ../../object/Item.php:292 ../../mod/content.php:855
+#: ../../object/Item.php:312 ../../mod/content.php:855
 msgid "via Wall-To-Wall:"
 msgstr "přes Zeď-na-Zeď "
 
-#: ../../object/Item.php:301 ../../mod/content.php:481
-#: ../../mod/content.php:863 ../../include/conversation.php:671
+#: ../../object/Item.php:321 ../../mod/content.php:481
+#: ../../mod/content.php:863 ../../include/conversation.php:673
 #, php-format
 msgid "%s from %s"
 msgstr "%s od %s"
 
-#: ../../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
+#: ../../object/Item.php:341 ../../object/Item.php:657
+#: ../../mod/photos.php:1560 ../../mod/photos.php:1604
+#: ../../mod/photos.php:1692 ../../mod/content.php:708 ../../boot.php:693
 msgid "Comment"
 msgstr "Okomentovat"
 
-#: ../../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
+#: ../../object/Item.php:344 ../../mod/message.php:334
+#: ../../mod/message.php:565 ../../mod/editpost.php:124
+#: ../../mod/wallmessage.php:156 ../../mod/photos.php:1541
+#: ../../mod/content.php:498 ../../mod/content.php:882
+#: ../../include/conversation.php:690 ../../include/conversation.php:1107
 msgid "Please wait"
 msgstr "Čekejte prosím"
 
-#: ../../object/Item.php:345 ../../mod/content.php:602
+#: ../../object/Item.php:367 ../../mod/content.php:602
 #, php-format
 msgid "%d comment"
 msgid_plural "%d comments"
@@ -153,2868 +154,2865 @@ msgstr[0] "%d komentář"
 msgstr[1] "%d komentářů"
 msgstr[2] "%d komentářů"
 
-#: ../../object/Item.php:347 ../../object/Item.php:360
-#: ../../mod/content.php:604 ../../include/text.php:1928
+#: ../../object/Item.php:369 ../../object/Item.php:382
+#: ../../mod/content.php:604 ../../include/text.php:1959
 msgid "comment"
 msgid_plural "comments"
 msgstr[0] ""
 msgstr[1] ""
 msgstr[2] "komentář"
 
-#: ../../object/Item.php:348 ../../boot.php:686 ../../mod/content.php:605
+#: ../../object/Item.php:370 ../../mod/content.php:605 ../../boot.php:694
 #: ../../include/contact_widgets.php:204
 msgid "show more"
 msgstr "zobrazit více"
 
-#: ../../object/Item.php:633 ../../mod/content.php:706
-#: ../../mod/photos.php:1549 ../../mod/photos.php:1593
-#: ../../mod/photos.php:1676
+#: ../../object/Item.php:655 ../../mod/photos.php:1558
+#: ../../mod/photos.php:1602 ../../mod/photos.php:1690
+#: ../../mod/content.php:706
 msgid "This is you"
 msgstr "Nastavte Vaši polohu"
 
-#: ../../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:171 ../../mod/content.php:709
-#: ../../mod/contacts.php:458 ../../mod/profiles.php:630
+#: ../../object/Item.php:658 ../../mod/fsuggest.php:107
 #: ../../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
+#: ../../mod/events.php:478 ../../mod/photos.php:1082
+#: ../../mod/photos.php:1203 ../../mod/photos.php:1510
+#: ../../mod/photos.php:1561 ../../mod/photos.php:1605
+#: ../../mod/photos.php:1693 ../../mod/contacts.php:464
+#: ../../mod/invite.php:140 ../../mod/profiles.php:634
+#: ../../mod/manage.php:110 ../../mod/poke.php:199 ../../mod/localtime.php:45
+#: ../../mod/install.php:248 ../../mod/install.php:286
+#: ../../mod/content.php:709 ../../mod/mood.php:137 ../../mod/crepair.php:171
+#: ../../view/theme/diabook/theme.php:633
+#: ../../view/theme/diabook/config.php:148 ../../view/theme/vier/config.php:47
+#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64
+#: ../../view/theme/cleanzero/config.php:80
 msgid "Submit"
 msgstr "Odeslat"
 
-#: ../../object/Item.php:637 ../../mod/content.php:710
+#: ../../object/Item.php:659 ../../mod/content.php:710
 msgid "Bold"
 msgstr "Tučné"
 
-#: ../../object/Item.php:638 ../../mod/content.php:711
+#: ../../object/Item.php:660 ../../mod/content.php:711
 msgid "Italic"
 msgstr "Kurzíva"
 
-#: ../../object/Item.php:639 ../../mod/content.php:712
+#: ../../object/Item.php:661 ../../mod/content.php:712
 msgid "Underline"
 msgstr "Podrtžené"
 
-#: ../../object/Item.php:640 ../../mod/content.php:713
+#: ../../object/Item.php:662 ../../mod/content.php:713
 msgid "Quote"
 msgstr "Citovat"
 
-#: ../../object/Item.php:641 ../../mod/content.php:714
+#: ../../object/Item.php:663 ../../mod/content.php:714
 msgid "Code"
 msgstr "Kód"
 
-#: ../../object/Item.php:642 ../../mod/content.php:715
+#: ../../object/Item.php:664 ../../mod/content.php:715
 msgid "Image"
 msgstr "Obrázek"
 
-#: ../../object/Item.php:643 ../../mod/content.php:716
+#: ../../object/Item.php:665 ../../mod/content.php:716
 msgid "Link"
 msgstr "Odkaz"
 
-#: ../../object/Item.php:644 ../../mod/content.php:717
+#: ../../object/Item.php:666 ../../mod/content.php:717
 msgid "Video"
 msgstr "Video"
 
-#: ../../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
+#: ../../object/Item.php:667 ../../mod/editpost.php:145
+#: ../../mod/photos.php:1562 ../../mod/photos.php:1606
+#: ../../mod/photos.php:1694 ../../mod/content.php:718
+#: ../../include/conversation.php:1124
 msgid "Preview"
 msgstr "Náhled"
 
-#: ../../index.php:199 ../../mod/apps.php:7
+#: ../../index.php:203 ../../mod/apps.php:7
 msgid "You must be logged in to use addons. "
 msgstr "Musíte být přihlášení pro použití rozšíření."
 
-#: ../../index.php:243 ../../mod/help.php:90
+#: ../../index.php:247 ../../mod/help.php:90
 msgid "Not Found"
 msgstr "Nenalezen"
 
-#: ../../index.php:246 ../../mod/help.php:93
+#: ../../index.php:250 ../../mod/help.php:93
 msgid "Page not found."
 msgstr "Stránka nenalezena"
 
-#: ../../index.php:355 ../../mod/group.php:72 ../../mod/profperm.php:19
+#: ../../index.php:359 ../../mod/profperm.php:19 ../../mod/group.php:72
 msgid "Permission denied"
 msgstr "Nedostatečné oprávnění"
 
-#: ../../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: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
-#: ../../mod/photos.php:1044 ../../mod/wall_attach.php:55
-#: ../../mod/poke.php:135 ../../mod/wall_upload.php:66
+#: ../../index.php:360 ../../mod/fsuggest.php:78 ../../mod/files.php:170
+#: ../../mod/notifications.php:66 ../../mod/message.php:38
+#: ../../mod/message.php:174 ../../mod/editpost.php:10
+#: ../../mod/dfrn_confirm.php:53 ../../mod/events.php:140
+#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
+#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
+#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:66 ../../mod/api.php:26
+#: ../../mod/api.php:31 ../../mod/photos.php:134 ../../mod/photos.php:1048
+#: ../../mod/register.php:41 ../../mod/attach.php:33
+#: ../../mod/contacts.php:246 ../../mod/follow.php:9 ../../mod/uimport.php:23
+#: ../../mod/allfriends.php:9 ../../mod/invite.php:15 ../../mod/invite.php:101
+#: ../../mod/settings.php:102 ../../mod/settings.php:591
+#: ../../mod/settings.php:596 ../../mod/display.php:266
+#: ../../mod/profiles.php:146 ../../mod/profiles.php:575
+#: ../../mod/wall_attach.php:55 ../../mod/suggest.php:56
+#: ../../mod/manage.php:96 ../../mod/delegate.php:6
+#: ../../mod/viewcontacts.php:22 ../../mod/notes.php:20 ../../mod/poke.php:135
 #: ../../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:4215
+#: ../../mod/install.php:151 ../../mod/group.php:19 ../../mod/regmod.php:118
+#: ../../mod/item.php:145 ../../mod/item.php:161 ../../mod/mood.php:114
+#: ../../mod/network.php:4 ../../mod/crepair.php:117
+#: ../../include/items.php:4390
 msgid "Permission denied."
 msgstr "Přístup odmítnut."
 
-#: ../../index.php:415
+#: ../../index.php:419
 msgid "toggle mobile"
 msgstr "přepnout mobil"
 
-#: ../../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ů"
+#: ../../mod/update_notes.php:41 ../../mod/update_profile.php:41
+#: ../../mod/update_community.php:18 ../../mod/update_network.php:22
+#: ../../mod/update_display.php:22
+msgid "[Embedded content - reload page to view]"
+msgstr "[Vložený obsah - obnovení stránky pro zobrazení]"
 
-#: ../../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 "Vaše příspěvky a konverzace"
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131
+msgid "Contact not found."
+msgstr "Kontakt nenalezen."
 
-#: ../../view/theme/perihel/theme.php:34
-#: ../../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
-msgid "Profile"
-msgstr "Profil"
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Návrhy přátelství odeslány "
 
-#: ../../view/theme/perihel/theme.php:34
-#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
-msgid "Your profile page"
-msgstr "Vaše profilová stránka"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Navrhněte přátelé"
 
-#: ../../view/theme/perihel/theme.php:35
-#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1974
-#: ../../mod/fbrowser.php:25 ../../include/nav.php:78
-msgid "Photos"
-msgstr "Fotografie"
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Navrhněte přátelé pro uživatele %s"
 
-#: ../../view/theme/perihel/theme.php:35
-#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
-msgid "Your photos"
-msgstr "Vaše fotky"
+#: ../../mod/dfrn_request.php:93
+msgid "This introduction has already been accepted."
+msgstr "Toto pozvání již bylo přijato."
 
-#: ../../view/theme/perihel/theme.php:36
-#: ../../view/theme/diabook/theme.php:127 ../../boot.php:1991
-#: ../../mod/events.php:370 ../../include/nav.php:79
-msgid "Events"
-msgstr "Události"
+#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Adresa profilu není platná nebo neobsahuje profilové informace"
 
-#: ../../view/theme/perihel/theme.php:36
-#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79
-msgid "Your events"
-msgstr "Vaše události"
+#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka"
 
-#: ../../view/theme/perihel/theme.php:37
-#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
-msgid "Personal notes"
-msgstr "Osobní poznámky"
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
+msgid "Warning: profile location has no profile photo."
+msgstr "Varování: umístění profilu nemá žádnou profilovou fotografii."
 
-#: ../../view/theme/perihel/theme.php:37
-#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
-msgid "Your personal photos"
-msgstr "Vaše osobní fotky"
+#: ../../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 požadovaný parametr nebyl nalezen na daném místě"
+msgstr[1] "%d požadované parametry nebyly nalezeny na daném místě"
+msgstr[2] "%d požadované parametry nebyly nalezeny na daném místě"
 
-#: ../../view/theme/perihel/theme.php:38
-#: ../../view/theme/diabook/theme.php:129 ../../mod/community.php:32
-#: ../../include/nav.php:128
-msgid "Community"
-msgstr "Komunita"
+#: ../../mod/dfrn_request.php:170
+msgid "Introduction complete."
+msgstr "Představení dokončeno."
 
-#: ../../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 "nikdy nezobrazit"
+#: ../../mod/dfrn_request.php:209
+msgid "Unrecoverable protocol error."
+msgstr "Neopravitelná chyba protokolu"
 
-#: ../../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 "zobrazit"
+#: ../../mod/dfrn_request.php:237
+msgid "Profile unavailable."
+msgstr "Profil není k dispozici."
 
-#: ../../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 "Nastavení téma"
+#: ../../mod/dfrn_request.php:262
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s dnes obdržel příliš mnoho požadavků na připojení."
 
-#: ../../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 "Nastav velikost písma pro přízpěvky a komentáře."
+#: ../../mod/dfrn_request.php:263
+msgid "Spam protection measures have been invoked."
+msgstr "Ochrana proti spamu byla aktivována"
 
-#: ../../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 "Nastav výšku řádku  pro přízpěvky a komentáře."
+#: ../../mod/dfrn_request.php:264
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Přátelům se doporučuje to zkusit znovu za 24 hodin."
 
-#: ../../view/theme/perihel/config.php:100
-#: ../../view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
-msgstr "Nastav rozlišení pro prostřední sloupec"
+#: ../../mod/dfrn_request.php:326
+msgid "Invalid locator"
+msgstr "Neplatný odkaz"
 
-#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:680
-#: ../../include/nav.php:171
-msgid "Contacts"
-msgstr "Kontakty"
+#: ../../mod/dfrn_request.php:335
+msgid "Invalid email address."
+msgstr "Neplatná emailová adresa"
 
-#: ../../view/theme/diabook/theme.php:125
-msgid "Your contacts"
-msgstr "Vaše kontakty"
+#: ../../mod/dfrn_request.php:362
+msgid "This account has not been configured for email. Request failed."
+msgstr "Tento účet nebyl nastaven pro email. Požadavek nesplněn."
 
-#: ../../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 "Komunitní stránky"
+#: ../../mod/dfrn_request.php:458
+msgid "Unable to resolve your name at the provided location."
+msgstr "Nepodařilo se zjistit Vaše jméno na zadané adrese."
 
-#: ../../view/theme/diabook/theme.php:391
-#: ../../view/theme/diabook/theme.php:626
-#: ../../view/theme/diabook/config.php:160
-msgid "Community Profiles"
-msgstr "Komunitní profily"
+#: ../../mod/dfrn_request.php:471
+msgid "You have already introduced yourself here."
+msgstr "Již jste se zde zavedli."
 
-#: ../../view/theme/diabook/theme.php:412
-#: ../../view/theme/diabook/theme.php:630
-#: ../../view/theme/diabook/config.php:164
-msgid "Last users"
-msgstr "Poslední uživatelé"
+#: ../../mod/dfrn_request.php:475
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Zřejmě jste již přátelé se %s."
 
-#: ../../view/theme/diabook/theme.php:441
-#: ../../view/theme/diabook/theme.php:632
-#: ../../view/theme/diabook/config.php:166
-msgid "Last likes"
-msgstr "Poslední líbí/nelíbí"
+#: ../../mod/dfrn_request.php:496
+msgid "Invalid profile URL."
+msgstr "Neplatné URL profilu."
 
-#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118
-#: ../../include/conversation.php:246 ../../include/text.php:1922
-msgid "event"
-msgstr "událost"
+#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
+msgid "Disallowed profile URL."
+msgstr "Nepovolené URL profilu."
 
-#: ../../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:1878
-msgid "status"
-msgstr "Stav"
+#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180
+msgid "Failed to update contact record."
+msgstr "Nepodařilo se aktualizovat kontakt."
 
-#: ../../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:1924 ../../include/diaspora.php:1878
-msgid "photo"
-msgstr "fotografie"
+#: ../../mod/dfrn_request.php:592
+msgid "Your introduction has been sent."
+msgstr "Vaše žádost o propojení byla odeslána."
 
-#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:168
-#: ../../include/conversation.php:137 ../../include/diaspora.php:1894
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s má rád %2$s' na %3$s"
+#: ../../mod/dfrn_request.php:645
+msgid "Please login to confirm introduction."
+msgstr "Prosím přihlašte se k potvrzení žádosti o propojení."
 
-#: ../../view/theme/diabook/theme.php:486
-#: ../../view/theme/diabook/theme.php:631
-#: ../../view/theme/diabook/config.php:165
-msgid "Last photos"
-msgstr "Poslední fotografie"
+#: ../../mod/dfrn_request.php:659
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Jste přihlášeni pod nesprávnou identitou  Prosím, přihlaste se do <strong>tohoto</strong> profilu."
 
-#: ../../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 "Fotogalerie kontaktu"
+#: ../../mod/dfrn_request.php:670
+msgid "Hide this contact"
+msgstr "Skrýt tento kontakt"
 
-#: ../../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:334
-#: ../../include/user.php:341 ../../include/user.php:348
-msgid "Profile Photos"
-msgstr "Profilové fotografie"
+#: ../../mod/dfrn_request.php:673
+#, php-format
+msgid "Welcome home %s."
+msgstr "Vítejte doma %s."
 
-#: ../../view/theme/diabook/theme.php:523
-#: ../../view/theme/diabook/theme.php:629
-#: ../../view/theme/diabook/config.php:163
-msgid "Find Friends"
-msgstr "Nalézt Přátele"
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Prosím potvrďte Vaši žádost o propojení %s."
 
-#: ../../view/theme/diabook/theme.php:524
-msgid "Local Directory"
-msgstr "Lokální Adresář"
+#: ../../mod/dfrn_request.php:675
+msgid "Confirm"
+msgstr "Potvrdit"
 
-#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:49
-msgid "Global Directory"
-msgstr "Globální adresář"
+#: ../../mod/dfrn_request.php:716 ../../include/items.php:3703
+msgid "[Name Withheld]"
+msgstr "[Jméno odepřeno]"
 
-#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35
-msgid "Similar Interests"
-msgstr "Podobné zájmy"
+#: ../../mod/dfrn_request.php:761 ../../mod/photos.php:918
+#: ../../mod/videos.php:115 ../../mod/search.php:89 ../../mod/display.php:19
+#: ../../mod/community.php:18 ../../mod/viewcontacts.php:17
+#: ../../mod/directory.php:31
+msgid "Public access denied."
+msgstr "Veřejný přístup odepřen."
 
-#: ../../view/theme/diabook/theme.php:527 ../../mod/suggest.php:66
-#: ../../include/contact_widgets.php:34
-msgid "Friend Suggestions"
-msgstr "Návrhy přátel"
+#: ../../mod/dfrn_request.php:811
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Prosím zadejte Vaši adresu identity jedné z následujících podporovaných komunikačních sítí:"
 
-#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37
-msgid "Invite Friends"
-msgstr "Pozvat přátele"
+#: ../../mod/dfrn_request.php:827
+msgid "<strike>Connect as an email follower</strike> (Coming soon)"
+msgstr "<strike>Připojte se jako emailový následovník</strike> (Již brzy)"
 
-#: ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22
-#: ../../mod/admin.php:1004 ../../mod/admin.php:1212 ../../mod/settings.php:79
-#: ../../mod/uexport.php:48 ../../include/nav.php:167
-msgid "Settings"
-msgstr "Nastavení"
+#: ../../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 "Pokud ještě nejste členem svobodné sociální sítě, <a href=\"http://dir.friendica.com/siteinfo\">následujte tento odkaz k nalezení veřejného Friendica serveru a přidejte se k nám ještě dnes</a>."
 
-#: ../../view/theme/diabook/theme.php:579
-#: ../../view/theme/diabook/theme.php:625
-#: ../../view/theme/diabook/config.php:159
-msgid "Earth Layers"
-msgstr "Earth Layers"
-
-#: ../../view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
-msgstr "Nastavit faktor přiblížení pro Earth Layers"
+#: ../../mod/dfrn_request.php:832
+msgid "Friend/Connection Request"
+msgstr "Požadavek o přátelství / kontaktování"
 
-#: ../../view/theme/diabook/theme.php:585
-#: ../../view/theme/diabook/config.php:156
-msgid "Set longitude (X) for Earth Layers"
-msgstr "Nastavit zeměpistnou délku (X) pro Earth Layers"
+#: ../../mod/dfrn_request.php:833
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
 
-#: ../../view/theme/diabook/theme.php:586
-#: ../../view/theme/diabook/config.php:157
-msgid "Set latitude (Y) for Earth Layers"
-msgstr "Nastavit zeměpistnou šířku (X) pro Earth Layers"
+#: ../../mod/dfrn_request.php:834
+msgid "Please answer the following:"
+msgstr "Odpovězte, prosím, následující:"
 
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:627
-#: ../../view/theme/diabook/config.php:161
-msgid "Help or @NewHere ?"
-msgstr "Pomoc nebo @ProNováčky ?"
+#: ../../mod/dfrn_request.php:835
+#, php-format
+msgid "Does %s know you?"
+msgstr "Zná Vás uživatel %s ?"
 
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:628
-#: ../../view/theme/diabook/config.php:162
-msgid "Connect Services"
-msgstr "Propojené služby"
+#: ../../mod/dfrn_request.php:836 ../../mod/message.php:209
+#: ../../mod/api.php:105 ../../mod/register.php:243 ../../mod/contacts.php:326
+#: ../../mod/settings.php:1001 ../../mod/settings.php:1007
+#: ../../mod/settings.php:1015 ../../mod/settings.php:1019
+#: ../../mod/settings.php:1024 ../../mod/settings.php:1030
+#: ../../mod/settings.php:1036 ../../mod/settings.php:1042
+#: ../../mod/settings.php:1072 ../../mod/settings.php:1073
+#: ../../mod/settings.php:1074 ../../mod/settings.php:1075
+#: ../../mod/settings.php:1076 ../../mod/profiles.php:614
+#: ../../mod/suggest.php:29 ../../include/items.php:4235
+msgid "Yes"
+msgstr "Ano"
 
-#: ../../view/theme/diabook/theme.php:622
-msgid "Show/hide boxes at right-hand column:"
-msgstr "Zobrazit/skrýt boxy na pravém sloupci:"
+#: ../../mod/dfrn_request.php:837 ../../mod/api.php:106
+#: ../../mod/register.php:244 ../../mod/settings.php:1001
+#: ../../mod/settings.php:1007 ../../mod/settings.php:1015
+#: ../../mod/settings.php:1019 ../../mod/settings.php:1024
+#: ../../mod/settings.php:1030 ../../mod/settings.php:1036
+#: ../../mod/settings.php:1042 ../../mod/settings.php:1072
+#: ../../mod/settings.php:1073 ../../mod/settings.php:1074
+#: ../../mod/settings.php:1075 ../../mod/settings.php:1076
+#: ../../mod/profiles.php:615
+msgid "No"
+msgstr "Ne"
 
-#: ../../view/theme/diabook/config.php:154
-msgid "Set color scheme"
-msgstr "Nastavení barevného schematu"
+#: ../../mod/dfrn_request.php:838
+msgid "Add a personal note:"
+msgstr "Přidat osobní poznámku:"
 
-#: ../../view/theme/diabook/config.php:155
-msgid "Set zoomfactor for Earth Layer"
-msgstr "Nastavit přiblížení pro Earth Layer"
+#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Zarovnání"
+#: ../../mod/dfrn_request.php:841
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet / Federativní Sociální Web"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Vlevo"
+#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:731
+#: ../../include/contact_selectors.php:80
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Uprostřed"
+#: ../../mod/dfrn_request.php:843
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - prosím nepoužívejte tento formulář.  Místo toho zadejte %s do Vašeho Diaspora vyhledávacího pole."
 
-#: ../../view/theme/quattro/config.php:68 ../../view/theme/clean/config.php:76
-#: ../../view/theme/cleanzero/config.php:86
-msgid "Color scheme"
-msgstr "Barevné schéma"
+#: ../../mod/dfrn_request.php:844
+msgid "Your Identity Address:"
+msgstr "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\"."
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "Velikost písma u příspěvků"
+#: ../../mod/dfrn_request.php:847
+msgid "Submit Request"
+msgstr "Odeslat žádost"
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr "Velikost písma textů"
+#: ../../mod/dfrn_request.php:848 ../../mod/message.php:212
+#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../mod/photos.php:203
+#: ../../mod/photos.php:292 ../../mod/contacts.php:329 ../../mod/tagrm.php:11
+#: ../../mod/tagrm.php:94 ../../mod/settings.php:610
+#: ../../mod/settings.php:636 ../../mod/suggest.php:32
+#: ../../include/items.php:4238 ../../include/conversation.php:1127
+msgid "Cancel"
+msgstr "Zrušit"
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Nastavit barevné schéma"
+#: ../../mod/files.php:156 ../../mod/videos.php:301
+#: ../../include/text.php:1400
+msgid "View Video"
+msgstr "Zobrazit video"
 
-#: ../../view/theme/clean/config.php:54 ../../include/user.php:246
-#: ../../include/text.php:1658
-msgid "default"
-msgstr "standardní"
+#: ../../mod/profile.php:21 ../../boot.php:1353
+msgid "Requested profile is not available."
+msgstr "Požadovaný profil není k dispozici."
 
-#: ../../view/theme/clean/config.php:74
-msgid "Background Image"
-msgstr "Obrázek pozadí"
+#: ../../mod/profile.php:155 ../../mod/display.php:99
+msgid "Access to this profile has been restricted."
+msgstr "Přístup na tento profil byl omezen."
 
-#: ../../view/theme/clean/config.php:74
-msgid ""
-"The URL to a picture (e.g. from your photo album) that should be used as "
-"background image."
-msgstr "URL odkaz na obrázek (např. z Vašeho foto alba), který bude použit jako obrázek na pozadí."
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Tipy pro nové členy"
 
-#: ../../view/theme/clean/config.php:75
-msgid "Background Color"
-msgstr "Barva pozadí"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Neplatný identifikátor požadavku."
 
-#: ../../view/theme/clean/config.php:75
-msgid "HEX value for the background color. Don't include the #"
-msgstr "HEXadecimální hodnota barvy pozadí. Nevkládejte znak #"
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:211
+msgid "Discard"
+msgstr "Odstranit"
 
-#: ../../view/theme/clean/config.php:77
-msgid "font size"
-msgstr "velikost fondu"
+#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
+#: ../../mod/notifications.php:210 ../../mod/contacts.php:437
+#: ../../mod/contacts.php:491 ../../mod/contacts.php:701
+msgid "Ignore"
+msgstr "Ignorovat"
 
-#: ../../view/theme/clean/config.php:77
-msgid "base font size for your interface"
-msgstr "základní velikost fontu"
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "Systém"
 
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr "Nastavit velikost fotek v přízpěvcích a komentářích (šířka a výška)"
+#: ../../mod/notifications.php:83 ../../include/nav.php:142
+msgid "Network"
+msgstr "Síť"
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Nastavení šířku grafické šablony"
+#: ../../mod/notifications.php:88 ../../mod/network.php:365
+msgid "Personal"
+msgstr "Osobní"
 
-#: ../../boot.php:684
-msgid "Delete this item?"
-msgstr "Odstranit tuto položku?"
+#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:123
+#: ../../include/nav.php:104 ../../include/nav.php:145
+msgid "Home"
+msgstr "Domů"
 
-#: ../../boot.php:687
-msgid "show fewer"
-msgstr "zobrazit méně"
+#: ../../mod/notifications.php:98 ../../include/nav.php:151
+msgid "Introductions"
+msgstr "Představení"
 
-#: ../../boot.php:1015
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "Aktualizace %s selhala. Zkontrolujte protokol chyb."
+#: ../../mod/notifications.php:103 ../../mod/message.php:182
+#: ../../include/nav.php:158
+msgid "Messages"
+msgstr "Zprávy"
 
-#: ../../boot.php:1017
-#, php-format
-msgid "Update Error at %s"
-msgstr "Chyba aktualizace na %s"
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Zobrazit ignorované žádosti"
 
-#: ../../boot.php:1127
-msgid "Create a New Account"
-msgstr "Vytvořit nový účet"
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Skrýt ignorované žádosti"
 
-#: ../../boot.php:1128 ../../mod/register.php:278 ../../include/nav.php:108
-msgid "Register"
-msgstr "Registrovat"
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
+msgid "Notification type: "
+msgstr "Typ oznámení: "
 
-#: ../../boot.php:1152 ../../include/nav.php:73
-msgid "Logout"
-msgstr "Odhlásit se"
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Návrh přátelství"
 
-#: ../../boot.php:1153 ../../include/nav.php:91
-msgid "Login"
-msgstr "Přihlásit se"
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
+msgstr "navrhl %s"
 
-#: ../../boot.php:1155
-msgid "Nickname or Email address: "
-msgstr "Přezdívka nebo e-mailová adresa:"
+#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
+#: ../../mod/contacts.php:497
+msgid "Hide this contact from others"
+msgstr "Skrýt tento kontakt před ostatními"
 
-#: ../../boot.php:1156
-msgid "Password: "
-msgstr "Heslo: "
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "Post a new friend activity"
+msgstr "Zveřejnit aktivitu nového přítele."
 
-#: ../../boot.php:1157
-msgid "Remember me"
-msgstr "Pamatuj si mne"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "if applicable"
+msgstr "je-li použitelné"
 
-#: ../../boot.php:1160
-msgid "Or login using OpenID: "
-msgstr "Nebo přihlášení pomocí OpenID: "
+#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
+#: ../../mod/admin.php:908
+msgid "Approve"
+msgstr "Schválit"
 
-#: ../../boot.php:1166
-msgid "Forgot your password?"
-msgstr "Zapomněli jste své heslo?"
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Vaši údajní známí: "
 
-#: ../../boot.php:1167 ../../mod/lostpass.php:84
-msgid "Password Reset"
-msgstr "Obnovení hesla"
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "ano"
 
-#: ../../boot.php:1169
-msgid "Website Terms of Service"
-msgstr "Podmínky použití serveru"
+#: ../../mod/notifications.php:181
+msgid "no"
+msgstr "ne"
 
-#: ../../boot.php:1170
-msgid "terms of service"
-msgstr "podmínky použití"
+#: ../../mod/notifications.php:188
+msgid "Approve as: "
+msgstr "Schválit jako: "
 
-#: ../../boot.php:1172
-msgid "Website Privacy Policy"
-msgstr "Pravidla ochrany soukromí serveru"
+#: ../../mod/notifications.php:189
+msgid "Friend"
+msgstr "Přítel"
 
-#: ../../boot.php:1173
-msgid "privacy policy"
-msgstr "Ochrana soukromí"
+#: ../../mod/notifications.php:190
+msgid "Sharer"
+msgstr "Sdílené"
 
-#: ../../boot.php:1302
-msgid "Requested account is not available."
-msgstr "Požadovaný účet není dostupný."
+#: ../../mod/notifications.php:190
+msgid "Fan/Admirer"
+msgstr "Fanoušek / obdivovatel"
 
-#: ../../boot.php:1341 ../../mod/profile.php:21
-msgid "Requested profile is not available."
-msgstr "Požadovaný profil není k dispozici."
+#: ../../mod/notifications.php:196
+msgid "Friend/Connect Request"
+msgstr "Přítel / žádost o připojení"
 
-#: ../../boot.php:1381 ../../boot.php:1485
-msgid "Edit profile"
-msgstr "Upravit profil"
+#: ../../mod/notifications.php:196
+msgid "New Follower"
+msgstr "Nový následovník"
 
-#: ../../boot.php:1433 ../../mod/suggest.php:88 ../../mod/match.php:58
-#: ../../include/contact_widgets.php:9
-msgid "Connect"
-msgstr "Spojit"
+#: ../../mod/notifications.php:217
+msgid "No introductions."
+msgstr "Žádné představení."
 
-#: ../../boot.php:1447
-msgid "Message"
-msgstr "Zpráva"
+#: ../../mod/notifications.php:220 ../../include/nav.php:152
+msgid "Notifications"
+msgstr "Upozornění"
 
-#: ../../boot.php:1455 ../../include/nav.php:169
-msgid "Profiles"
-msgstr "Profily"
+#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
+#: ../../mod/notifications.php:469
+#, php-format
+msgid "%s liked %s's post"
+msgstr "Uživateli %s se líbí příspěvek uživatele %s"
 
-#: ../../boot.php:1455
-msgid "Manage/edit profiles"
-msgstr "Spravovat/upravit profily"
+#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
+#: ../../mod/notifications.php:478
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "Uživateli %s se nelíbí příspěvek uživatele %s"
 
-#: ../../boot.php:1461 ../../boot.php:1487 ../../mod/profiles.php:726
-msgid "Change profile photo"
-msgstr "Změnit profilovou fotografii"
+#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
+#: ../../mod/notifications.php:492
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s se nyní přátelí s %s"
 
-#: ../../boot.php:1462 ../../mod/profiles.php:727
-msgid "Create New Profile"
-msgstr "Vytvořit nový profil"
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
+#, php-format
+msgid "%s created a new post"
+msgstr "%s vytvořil nový příspěvek"
 
-#: ../../boot.php:1472 ../../mod/profiles.php:738
-msgid "Profile Image"
-msgstr "Profilový obrázek"
+#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
+#: ../../mod/notifications.php:501
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s okomentoval příspěvek uživatele %s'"
 
-#: ../../boot.php:1475 ../../mod/profiles.php:740
-msgid "visible to everybody"
-msgstr "viditelné pro všechny"
+#: ../../mod/notifications.php:302
+msgid "No more network notifications."
+msgstr "Žádné další síťové upozornění."
 
-#: ../../boot.php:1476 ../../mod/profiles.php:741
-msgid "Edit visibility"
-msgstr "Upravit viditelnost"
+#: ../../mod/notifications.php:306
+msgid "Network Notifications"
+msgstr "Upozornění Sítě"
 
-#: ../../boot.php:1501 ../../mod/directory.php:134 ../../mod/events.php:471
-#: ../../include/event.php:40 ../../include/bb2diaspora.php:415
-msgid "Location:"
-msgstr "Místo:"
+#: ../../mod/notifications.php:332 ../../mod/notify.php:61
+msgid "No more system notifications."
+msgstr "Žádné další systémová upozornění."
 
-#: ../../boot.php:1503 ../../mod/directory.php:136
-#: ../../include/profile_advanced.php:17
-msgid "Gender:"
-msgstr "Pohlaví:"
+#: ../../mod/notifications.php:336 ../../mod/notify.php:65
+msgid "System Notifications"
+msgstr "Systémová upozornění"
 
-#: ../../boot.php:1506 ../../mod/directory.php:138
-#: ../../include/profile_advanced.php:37
-msgid "Status:"
-msgstr "Status:"
+#: ../../mod/notifications.php:427
+msgid "No more personal notifications."
+msgstr "Žádné další osobní upozornění."
 
-#: ../../boot.php:1508 ../../mod/directory.php:140
-#: ../../include/profile_advanced.php:48
-msgid "Homepage:"
-msgstr "Domácí stránka:"
+#: ../../mod/notifications.php:431
+msgid "Personal Notifications"
+msgstr "Osobní upozornění"
 
-#: ../../boot.php:1584 ../../boot.php:1670
-msgid "g A l F d"
-msgstr "g A l F d"
+#: ../../mod/notifications.php:508
+msgid "No more home notifications."
+msgstr "Žádné další domácí upozornění."
 
-#: ../../boot.php:1585 ../../boot.php:1671
-msgid "F d"
-msgstr "d. F"
+#: ../../mod/notifications.php:512
+msgid "Home Notifications"
+msgstr "Domácí upozornění"
 
-#: ../../boot.php:1630 ../../boot.php:1711
-msgid "[today]"
-msgstr "[Dnes]"
+#: ../../mod/like.php:150 ../../mod/tagger.php:62 ../../mod/subthread.php:87
+#: ../../view/theme/diabook/theme.php:471 ../../include/text.php:1955
+#: ../../include/diaspora.php:1908 ../../include/conversation.php:126
+#: ../../include/conversation.php:254
+msgid "photo"
+msgstr "fotografie"
 
-#: ../../boot.php:1642
-msgid "Birthday Reminders"
-msgstr "Připomínka narozenin"
+#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/tagger.php:62
+#: ../../mod/subthread.php:87 ../../view/theme/diabook/theme.php:466
+#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:1908
+#: ../../include/conversation.php:121 ../../include/conversation.php:130
+#: ../../include/conversation.php:249 ../../include/conversation.php:258
+msgid "status"
+msgstr "Stav"
 
-#: ../../boot.php:1643
-msgid "Birthdays this week:"
-msgstr "Narozeniny tento týden:"
+#: ../../mod/like.php:167 ../../view/theme/diabook/theme.php:480
+#: ../../include/diaspora.php:1924 ../../include/conversation.php:137
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s má rád %2$s' na %3$s"
 
-#: ../../boot.php:1704
-msgid "[No description]"
-msgstr "[Žádný popis]"
+#: ../../mod/like.php:169 ../../include/conversation.php:140
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s nemá rád %2$s na %3$s"
 
-#: ../../boot.php:1722
-msgid "Event Reminders"
-msgstr "Připomenutí událostí"
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "Chyba OpenID protokolu. Navrátilo se žádné ID."
 
-#: ../../boot.php:1723
-msgid "Events this week:"
-msgstr "Události tohoto týdne:"
+#: ../../mod/openid.php:53
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Nenalezen účet a OpenID registrace na tomto serveru není dovolena."
 
-#: ../../boot.php:1960 ../../include/nav.php:76
-msgid "Status"
-msgstr "Stav"
+#: ../../mod/openid.php:93 ../../include/auth.php:112
+#: ../../include/auth.php:175
+msgid "Login failed."
+msgstr "Přihlášení se nezdařilo."
 
-#: ../../boot.php:1963
-msgid "Status Messages and Posts"
-msgstr "Statusové zprávy a příspěvky "
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Zdrojový text (bbcode):"
 
-#: ../../boot.php:1970
-msgid "Profile Details"
-msgstr "Detaily profilu"
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Zdrojový (Diaspora) text k převedení do BB kódování:"
 
-#: ../../boot.php:1977 ../../mod/photos.php:51
-msgid "Photo Albums"
-msgstr "Fotoalba"
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "Zdrojový vstup: "
 
-#: ../../boot.php:1981 ../../boot.php:1984
-msgid "Videos"
-msgstr "Videa"
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (raw HTML): "
 
-#: ../../boot.php:1994
-msgid "Events and Calendar"
-msgstr "Události a kalendář"
+#: ../../mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html: "
 
-#: ../../boot.php:1998 ../../mod/notes.php:44
-msgid "Personal Notes"
-msgstr "Osobní poznámky"
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
 
-#: ../../boot.php:2001
-msgid "Only You Can See This"
-msgstr "Toto můžete vidět jen Vy"
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
 
-#: ../../mod/mood.php:62 ../../include/conversation.php:227
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s je právě %2$s"
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
 
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr "Nálada"
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr "Nastavte svou aktuální náladu a řekněte to Vašim přátelům"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
 
-#: ../../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 "Veřejný přístup odepřen."
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Vstupní data (ve formátu Diaspora): "
 
-#: ../../mod/display.php:51 ../../mod/display.php:246 ../../mod/decrypt.php:15
-#: ../../mod/admin.php:163 ../../mod/admin.php:952 ../../mod/admin.php:1152
-#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15
-#: ../../include/items.php:4023
-msgid "Item not found."
-msgstr "Položka nenalezena."
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
 
-#: ../../mod/display.php:99 ../../mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "Přístup na tento profil byl omezen."
+#: ../../mod/admin.php:55
+msgid "Theme settings updated."
+msgstr "Nastavení téma zobrazení bylo aktualizováno."
 
-#: ../../mod/display.php:239
-msgid "Item has been removed."
-msgstr "Položka byla odstraněna."
+#: ../../mod/admin.php:102 ../../mod/admin.php:573
+msgid "Site"
+msgstr "Web"
 
-#: ../../mod/decrypt.php:9 ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Přístup odmítnut"
+#: ../../mod/admin.php:103 ../../mod/admin.php:901 ../../mod/admin.php:916
+msgid "Users"
+msgstr "Uživatelé"
 
-#: ../../mod/friendica.php:58
-msgid "This is Friendica, version"
-msgstr "Toto je Friendica, verze"
+#: ../../mod/admin.php:104 ../../mod/admin.php:1005 ../../mod/admin.php:1058
+#: ../../mod/settings.php:57
+msgid "Plugins"
+msgstr "Pluginy"
 
-#: ../../mod/friendica.php:59
-msgid "running at web location"
-msgstr "běžící na webu"
+#: ../../mod/admin.php:105 ../../mod/admin.php:1224 ../../mod/admin.php:1258
+msgid "Themes"
+msgstr "Témata"
 
-#: ../../mod/friendica.php:61
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Pro získání dalších informací o projektu Friendica navštivte prosím <a href=\"http://friendica.com\">Friendica.com</a>."
+#: ../../mod/admin.php:106
+msgid "DB updates"
+msgstr "Aktualizace databáze"
 
-#: ../../mod/friendica.php:63
-msgid "Bug reports and issues: please visit"
-msgstr "Pro hlášení chyb a námětů na změny navštivte:"
+#: ../../mod/admin.php:121 ../../mod/admin.php:128 ../../mod/admin.php:1345
+msgid "Logs"
+msgstr "Logy"
 
-#: ../../mod/friendica.php:64
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Návrhy, chválu, dary, apod. - prosím piště na \"info\" na Friendica - tečka com"
+#: ../../mod/admin.php:126 ../../include/nav.php:180
+msgid "Admin"
+msgstr "Administrace"
 
-#: ../../mod/friendica.php:78
-msgid "Installed plugins/addons/apps:"
-msgstr "Instalované pluginy/doplňky/aplikace:"
+#: ../../mod/admin.php:127
+msgid "Plugin Features"
+msgstr "Funkčnosti rozšíření"
 
-#: ../../mod/friendica.php:91
-msgid "No installed plugins/addons/apps"
-msgstr "Nejsou žádné nainstalované doplňky/aplikace"
+#: ../../mod/admin.php:129
+msgid "User registrations waiting for confirmation"
+msgstr "Registrace uživatele čeká na potvrzení"
 
-#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s vítá %2$s"
+#: ../../mod/admin.php:164 ../../mod/admin.php:955 ../../mod/admin.php:1166
+#: ../../mod/notice.php:15 ../../mod/display.php:51 ../../mod/display.php:270
+#: ../../mod/viewsrc.php:15 ../../include/items.php:4194
+msgid "Item not found."
+msgstr "Položka nenalezena."
 
-#: ../../mod/register.php:91 ../../mod/admin.php:734 ../../mod/regmod.php:54
-#, php-format
-msgid "Registration details for %s"
-msgstr "Registrační údaje pro %s"
+#: ../../mod/admin.php:188 ../../mod/admin.php:855
+msgid "Normal Account"
+msgstr "Normální účet"
 
-#: ../../mod/register.php:99
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce."
+#: ../../mod/admin.php:189 ../../mod/admin.php:856
+msgid "Soapbox Account"
+msgstr "Soapbox účet"
 
-#: ../../mod/register.php:103
-msgid "Failed to send email message. Here is the message that failed."
-msgstr "Nepodařilo se odeslat zprávu na e-mail. Zde je zpráva, která nebyla odeslána."
+#: ../../mod/admin.php:190 ../../mod/admin.php:857
+msgid "Community/Celebrity Account"
+msgstr "Komunitní účet / Účet celebrity"
 
-#: ../../mod/register.php:108
-msgid "Your registration can not be processed."
-msgstr "Vaši registraci nelze zpracovat."
+#: ../../mod/admin.php:191 ../../mod/admin.php:858
+msgid "Automatic Friend Account"
+msgstr "Účet s automatickým schvalováním přátel"
 
-#: ../../mod/register.php:148
-#, php-format
-msgid "Registration request at %s"
-msgstr "Žádost o registraci na %s"
+#: ../../mod/admin.php:192
+msgid "Blog Account"
+msgstr "Účet Blogu"
 
-#: ../../mod/register.php:157
-msgid "Your registration is pending approval by the site owner."
-msgstr "Vaše registrace čeká na schválení vlastníkem serveru."
+#: ../../mod/admin.php:193
+msgid "Private Forum"
+msgstr "Soukromé fórum"
 
-#: ../../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 "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to  zítra znovu."
+#: ../../mod/admin.php:212
+msgid "Message queues"
+msgstr "Fronty zpráv"
 
-#: ../../mod/register.php:223
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknutete na tlačítko 'Zaregistrovat'."
+#: ../../mod/admin.php:217 ../../mod/admin.php:572 ../../mod/admin.php:900
+#: ../../mod/admin.php:1004 ../../mod/admin.php:1057 ../../mod/admin.php:1223
+#: ../../mod/admin.php:1257 ../../mod/admin.php:1344
+msgid "Administration"
+msgstr "Administrace"
 
-#: ../../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 "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky."
+#: ../../mod/admin.php:218
+msgid "Summary"
+msgstr "Shrnutí"
 
-#: ../../mod/register.php:225
-msgid "Your OpenID (optional): "
-msgstr "Vaše OpenID (nepovinné): "
+#: ../../mod/admin.php:220
+msgid "Registered users"
+msgstr "Registrovaní uživatelé"
 
-#: ../../mod/register.php:239
-msgid "Include your profile in member directory?"
-msgstr "Toto je Váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu."
+#: ../../mod/admin.php:222
+msgid "Pending registrations"
+msgstr "Čekající registrace"
 
-#: ../../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 "Ano"
+#: ../../mod/admin.php:223
+msgid "Version"
+msgstr "Verze"
 
-#: ../../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 "Ne"
+#: ../../mod/admin.php:225
+msgid "Active plugins"
+msgstr "Aktivní pluginy"
 
-#: ../../mod/register.php:260
-msgid "Membership on this site is by invitation only."
-msgstr "Členství na tomto webu je pouze na pozvání."
+#: ../../mod/admin.php:248
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň <schéma>://<doméma>"
 
-#: ../../mod/register.php:261
-msgid "Your invitation ID: "
-msgstr "Vaše pozvání ID:"
+#: ../../mod/admin.php:485
+msgid "Site settings updated."
+msgstr "Nastavení webu aktualizováno."
 
-#: ../../mod/register.php:264 ../../mod/admin.php:572
-msgid "Registration"
-msgstr "Registrace"
+#: ../../mod/admin.php:514 ../../mod/settings.php:823
+msgid "No special theme for mobile devices"
+msgstr "žádné speciální téma pro mobilní zařízení"
 
-#: ../../mod/register.php:272
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Vaše celé jméno (např. Jan Novák):"
+#: ../../mod/admin.php:531 ../../mod/contacts.php:408
+msgid "Never"
+msgstr "Nikdy"
 
-#: ../../mod/register.php:273
-msgid "Your Email Address: "
-msgstr "Vaše e-mailová adresa:"
+#: ../../mod/admin.php:532
+msgid "At post arrival"
+msgstr "Při obdržení příspěvku"
 
-#: ../../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 "Vyberte přezdívku k profilu. Ta musí začít s textovým znakem. Vaše profilová adresa na tomto webu pak bude \"<strong>přezdívka@$sitename</strong>\"."
+#: ../../mod/admin.php:533 ../../include/contact_selectors.php:56
+msgid "Frequently"
+msgstr "Často"
 
-#: ../../mod/register.php:275
-msgid "Choose a nickname: "
-msgstr "Vyberte přezdívku:"
+#: ../../mod/admin.php:534 ../../include/contact_selectors.php:57
+msgid "Hourly"
+msgstr "každou hodinu"
 
-#: ../../mod/register.php:284 ../../mod/uimport.php:64
-msgid "Import"
-msgstr "Import"
+#: ../../mod/admin.php:535 ../../include/contact_selectors.php:58
+msgid "Twice daily"
+msgstr "Dvakrát denně"
 
-#: ../../mod/register.php:285
-msgid "Import your profile to this friendica instance"
-msgstr "Import Vašeho profilu do této friendica instance"
+#: ../../mod/admin.php:536 ../../include/contact_selectors.php:59
+msgid "Daily"
+msgstr "denně"
 
-#: ../../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 "Profil nenalezen"
+#: ../../mod/admin.php:541
+msgid "Multi user instance"
+msgstr "Více uživatelská instance"
 
-#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131
-#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
-msgid "Contact not found."
-msgstr "Kontakt nenalezen."
+#: ../../mod/admin.php:559
+msgid "Closed"
+msgstr "Uzavřeno"
 
-#: ../../mod/dfrn_confirm.php:119
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "To se může občas stát pokud kontakt byl zažádán oběma osobami a již byl schválen."
+#: ../../mod/admin.php:560
+msgid "Requires approval"
+msgstr "Vyžaduje schválení"
 
-#: ../../mod/dfrn_confirm.php:237
-msgid "Response from remote site was not understood."
-msgstr "Odpověď ze vzdáleného serveru nebyla srozumitelná."
+#: ../../mod/admin.php:561
+msgid "Open"
+msgstr "Otevřená"
 
-#: ../../mod/dfrn_confirm.php:246
-msgid "Unexpected response from remote site: "
-msgstr "Neočekávaná odpověď od vzdáleného serveru:"
+#: ../../mod/admin.php:565
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Žádná SSL politika, odkazy budou následovat stránky SSL stav"
 
-#: ../../mod/dfrn_confirm.php:254
-msgid "Confirmation completed successfully."
-msgstr "Potvrzení úspěšně dokončena."
+#: ../../mod/admin.php:566
+msgid "Force all links to use SSL"
+msgstr "Vyžadovat u všech odkazů použití SSL"
 
-#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
-#: ../../mod/dfrn_confirm.php:277
-msgid "Remote site reported: "
-msgstr "Vzdálený server oznámil:"
+#: ../../mod/admin.php:567
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Certifikát podepsaný sám sebou, použít SSL pouze pro lokální odkazy (nedoporučeno)"
 
-#: ../../mod/dfrn_confirm.php:268
-msgid "Temporary failure. Please wait and try again."
-msgstr "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu."
+#: ../../mod/admin.php:574 ../../mod/admin.php:1059 ../../mod/admin.php:1259
+#: ../../mod/admin.php:1346 ../../mod/settings.php:609
+#: ../../mod/settings.php:719 ../../mod/settings.php:793
+#: ../../mod/settings.php:872 ../../mod/settings.php:1104
+msgid "Save Settings"
+msgstr "Uložit Nastavení"
 
-#: ../../mod/dfrn_confirm.php:275
-msgid "Introduction failed or was revoked."
-msgstr "Žádost o propojení selhala nebo byla zrušena."
+#: ../../mod/admin.php:575 ../../mod/register.php:265
+msgid "Registration"
+msgstr "Registrace"
 
-#: ../../mod/dfrn_confirm.php:420
-msgid "Unable to set contact photo."
-msgstr "Nelze nastavit fotografii kontaktu."
+#: ../../mod/admin.php:576
+msgid "File upload"
+msgstr "Nahrání souborů"
 
-#: ../../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 je nyní přítel s %2$s"
+#: ../../mod/admin.php:577
+msgid "Policies"
+msgstr "Politiky"
 
-#: ../../mod/dfrn_confirm.php:562
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Pro '%s' nenalezen žádný uživatelský záznam "
+#: ../../mod/admin.php:578
+msgid "Advanced"
+msgstr "Pokročilé"
 
-#: ../../mod/dfrn_confirm.php:572
-msgid "Our site encryption key is apparently messed up."
-msgstr "Náš šifrovací klíč zřejmě přestal správně fungovat."
+#: ../../mod/admin.php:579
+msgid "Performance"
+msgstr "Výkonnost"
 
-#: ../../mod/dfrn_confirm.php:583
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "Byla poskytnuta prázdná URL adresa nebo se nepodařilo URL adresu dešifrovat."
+#: ../../mod/admin.php:580
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Změna umístění - Varování: pokročilá funkčnost. Tímto můžete znepřístupnit server."
 
-#: ../../mod/dfrn_confirm.php:604
-msgid "Contact record was not found for you on our site."
-msgstr "Kontakt záznam nebyl nalezen pro vás na našich stránkách."
+#: ../../mod/admin.php:583
+msgid "Site name"
+msgstr "Název webu"
 
-#: ../../mod/dfrn_confirm.php:618
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "V adresáři není k dispozici veřejný klíč pro URL %s."
+#: ../../mod/admin.php:584
+msgid "Banner/Logo"
+msgstr "Banner/logo"
 
-#: ../../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 "Váš systém poskytl duplicitní ID vůči našemu systému. Pokuste se akci zopakovat."
+#: ../../mod/admin.php:585
+msgid "Additional Info"
+msgstr "Dodatečné informace"
 
-#: ../../mod/dfrn_confirm.php:649
-msgid "Unable to set your contact credentials on our system."
-msgstr "Nelze nastavit Vaše přihlašovací údaje v našem systému."
+#: ../../mod/admin.php:585
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at dir.friendica.com/siteinfo."
+msgstr "Pro veřejné servery: zde můžete doplnit dodatečné informace, které budou uvedeny v seznamu na dir.friendica.com/siteinfo."
 
-#: ../../mod/dfrn_confirm.php:716
-msgid "Unable to update your contact profile details on our system"
-msgstr "Nelze aktualizovat Váš profil v našem systému"
+#: ../../mod/admin.php:586
+msgid "System language"
+msgstr "Systémový jazyk"
 
-#: ../../mod/dfrn_confirm.php:751
-#, php-format
-msgid "Connection accepted at %s"
-msgstr "Připojení přijato na %s"
+#: ../../mod/admin.php:587
+msgid "System theme"
+msgstr "Grafická šablona systému "
 
-#: ../../mod/dfrn_confirm.php:800
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s se připojil k %2$s"
+#: ../../mod/admin.php:587
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Defaultní systémové téma - může být změněno v uživatelských profilech - <a href='#' id='cnftheme'> změnit  theme settings</a>"
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Povolit připojení aplikacím"
+#: ../../mod/admin.php:588
+msgid "Mobile system theme"
+msgstr "Systémové téma zobrazení pro mobilní zařízení"
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Vraťte se do vaší aplikace a zadejte tento bezpečnostní kód:"
+#: ../../mod/admin.php:588
+msgid "Theme for mobile devices"
+msgstr "Téma zobrazení pro mobilní zařízení"
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Pro pokračování se prosím přihlaste."
+#: ../../mod/admin.php:589
+msgid "SSL link policy"
+msgstr "Politika SSL odkazů"
 
-#: ../../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 "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?"
+#: ../../mod/admin.php:589
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Určuje, zda-li budou generované odkazy používat SSL"
 
-#: ../../mod/lostpass.php:17
-msgid "No valid account found."
-msgstr "Nenalezen žádný platný účet."
+#: ../../mod/admin.php:590
+msgid "Old style 'Share'"
+msgstr "Sdílení \"postaru\""
 
-#: ../../mod/lostpass.php:33
-msgid "Password reset request issued. Check your email."
-msgstr "Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku."
+#: ../../mod/admin.php:590
+msgid "Deactivates the bbcode element 'share' for repeating items."
+msgstr "Deaktivovat bbcode element \"share\" pro opakující se položky."
 
-#: ../../mod/lostpass.php:44
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Na %s bylo zažádáno o resetování hesla"
+#: ../../mod/admin.php:591
+msgid "Hide help entry from navigation menu"
+msgstr "skrýt nápovědu z navigačního menu"
 
-#: ../../mod/lostpass.php:66
+#: ../../mod/admin.php:591
 msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Žádost nemohla být ověřena. (Možná jste ji odeslali již dříve.) Obnovení hesla se nezdařilo."
-
-#: ../../mod/lostpass.php:85
-msgid "Your password has been reset as requested."
-msgstr "Vaše heslo bylo na Vaše přání resetováno."
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Skryje menu ze stránek Nápověda z navigačního menu. Nápovědu můžete stále zobrazit přímo zadáním /help."
 
-#: ../../mod/lostpass.php:86
-msgid "Your new password is"
-msgstr "Někdo Vám napsal na Vaši profilovou stránku"
+#: ../../mod/admin.php:592
+msgid "Single user instance"
+msgstr "Jednouživatelská instance"
 
-#: ../../mod/lostpass.php:87
-msgid "Save or copy your new password - and then"
-msgstr "Uložte si nebo zkopírujte nové heslo - a pak"
+#: ../../mod/admin.php:592
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Nastavit tuto instanci víceuživatelskou nebo jednouživatelskou pro pojmenovaného uživatele"
 
-#: ../../mod/lostpass.php:88
-msgid "click here to login"
-msgstr "klikněte zde pro přihlášení"
+#: ../../mod/admin.php:593
+msgid "Maximum image size"
+msgstr "Maximální velikost obrázků"
 
-#: ../../mod/lostpass.php:89
+#: ../../mod/admin.php:593
 msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení)."
-
-#: ../../mod/lostpass.php:107
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "Vaše heslo bylo změněno na %s"
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Maximální velikost v bajtech nahraných obrázků. Defaultní je 0, což znamená neomezeno."
 
-#: ../../mod/lostpass.php:122
-msgid "Forgot your Password?"
-msgstr "Zapomněli jste heslo?"
+#: ../../mod/admin.php:594
+msgid "Maximum image length"
+msgstr "Maximální velikost obrázků"
 
-#: ../../mod/lostpass.php:123
+#: ../../mod/admin.php:594
 msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Zadejte svůj e-mailovou adresu a odešlete žádost o zaslání Vašeho nového hesla. Poté zkontrolujte svůj e-mail pro další instrukce."
-
-#: ../../mod/lostpass.php:124
-msgid "Nickname or Email: "
-msgstr "Přezdívka nebo e-mail: "
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Maximální délka v pixelech delší stránky nahrávaných obrázků. Defaultně je -1, což označuje bez limitu"
 
-#: ../../mod/lostpass.php:125
-msgid "Reset"
-msgstr "Reset"
+#: ../../mod/admin.php:595
+msgid "JPEG image quality"
+msgstr "JPEG kvalita obrázku"
 
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena."
+#: ../../mod/admin.php:595
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "Nahrávaný JPEG bude uložen se zadanou kvalitou v rozmezí [0-100]. Defaultní je 100, což znamená plnou kvalitu."
 
-#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
-msgid "No recipient selected."
-msgstr "Nevybrán příjemce."
+#: ../../mod/admin.php:597
+msgid "Register policy"
+msgstr "Politika registrace"
 
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "Nebylo možné zjistit Vaši domácí lokaci."
+#: ../../mod/admin.php:598
+msgid "Maximum Daily Registrations"
+msgstr "Maximální počet denních registrací"
 
-#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
-msgid "Message could not be sent."
-msgstr "Zprávu se nepodařilo odeslat."
+#: ../../mod/admin.php:598
+msgid ""
+"If registration is permitted above, this sets the maximum number of new user"
+" registrations to accept per day.  If register is set to closed, this "
+"setting has no effect."
+msgstr "Pokud je registrace výše povolena, zde se nastaví maximální počet registrací nových uživatelů za den.\nPokud je registrace zakázána, toto nastavení nemá žádný efekt."
 
-#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
-msgid "Message collection failure."
-msgstr "Sběr zpráv selhal."
+#: ../../mod/admin.php:599
+msgid "Register text"
+msgstr "Registrace textu"
 
-#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
-msgid "Message sent."
-msgstr "Zpráva odeslána."
+#: ../../mod/admin.php:599
+msgid "Will be displayed prominently on the registration page."
+msgstr "Bude zřetelně zobrazeno na registrační stránce."
 
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Žádný příjemce."
+#: ../../mod/admin.php:600
+msgid "Accounts abandoned after x days"
+msgstr "Účet je opuštěn po x dnech"
 
-#: ../../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 "Zadejte prosím URL odkaz:"
+#: ../../mod/admin.php:600
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Neztrácejte systémové zdroje kontaktováním externích webů s opuštěnými účty. Zadejte 0 pro žádný časový limit."
 
-#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
-msgid "Send Private Message"
-msgstr "Odeslat soukromou zprávu"
+#: ../../mod/admin.php:601
+msgid "Allowed friend domains"
+msgstr "Povolené domény přátel"
 
-#: ../../mod/wallmessage.php:143
-#, php-format
+#: ../../mod/admin.php:601
 msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
-msgstr "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů."
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Čárkou oddělený seznam domén, kterým je povoleno navazovat přátelství s tímto webem. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu."
 
-#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
-#: ../../mod/message.php:553
-msgid "To:"
-msgstr "Adresát:"
+#: ../../mod/admin.php:602
+msgid "Allowed email domains"
+msgstr "Povolené e-mailové domény"
 
-#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
-#: ../../mod/message.php:555
-msgid "Subject:"
-msgstr "Předmět:"
+#: ../../mod/admin.php:602
+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 "Čárkou oddělený seznam domén emalových adres, kterým je povoleno provádět registraci na tomto webu. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu."
 
-#: ../../mod/wallmessage.php:151 ../../mod/message.php:329
-#: ../../mod/message.php:558 ../../mod/invite.php:134
-msgid "Your message:"
-msgstr "Vaše zpráva:"
+#: ../../mod/admin.php:603
+msgid "Block public"
+msgstr "Blokovat veřejnost"
 
-#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
-#: ../../mod/message.php:332 ../../mod/message.php:562
-#: ../../include/conversation.php:1081
-msgid "Upload photo"
-msgstr "Nahrát fotografii"
+#: ../../mod/admin.php:603
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Označemím přepínače zablokujete veřejný přístup ke všem jinak veřejně přístupným soukromým stránkám uživatelům, kteří nebudou přihlášeni."
 
-#: ../../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 "Vložit webový odkaz"
+#: ../../mod/admin.php:604
+msgid "Force publish"
+msgstr "Publikovat"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Vítejte na Friendica"
+#: ../../mod/admin.php:604
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Označením přepínače budou včechny profily na tomto webu uvedeny v adresáři webu."
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Seznam doporučení pro nového člena"
+#: ../../mod/admin.php:605
+msgid "Global directory update URL"
+msgstr "aktualizace URL adresy Globálního adresáře "
 
-#: ../../mod/newmember.php:12
+#: ../../mod/admin.php:605
 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 "Rádi bychom vám nabídli několik tipů a odkazů pro začátek. Klikněte na jakoukoliv položku pro zobrazení relevantní stránky. Odkaz na tuto stránku bude viditelný z Vaší domovské stránky po dobu dvou týdnů od Vaší první registrace."
-
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Začínáme"
+"URL to update the global directory. If this is not set, the global directory"
+" is completely unavailable to the application."
+msgstr "URL adresa k aktualizaci globálního adresáře. Pokud není zadáno, funkce globálního adresáře není dostupná žádné aplikaci."
 
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Prohlídka Friendica "
+#: ../../mod/admin.php:606
+msgid "Allow threaded items"
+msgstr "Povolit vícevláknové zpracování obsahu"
 
-#: ../../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 "Na Vaší stránce <em>Rychlý Start</em> - naleznete stručné představení k Vašemu profilu a záložce Síť, k vytvoření spojení s novými kontakty a nalezení skupin, ke kterým se můžete připojit."
+#: ../../mod/admin.php:606
+msgid "Allow infinite level threading for items on this site."
+msgstr "Povolit zpracování obsahu tohoto webu neomezeným počtem paralelních vláken."
 
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Navštivte své nastavení"
+#: ../../mod/admin.php:607
+msgid "Private posts by default for new users"
+msgstr "Nastavit pro nové uživatele příspěvky jako soukromé"
 
-#: ../../mod/newmember.php:26
+#: ../../mod/admin.php:607
 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 "Na Vaší stránce <em>Nastavení</em> - si změňte Vaše první heslo.\nVěnujte také svou pozornost k adrese identity. Vypadá jako emailová adresa a bude Vám užitečná pro navazování přátelství na svobodné sociální síti."
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Nastavit defaultní práva pro příspěvky od všech nových členů na výchozí soukromou skupinu raději než jako veřejné."
 
-#: ../../mod/newmember.php:28
+#: ../../mod/admin.php:608
+msgid "Don't include post content in email notifications"
+msgstr "Nezahrnovat obsah příspěvků v emailových upozorněních"
+
+#: ../../mod/admin.php:608
 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 "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši potenciální přátelé věděli, jak vás přesně nají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."
+msgstr " V mailových upozorněních, které jsou odesílány z tohoto webu jako soukromé zprávy, nejsou z důvodů bezpečnosti obsaženy příspěvky/komentáře/soukromé zprávy apod. "
 
-#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
-msgid "Upload Profile Photo"
-msgstr "Nahrát profilovou fotografii"
+#: ../../mod/admin.php:609
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Zakázat veřejný přístup k rozšířením uvedeným v menu aplikace."
 
-#: ../../mod/newmember.php:36
+#: ../../mod/admin.php:609
 msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make"
-" friends than people who do not."
-msgstr "Nahrajte si svou profilovou fotku, pokud jste tak již neučinili. Studie ukázaly, že lidé se skutečnými fotografiemi mají desetkrát častěji přátele než lidé, kteří nemají."
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr "Označení této volby omezí rozšíření uvedená v menu aplikace pouze pro členy."
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Editujte Váš profil"
+#: ../../mod/admin.php:610
+msgid "Don't embed private images in posts"
+msgstr "Nepovolit přidávání soukromých správ v příspěvcích"
 
-#: ../../mod/newmember.php:38
+#: ../../mod/admin.php:610
 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 "Upravit <strong>výchozí</strong> profil podle vašich představ. Prověřte nastavení pro skrytí Vašeho  seznamu přátel a skrytí profilu před neznámými návštěvníky."
+"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 "Nereplikovat lokální soukromé fotografie v příspěvcích s přidáním kopie obrázku. To znamená, že kontakty, které obdrží příspěvek obsahující soukromé fotografie se budou muset přihlásit a načíst každý obrázek, což může zabrat nějaký čas."
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Profilová klíčová slova"
+#: ../../mod/admin.php:611
+msgid "Allow Users to set remote_self"
+msgstr "Umožnit uživatelům nastavit "
 
-#: ../../mod/newmember.php:40
+#: ../../mod/admin.php:611
 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 "Nastavte si nějaká veřejné klíčová slova pro výchozí profil, která popisují Vaše zájmy. Friendika Vám může nalézt další lidi s podobnými zájmy a navrhnout přátelství."
+"With checking this, every user is allowed to mark every contact as a "
+"remote_self in the repair contact dialog. Setting this flag on a contact "
+"causes mirroring every posting of that contact in the users stream."
+msgstr "S tímto označením má každý uživatel možnost označit jakékoliv ze svých kontakt jako \"remote_self\" v nastavení v dialogu opravit kontakt. Tímto označením se budou zrcadlit všechny správy tohoto kontaktu v uživatelově proudu."
 
-#: ../../mod/newmember.php:44
-msgid "Connecting"
-msgstr "Probíhá pokus o připojení"
+#: ../../mod/admin.php:612
+msgid "Block multiple registrations"
+msgstr "Blokovat více registrací"
 
-#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-#: ../../include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../mod/admin.php:612
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Znemožnit uživatelům registraci dodatečných účtů k použití jako stránky."
 
-#: ../../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 "Jestliže máte účet na Facebooku, povolte konektor na Facebook a bude možné (na přání) importovat všechny Vaš přátele na Facebooku a všechny Vaše konverzace."
+#: ../../mod/admin.php:613
+msgid "OpenID support"
+msgstr "podpora OpenID"
 
-#: ../../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 "<em>Pokud</em> je toto Váš soukromý server, instalací Facebok doplňku můžete zjednodušit Váš přechod na svobodný sociální web."
+#: ../../mod/admin.php:613
+msgid "OpenID support for registration and logins."
+msgstr "Podpora OpenID pro registraci a přihlašování."
 
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
-msgstr "Importování emaiů"
+#: ../../mod/admin.php:614
+msgid "Fullname check"
+msgstr "kontrola úplného jména"
 
-#: ../../mod/newmember.php:56
+#: ../../mod/admin.php:614
 msgid ""
-"Enter your email access information on your Connector Settings page if you "
-"wish to import and interact with friends or mailing lists from your email "
-"INBOX"
-msgstr "Pokud chcete importovat své přátele nebo mailové skupiny a komunikovat s nimi, zadejte na Vaší stránce Nastavení kontektoru své přístupové údaje do svého emailového účtu"
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Přimět uživatele k registraci s mezerou mezi jménu a příjmením v poli Celé jméno, jako antispamové opatření."
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "Navštivte Vaši stránku s kontakty"
+#: ../../mod/admin.php:615
+msgid "UTF-8 Regular expressions"
+msgstr "UTF-8 Regulární výrazy"
 
-#: ../../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 "Vaše stránka Kontakty je Vaše brána k nastavování přátelství a propojení s přáteli z dalších sítí. Typicky zadáte jejich emailovou adresu nebo URL adresu jejich serveru prostřednictvím dialogu <em>Přidat nový kontakt</em>."
+#: ../../mod/admin.php:615
+msgid "Use PHP UTF8 regular expressions"
+msgstr "Použít PHP UTF8 regulární výrazy."
 
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr "Navštivte lokální adresář Friendica"
+#: ../../mod/admin.php:616
+msgid "Show Community Page"
+msgstr "Zobrazit stránku komunity"
 
-#: ../../mod/newmember.php:60
+#: ../../mod/admin.php:616
 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 "Stránka Adresář Vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Prostřednictvím odkazů <em>Připojení</em> nebo <em>Následovat</em> si prohlédněte jejich profilovou stránku. Uveďte svou vlastní adresu identity, je-li požadována."
+"Display a Community page showing all recent public postings on this site."
+msgstr "Zobrazit Komunitní stránku zobrazující všechny veřejné příspěvky napsané na této stránce."
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-msgstr "Nalezení nových lidí"
+#: ../../mod/admin.php:617
+msgid "Enable OStatus support"
+msgstr "Zapnout podporu OStatus"
 
-#: ../../mod/newmember.php:62
+#: ../../mod/admin.php:617
 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 "Na bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin."
-
-#: ../../mod/newmember.php:66 ../../include/group.php:270
-msgid "Groups"
-msgstr "Skupiny"
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "Poskytnout zabudouvanou kompatibilitu s OStatus (StatusNet, GNU Social apod.). Veškerá komunikace s OStatus je veřejná, proto bude občas zobrazeno upozornění."
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "Seskupte si své kontakty"
+#: ../../mod/admin.php:618
+msgid "OStatus conversation completion interval"
+msgstr "Interval dokončení konverzace OStatus"
 
-#: ../../mod/newmember.php:70
+#: ../../mod/admin.php:618
 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 "Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu Vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť."
-
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "Proč nejsou mé příspěvky veřejné?"
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr "Jak často by mělo probíhat ověřování pro nové přísvěvky v konverzacích OStatus? Toto může být velmi výkonově náročný úkol."
 
-#: ../../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 "Friendica respektuje Vaše soukromí. Defaultně  jsou Vaše příspěvky viditelné pouze lidem, které označíte jako Vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu"
+#: ../../mod/admin.php:619
+msgid "Enable Diaspora support"
+msgstr "Povolit podporu Diaspora"
 
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr "Získání nápovědy"
+#: ../../mod/admin.php:619
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Poskytnout zabudovanou kompatibilitu sitě Diaspora."
 
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "Navštivte sekci nápovědy"
+#: ../../mod/admin.php:620
+msgid "Only allow Friendica contacts"
+msgstr "Povolit pouze Friendica kontakty"
 
-#: ../../mod/newmember.php:82
+#: ../../mod/admin.php:620
 msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Na stránkách <strong>Nápověda</strong> naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací."
-
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Opravdu chcete smazat tento návrh?"
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Všechny kontakty musí používat Friendica protokol. Všchny jiné zabudované komunikační protokoly budou zablokované."
 
-#: ../../mod/suggest.php:32 ../../mod/editpost.php:148
-#: ../../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:4067
-msgid "Cancel"
-msgstr "Zrušit"
+#: ../../mod/admin.php:621
+msgid "Verify SSL"
+msgstr "Ověřit SSL"
 
-#: ../../mod/suggest.php:72
+#: ../../mod/admin.php:621
 msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin."
+"If you wish, you can turn on strict certificate checking. This will mean you"
+" cannot connect (at all) to self-signed SSL sites."
+msgstr "Pokud si přejete, můžete vynutit striktní ověřování certifikátů. To znamená že se nebudete moci připojit k žádnému serveru s vlastním SSL certifikátem."
 
-#: ../../mod/suggest.php:90
-msgid "Ignore/Hide"
-msgstr "Ignorovat / skrýt"
+#: ../../mod/admin.php:622
+msgid "Proxy user"
+msgstr "Proxy uživatel"
 
-#: ../../mod/network.php:179
-msgid "Search Results For:"
-msgstr "Výsledky hledání pro:"
+#: ../../mod/admin.php:623
+msgid "Proxy URL"
+msgstr "Proxy URL adresa"
 
-#: ../../mod/network.php:222 ../../mod/_search.php:21 ../../mod/search.php:21
-msgid "Remove term"
-msgstr "Odstranit termín"
+#: ../../mod/admin.php:624
+msgid "Network timeout"
+msgstr "čas síťového spojení vypršelo (timeout)"
 
-#: ../../mod/network.php:231 ../../mod/_search.php:30 ../../mod/search.php:30
-#: ../../include/features.php:41
-msgid "Saved Searches"
-msgstr "Uložená hledání"
+#: ../../mod/admin.php:624
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Hodnota ve vteřinách. Nastavte 0 pro neomezeno (není doporučeno)."
 
-#: ../../mod/network.php:232 ../../include/group.php:275
-msgid "add"
-msgstr "přidat"
+#: ../../mod/admin.php:625
+msgid "Delivery interval"
+msgstr "Interval doručování"
 
-#: ../../mod/network.php:394
-msgid "Commented Order"
-msgstr "Dle komentářů"
+#: ../../mod/admin.php:625
+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 "Prodleva mezi doručovacími procesy běžícími na pozadí snižuje zátěž systému. Doporučené nastavení: 4-5 pro sdílené instalace, 2-3 pro virtuální soukromé servery, 0-1 pro velké dedikované servery."
 
-#: ../../mod/network.php:397
-msgid "Sort by Comment Date"
-msgstr "Řadit podle data komentáře"
+#: ../../mod/admin.php:626
+msgid "Poll interval"
+msgstr "Dotazovací interval"
 
-#: ../../mod/network.php:400
-msgid "Posted Order"
-msgstr "Dle data"
+#: ../../mod/admin.php:626
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Tímto nastavením ovlivníte prodlení mezi aktualizačními procesy běžícími na pozadí, čímž můžete snížit systémovou zátěž. Pokud 0, použijte doručovací interval."
 
-#: ../../mod/network.php:403
-msgid "Sort by Post Date"
-msgstr "Řadit podle data příspěvku"
+#: ../../mod/admin.php:627
+msgid "Maximum Load Average"
+msgstr "Maximální průměrné zatížení"
 
-#: ../../mod/network.php:441 ../../mod/notifications.php:88
-msgid "Personal"
-msgstr "Osobní"
+#: ../../mod/admin.php:627
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Maximální zatížení systému před pozastavením procesů zajišťujících doručování aktualizací - defaultně 50"
 
-#: ../../mod/network.php:444
-msgid "Posts that mention or involve you"
-msgstr "Příspěvky, které Vás zmiňují nebo zahrnují"
+#: ../../mod/admin.php:629
+msgid "Use MySQL full text engine"
+msgstr "Použít fulltextový vyhledávací stroj MySQL"
 
-#: ../../mod/network.php:450
-msgid "New"
-msgstr "Nové"
+#: ../../mod/admin.php:629
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
+msgstr "Aktivuje fulltextový vyhledávací stroj. Zrychluje vyhledávání ale pouze pro vyhledávání čtyř a více znaků"
 
-#: ../../mod/network.php:453
-msgid "Activity Stream - by date"
-msgstr "Proud aktivit - dle data"
+#: ../../mod/admin.php:630
+msgid "Suppress Language"
+msgstr "Potlačit Jazyk"
 
-#: ../../mod/network.php:459
-msgid "Shared Links"
-msgstr "Sdílené odkazy"
-
-#: ../../mod/network.php:462
-msgid "Interesting Links"
-msgstr "Zajímavé odkazy"
+#: ../../mod/admin.php:630
+msgid "Suppress language information in meta information about a posting."
+msgstr "Potlačit jazykové informace v meta informacích o příspěvcích"
 
-#: ../../mod/network.php:468
-msgid "Starred"
-msgstr "S hvězdičkou"
+#: ../../mod/admin.php:631
+msgid "Path to item cache"
+msgstr "Cesta k položkám vyrovnávací paměti"
 
-#: ../../mod/network.php:471
-msgid "Favourite Posts"
-msgstr "Oblíbené přízpěvky"
+#: ../../mod/admin.php:632
+msgid "Cache duration in seconds"
+msgstr "Doba platnosti vyrovnávací paměti v sekundách"
 
-#: ../../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] "Upozornění: Tato skupina obsahuje %s člena z nezabezpečené sítě."
-msgstr[1] "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě."
-msgstr[2] "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě."
+#: ../../mod/admin.php:632
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day)."
+msgstr "Jak dlouho by měla vyrovnávací paměť držet data? Výchozí hodnota je 86400 sekund (Jeden den)."
 
-#: ../../mod/network.php:542
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "Soukromé zprávy této skupině jsou vystaveny riziku prozrazení."
+#: ../../mod/admin.php:633
+msgid "Path for lock file"
+msgstr "Cesta k souboru zámku"
 
-#: ../../mod/network.php:588 ../../mod/content.php:119
-msgid "No such group"
-msgstr "Žádná taková skupina"
+#: ../../mod/admin.php:634
+msgid "Temp path"
+msgstr "Cesta k dočasným souborům"
 
-#: ../../mod/network.php:599 ../../mod/content.php:130
-msgid "Group is empty"
-msgstr "Skupina je prázdná"
+#: ../../mod/admin.php:635
+msgid "Base path to installation"
+msgstr "Základní cesta k instalaci"
 
-#: ../../mod/network.php:605 ../../mod/content.php:134
-msgid "Group: "
-msgstr "Skupina: "
+#: ../../mod/admin.php:637
+msgid "New base url"
+msgstr "Nová výchozí url adresa"
 
-#: ../../mod/network.php:617
-msgid "Contact: "
-msgstr "Kontakt: "
+#: ../../mod/admin.php:655
+msgid "Update has been marked successful"
+msgstr "Aktualizace byla označena jako úspěšná."
 
-#: ../../mod/network.php:619
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení."
+#: ../../mod/admin.php:665
+#, php-format
+msgid "Executing %s failed. Check system logs."
+msgstr "Vykonávání %s selhalo. Zkontrolujte chybový protokol."
 
-#: ../../mod/network.php:624
-msgid "Invalid contact."
-msgstr "Neplatný kontakt."
+#: ../../mod/admin.php:668
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Aktualizace %s byla úspěšně aplikována."
 
-#: ../../mod/install.php:117
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica Komunikační server - Nastavení"
+#: ../../mod/admin.php:672
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "Aktualizace %s nevrátila žádný status. Není zřejmé, jestli byla úspěšná."
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
-msgstr "Nelze se připojit k databázi."
+#: ../../mod/admin.php:675
+#, php-format
+msgid "Update function %s could not be found."
+msgstr "Aktualizační funkce %s nebyla nalezena."
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "Nelze vytvořit tabulku."
+#: ../../mod/admin.php:690
+msgid "No failed updates."
+msgstr "Žádné neúspěšné aktualizace."
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
-msgstr "Vaše databáze Friendica  byla nainstalována."
+#: ../../mod/admin.php:694
+msgid "Failed Updates"
+msgstr "Neúspěšné aktualizace"
 
-#: ../../mod/install.php:138
+#: ../../mod/admin.php:695
 msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do Vašeho adresáře - i když Vy můžete."
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "To nezahrnuje aktualizace do verze 1139, které nevracejí žádný status."
 
-#: ../../mod/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:521
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Přečtěte si prosím informace v souboru \"INSTALL.txt\"."
+#: ../../mod/admin.php:696
+msgid "Mark success (if update was manually applied)"
+msgstr "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)"
 
-#: ../../mod/install.php:203
-msgid "System check"
-msgstr "Testování systému"
+#: ../../mod/admin.php:697
+msgid "Attempt to execute this update step automatically"
+msgstr "Pokusit se provést tuto aktualizaci automaticky."
 
-#: ../../mod/install.php:207 ../../mod/events.php:373
-msgid "Next"
-msgstr "Dále"
+#: ../../mod/admin.php:737 ../../mod/register.php:92 ../../mod/regmod.php:54
+#, php-format
+msgid "Registration details for %s"
+msgstr "Registrační údaje pro %s"
 
-#: ../../mod/install.php:208
-msgid "Check again"
-msgstr "Otestovat znovu"
+#: ../../mod/admin.php:743
+msgid "Registration successful. Email send to user"
+msgstr "Registrace úspěšná. Email zaslán uživateli"
 
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "Databázové spojení"
+#: ../../mod/admin.php:753
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s uživatel blokován/odblokován"
+msgstr[1] "%s uživatelů blokováno/odblokováno"
+msgstr[2] "%s uživatelů blokováno/odblokováno"
 
-#: ../../mod/install.php:228
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi."
+#: ../../mod/admin.php:760
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s uživatel smazán"
+msgstr[1] "%s uživatelů smazáno"
+msgstr[2] "%s uživatelů smazáno"
 
-#: ../../mod/install.php:229
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru, "
+#: ../../mod/admin.php:799
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Uživatel '%s' smazán"
 
-#: ../../mod/install.php:230
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním."
+#: ../../mod/admin.php:807
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Uživatel '%s' odblokován"
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
-msgstr "Jméno databázového serveru"
+#: ../../mod/admin.php:807
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Uživatel '%s' blokován"
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
-msgstr "Přihlašovací jméno k databázi"
+#: ../../mod/admin.php:902
+msgid "Add User"
+msgstr "Přidat Uživatele"
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
-msgstr "Heslo k databázovému účtu "
+#: ../../mod/admin.php:903
+msgid "select all"
+msgstr "Vybrat vše"
 
-#: ../../mod/install.php:237
-msgid "Database Name"
-msgstr "Jméno databáze"
+#: ../../mod/admin.php:904
+msgid "User registrations waiting for confirm"
+msgstr "Registrace uživatele čeká na potvrzení"
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "Emailová adresa administrátora webu"
+#: ../../mod/admin.php:905
+msgid "User waiting for permanent deletion"
+msgstr "Uživatel čeká na trvalé smazání"
 
-#: ../../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 "Vaše emailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní."
+#: ../../mod/admin.php:906
+msgid "Request date"
+msgstr "Datum žádosti"
 
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
-msgstr "Prosím, vyberte výchozí časové pásmo pro váš server"
+#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919
+#: ../../mod/admin.php:932 ../../mod/settings.php:611
+#: ../../mod/settings.php:637 ../../mod/crepair.php:150
+msgid "Name"
+msgstr "Jméno"
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "Nastavení webu"
+#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919
+#: ../../mod/admin.php:934 ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:86
+msgid "Email"
+msgstr "E-mail"
 
-#: ../../mod/install.php:321
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru."
+#: ../../mod/admin.php:907
+msgid "No registrations."
+msgstr "Žádné registrace."
 
-#: ../../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 "Pokud na serveru nemáte nainstalovánu verzi PHP spustitelnou z příkazového řádku, nebudete moci spouštět na pozadí synchronizaci zpráv prostřednictvím cronu. Přečtěte si <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>\n\n    podrobnosti\n    návrhy\n    historie\n\n\t\nThe following url is either missing from the translation or has been translated: 'http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+#: ../../mod/admin.php:909
+msgid "Deny"
+msgstr "Odmítnout"
 
-#: ../../mod/install.php:326
-msgid "PHP executable path"
-msgstr "Cesta k \"PHP executable\""
+#: ../../mod/admin.php:911 ../../mod/contacts.php:431
+#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
+msgid "Block"
+msgstr "Blokovat"
 
-#: ../../mod/install.php:326
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Zadejte plnou cestu k spustitelnému souboru php. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci."
+#: ../../mod/admin.php:912 ../../mod/contacts.php:431
+#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
+msgid "Unblock"
+msgstr "Odblokovat"
 
-#: ../../mod/install.php:331
-msgid "Command line PHP"
-msgstr "Příkazový řádek PHP"
+#: ../../mod/admin.php:913
+msgid "Site admin"
+msgstr "Site administrátor"
 
-#: ../../mod/install.php:340
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "PHP executable není php cli binary (může být verze cgi-fgci)"
+#: ../../mod/admin.php:914
+msgid "Account expired"
+msgstr "Účtu vypršela platnost"
 
-#: ../../mod/install.php:341
-msgid "Found PHP version: "
-msgstr "Nalezena PHP verze:"
+#: ../../mod/admin.php:917
+msgid "New User"
+msgstr "Nový uživatel"
 
-#: ../../mod/install.php:343
-msgid "PHP cli binary"
-msgstr "PHP cli binary"
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Register date"
+msgstr "Datum registrace"
 
-#: ../../mod/install.php:354
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu."
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Last login"
+msgstr "Datum posledního přihlášení"
 
-#: ../../mod/install.php:355
-msgid "This is required for message delivery to work."
-msgstr "Toto je nutné pro fungování doručování zpráv."
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Last item"
+msgstr "Poslední položka"
 
-#: ../../mod/install.php:357
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../mod/admin.php:918
+msgid "Deleted since"
+msgstr "Smazán od"
 
-#: ../../mod/install.php:378
+#: ../../mod/admin.php:919 ../../mod/settings.php:36
+msgid "Account"
+msgstr "Účet"
+
+#: ../../mod/admin.php:921
 msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče"
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Vybraní uživatelé budou smazáni!\\n\\n Vše, co tito uživatelé na těchto stránkách vytvořili, bude trvale odstraněno!\\n\\n Opravdu pokračovat?"
 
-#: ../../mod/install.php:379
+#: ../../mod/admin.php:922
 msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Pokud systém běží na Windows, seznamte se s \"http://www.php.net/manual/en/openssl.installation.php\"."
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Uživatel {0} bude smazán!\\n\\n Vše, co tento uživatel na těchto stránkách vytvořil, bude trvale odstraněno!\\n\\n Opravdu pokračovat?"
 
-#: ../../mod/install.php:381
-msgid "Generate encryption keys"
-msgstr "Generovat kriptovací klíče"
+#: ../../mod/admin.php:932
+msgid "Name of the new user."
+msgstr "Jméno nového uživatele"
 
-#: ../../mod/install.php:388
-msgid "libCurl PHP module"
-msgstr "libCurl PHP modul"
+#: ../../mod/admin.php:933
+msgid "Nickname"
+msgstr "Přezdívka"
 
-#: ../../mod/install.php:389
-msgid "GD graphics PHP module"
-msgstr "GD graphics PHP modul"
+#: ../../mod/admin.php:933
+msgid "Nickname of the new user."
+msgstr "Přezdívka nového uživatele."
 
-#: ../../mod/install.php:390
-msgid "OpenSSL PHP module"
-msgstr "OpenSSL PHP modul"
+#: ../../mod/admin.php:934
+msgid "Email address of the new user."
+msgstr "Emailová adresa nového uživatele."
 
-#: ../../mod/install.php:391
-msgid "mysqli PHP module"
-msgstr "mysqli PHP modul"
+#: ../../mod/admin.php:967
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Plugin %s zakázán."
 
-#: ../../mod/install.php:392
-msgid "mb_string PHP module"
-msgstr "mb_string PHP modul"
+#: ../../mod/admin.php:971
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Plugin %s povolen."
 
-#: ../../mod/install.php:397 ../../mod/install.php:399
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite modul"
+#: ../../mod/admin.php:981 ../../mod/admin.php:1195
+msgid "Disable"
+msgstr "Zakázat"
 
-#: ../../mod/install.php:397
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován."
+#: ../../mod/admin.php:983 ../../mod/admin.php:1197
+msgid "Enable"
+msgstr "Povolit"
 
-#: ../../mod/install.php:405
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Chyba: požadovaný libcurl PHP modul není nainstalován."
+#: ../../mod/admin.php:1006 ../../mod/admin.php:1225
+msgid "Toggle"
+msgstr "Přepnout"
 
-#: ../../mod/install.php:409
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Chyba: požadovaný GD graphics PHP modul není nainstalován."
+#: ../../mod/admin.php:1007 ../../mod/admin.php:1226
+#: ../../mod/newmember.php:22 ../../mod/settings.php:85
+#: ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:169
+msgid "Settings"
+msgstr "Nastavení"
 
-#: ../../mod/install.php:413
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Chyba: požadovaný openssl PHP modul není nainstalován."
+#: ../../mod/admin.php:1014 ../../mod/admin.php:1235
+msgid "Author: "
+msgstr "Autor: "
 
-#: ../../mod/install.php:417
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Chyba: požadovaný mysqli PHP modul není nainstalován."
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1236
+msgid "Maintainer: "
+msgstr "Správce: "
 
-#: ../../mod/install.php:421
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Chyba: PHP modul mb_string  je vyžadován, ale není nainstalován."
+#: ../../mod/admin.php:1155
+msgid "No themes found."
+msgstr "Nenalezeny žádná témata."
 
-#: ../../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 "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři vašeho webového serveru ale nyní mu to není umožněno."
+#: ../../mod/admin.php:1217
+msgid "Screenshot"
+msgstr "Snímek obrazovky"
 
-#: ../../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 "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když Vy můžete."
+#: ../../mod/admin.php:1263
+msgid "[Experimental]"
+msgstr "[Experimentální]"
 
-#: ../../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 "Na konci této procedury obd nás obdržíte text k uložení v souboru pojmenovaném .htconfig.php ve Vašem Friendica kořenovém adresáři."
+#: ../../mod/admin.php:1264
+msgid "[Unsupported]"
+msgstr "[Nepodporováno]"
 
-#: ../../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 "Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor \"INSTALL.txt\" pro další instrukce."
+#: ../../mod/admin.php:1291
+msgid "Log settings updated."
+msgstr "Nastavení protokolu aktualizováno."
 
-#: ../../mod/install.php:444
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php je editovatelné"
+#: ../../mod/admin.php:1347
+msgid "Clear"
+msgstr "Vyčistit"
 
-#: ../../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 "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování."
+#: ../../mod/admin.php:1353
+msgid "Enable Debugging"
+msgstr "Povolit ladění"
 
-#: ../../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 "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica"
+#: ../../mod/admin.php:1354
+msgid "Log file"
+msgstr "Soubor s logem"
 
-#: ../../mod/install.php:456
+#: ../../mod/admin.php:1354
 msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře"
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Musí být editovatelné web serverem. Relativní cesta k vašemu kořenovému adresáři Friendica"
 
-#: ../../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 "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje."
+#: ../../mod/admin.php:1355
+msgid "Log level"
+msgstr "Úroveň auditu"
 
-#: ../../mod/install.php:460
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 je nastaven pro zápis"
+#: ../../mod/admin.php:1404 ../../mod/contacts.php:487
+msgid "Update now"
+msgstr "Aktualizovat"
 
-#: ../../mod/install.php:472
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "Url rewrite v .htconfig nefunguje. Prověřte prosím Vaše nastavení serveru."
+#: ../../mod/admin.php:1405
+msgid "Close"
+msgstr "Zavřít"
 
-#: ../../mod/install.php:474
-msgid "Url rewrite is working"
-msgstr "Url rewrite je funkční."
+#: ../../mod/admin.php:1411
+msgid "FTP Host"
+msgstr "Hostitel FTP"
 
-#: ../../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 "Databázový konfigurační soubor \".htconfig.php\" nemohl být uložen. Prosím, použijte přiložený text k vytvoření konfiguračního souboru ve vašem kořenovém adresáři webového serveru."
+#: ../../mod/admin.php:1412
+msgid "FTP Path"
+msgstr "Cesta FTP"
 
-#: ../../mod/install.php:508
-msgid "Errors encountered creating database tables."
-msgstr "Při vytváření databázových tabulek došlo k chybám."
+#: ../../mod/admin.php:1413
+msgid "FTP User"
+msgstr "FTP uživatel"
 
-#: ../../mod/install.php:519
-msgid "<h1>What next</h1>"
-msgstr "<h1>Co dál<h1>"
+#: ../../mod/admin.php:1414
+msgid "FTP Password"
+msgstr "FTP heslo"
 
-#: ../../mod/install.php:520
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři Vašeho webového serveru ale nyní mu to není umožněno."
+#: ../../mod/message.php:9 ../../include/nav.php:161
+msgid "New Message"
+msgstr "Nová zpráva"
 
-#: ../../mod/admin.php:55
-msgid "Theme settings updated."
-msgstr "Nastavení téma zobrazení bylo aktualizováno."
+#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
+msgid "No recipient selected."
+msgstr "Nevybrán příjemce."
 
-#: ../../mod/admin.php:101 ../../mod/admin.php:570
-msgid "Site"
-msgstr "Web"
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Nepodařilo se najít kontaktní informace."
 
-#: ../../mod/admin.php:102 ../../mod/admin.php:898 ../../mod/admin.php:913
-msgid "Users"
-msgstr "Uživatelé"
+#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
+msgid "Message could not be sent."
+msgstr "Zprávu se nepodařilo odeslat."
 
-#: ../../mod/admin.php:103 ../../mod/admin.php:1002 ../../mod/admin.php:1044
-msgid "Plugins"
-msgstr "Pluginy"
+#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
+msgid "Message collection failure."
+msgstr "Sběr zpráv selhal."
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:1210 ../../mod/admin.php:1244
-msgid "Themes"
-msgstr "Témata"
+#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
+msgid "Message sent."
+msgstr "Zpráva odeslána."
 
-#: ../../mod/admin.php:105
-msgid "DB updates"
-msgstr "Aktualizace databáze"
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Opravdu chcete smazat tuto zprávu?"
 
-#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1331
-msgid "Logs"
-msgstr "Logy"
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "Zpráva odstraněna."
 
-#: ../../mod/admin.php:125 ../../include/nav.php:178
-msgid "Admin"
-msgstr "Administrace"
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "Konverzace odstraněna."
 
-#: ../../mod/admin.php:126
-msgid "Plugin Features"
-msgstr "Funkčnosti rozšíření"
+#: ../../mod/message.php:283 ../../mod/message.php:291
+#: ../../mod/message.php:466 ../../mod/message.php:474
+#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
+#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
+msgid "Please enter a link URL:"
+msgstr "Zadejte prosím URL odkaz:"
 
-#: ../../mod/admin.php:128
-msgid "User registrations waiting for confirmation"
-msgstr "Registrace uživatele čeká na potvrzení"
+#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
+msgid "Send Private Message"
+msgstr "Odeslat soukromou zprávu"
 
-#: ../../mod/admin.php:187 ../../mod/admin.php:852
-msgid "Normal Account"
-msgstr "Normální účet"
+#: ../../mod/message.php:320 ../../mod/message.php:553
+#: ../../mod/wallmessage.php:144
+msgid "To:"
+msgstr "Adresát:"
 
-#: ../../mod/admin.php:188 ../../mod/admin.php:853
-msgid "Soapbox Account"
-msgstr "Soapbox účet"
+#: ../../mod/message.php:325 ../../mod/message.php:555
+#: ../../mod/wallmessage.php:145
+msgid "Subject:"
+msgstr "Předmět:"
 
-#: ../../mod/admin.php:189 ../../mod/admin.php:854
-msgid "Community/Celebrity Account"
-msgstr "Komunitní účet / Účet celebrity"
+#: ../../mod/message.php:329 ../../mod/message.php:558
+#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
+msgid "Your message:"
+msgstr "Vaše zpráva:"
 
-#: ../../mod/admin.php:190 ../../mod/admin.php:855
-msgid "Automatic Friend Account"
-msgstr "Účet s automatickým schvalováním přátel"
+#: ../../mod/message.php:332 ../../mod/message.php:562
+#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154
+#: ../../include/conversation.php:1089
+msgid "Upload photo"
+msgstr "Nahrát fotografii"
 
-#: ../../mod/admin.php:191
-msgid "Blog Account"
-msgstr "Účet Blogu"
+#: ../../mod/message.php:333 ../../mod/message.php:563
+#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155
+#: ../../include/conversation.php:1093
+msgid "Insert web link"
+msgstr "Vložit webový odkaz"
 
-#: ../../mod/admin.php:192
-msgid "Private Forum"
-msgstr "Soukromé fórum"
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Žádné zprávy."
 
-#: ../../mod/admin.php:211
-msgid "Message queues"
-msgstr "Fronty zpráv"
+#: ../../mod/message.php:378
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "Neznámý odesilatel - %s"
 
-#: ../../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 "Administrace"
+#: ../../mod/message.php:381
+#, php-format
+msgid "You and %s"
+msgstr "Vy a %s"
 
-#: ../../mod/admin.php:217
-msgid "Summary"
-msgstr "Shrnutí"
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s a Vy"
 
-#: ../../mod/admin.php:219
-msgid "Registered users"
-msgstr "Registrovaní uživatelé"
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Odstranit konverzaci"
 
-#: ../../mod/admin.php:221
-msgid "Pending registrations"
-msgstr "Čekající registrace"
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D M R - g:i A"
 
-#: ../../mod/admin.php:222
-msgid "Version"
-msgstr "Verze"
+#: ../../mod/message.php:411
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d zpráva"
+msgstr[1] "%d zprávy"
+msgstr[2] "%d zpráv"
 
-#: ../../mod/admin.php:224
-msgid "Active plugins"
-msgstr "Aktivní pluginy"
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "Zpráva není k dispozici."
 
-#: ../../mod/admin.php:247
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr "Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň <schéma>://<doméma>"
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Smazat zprávu"
 
-#: ../../mod/admin.php:483
-msgid "Site settings updated."
-msgstr "Nastavení webu aktualizováno."
+#: ../../mod/message.php:548
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Není k dispozici zabezpečená komunikace. <strong>Možná</strong> budete schopni reagovat z odesilatelovy profilové stránky."
 
-#: ../../mod/admin.php:512 ../../mod/settings.php:810
-msgid "No special theme for mobile devices"
-msgstr "žádné speciální téma pro mobilní zařízení"
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Poslat odpověď"
 
-#: ../../mod/admin.php:529 ../../mod/contacts.php:402
-msgid "Never"
-msgstr "Nikdy"
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "Položka nenalezena"
 
-#: ../../mod/admin.php:530 ../../include/contact_selectors.php:56
-msgid "Frequently"
-msgstr "Často"
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Upravit příspěvek"
 
-#: ../../mod/admin.php:531 ../../include/contact_selectors.php:57
-msgid "Hourly"
-msgstr "každou hodinu"
+#: ../../mod/editpost.php:111 ../../include/conversation.php:1090
+msgid "upload photo"
+msgstr "nahrát fotky"
 
-#: ../../mod/admin.php:532 ../../include/contact_selectors.php:58
-msgid "Twice daily"
-msgstr "Dvakrát denně"
+#: ../../mod/editpost.php:112 ../../include/conversation.php:1091
+msgid "Attach file"
+msgstr "Přiložit soubor"
 
-#: ../../mod/admin.php:533 ../../include/contact_selectors.php:59
-msgid "Daily"
-msgstr "denně"
+#: ../../mod/editpost.php:113 ../../include/conversation.php:1092
+msgid "attach file"
+msgstr "přidat soubor"
 
-#: ../../mod/admin.php:538
-msgid "Multi user instance"
-msgstr "Více uživatelská instance"
+#: ../../mod/editpost.php:115 ../../include/conversation.php:1094
+msgid "web link"
+msgstr "webový odkaz"
 
-#: ../../mod/admin.php:556
-msgid "Closed"
-msgstr "Uzavřeno"
+#: ../../mod/editpost.php:116 ../../include/conversation.php:1095
+msgid "Insert video link"
+msgstr "Zadejte odkaz na video"
 
-#: ../../mod/admin.php:557
-msgid "Requires approval"
-msgstr "Vyžaduje schválení"
+#: ../../mod/editpost.php:117 ../../include/conversation.php:1096
+msgid "video link"
+msgstr "odkaz na video"
 
-#: ../../mod/admin.php:558
-msgid "Open"
-msgstr "Otevřená"
+#: ../../mod/editpost.php:118 ../../include/conversation.php:1097
+msgid "Insert audio link"
+msgstr "Zadejte odkaz na zvukový záznam"
 
-#: ../../mod/admin.php:562
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Žádná SSL politika, odkazy budou následovat stránky SSL stav"
+#: ../../mod/editpost.php:119 ../../include/conversation.php:1098
+msgid "audio link"
+msgstr "odkaz na audio"
 
-#: ../../mod/admin.php:563
-msgid "Force all links to use SSL"
-msgstr "Vyžadovat u všech odkazů použití SSL"
+#: ../../mod/editpost.php:120 ../../include/conversation.php:1099
+msgid "Set your location"
+msgstr "Nastavte vaši polohu"
 
-#: ../../mod/admin.php:564
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Certifikát podepsaný sám sebou, použít SSL pouze pro lokální odkazy (nedoporučeno)"
+#: ../../mod/editpost.php:121 ../../include/conversation.php:1100
+msgid "set location"
+msgstr "nastavit místo"
 
-#: ../../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 "Uložit Nastavení"
+#: ../../mod/editpost.php:122 ../../include/conversation.php:1101
+msgid "Clear browser location"
+msgstr "Odstranit adresu v prohlížeči"
 
-#: ../../mod/admin.php:573
-msgid "File upload"
-msgstr "Nahrání souborů"
+#: ../../mod/editpost.php:123 ../../include/conversation.php:1102
+msgid "clear location"
+msgstr "vymazat místo"
 
-#: ../../mod/admin.php:574
-msgid "Policies"
-msgstr "Politiky"
+#: ../../mod/editpost.php:125 ../../include/conversation.php:1108
+msgid "Permission settings"
+msgstr "Nastavení oprávnění"
 
-#: ../../mod/admin.php:575
-msgid "Advanced"
-msgstr "Pokročilé"
+#: ../../mod/editpost.php:133 ../../include/conversation.php:1117
+msgid "CC: email addresses"
+msgstr "skrytá kopie: e-mailové adresy"
 
-#: ../../mod/admin.php:576
-msgid "Performance"
-msgstr "Výkonnost"
+#: ../../mod/editpost.php:134 ../../include/conversation.php:1118
+msgid "Public post"
+msgstr "Veřejný příspěvek"
 
-#: ../../mod/admin.php:577
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Změna umístění - Varování: pokročilá funkčnost. Tímto můžete znepřístupnit server."
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1104
+msgid "Set title"
+msgstr "Nastavit titulek"
 
-#: ../../mod/admin.php:580
-msgid "Site name"
-msgstr "Název webu"
+#: ../../mod/editpost.php:139 ../../include/conversation.php:1106
+msgid "Categories (comma-separated list)"
+msgstr "Kategorie (čárkou oddělený seznam)"
 
-#: ../../mod/admin.php:581
-msgid "Banner/Logo"
-msgstr "Banner/logo"
+#: ../../mod/editpost.php:140 ../../include/conversation.php:1120
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Příklad: bob@example.com, mary@example.com"
 
-#: ../../mod/admin.php:582
-msgid "Additional Info"
-msgstr "Dodatečné informace"
+#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18
+#: ../../mod/profiles.php:133 ../../mod/profiles.php:160
+#: ../../mod/profiles.php:587
+msgid "Profile not found."
+msgstr "Profil nenalezen"
 
-#: ../../mod/admin.php:582
+#: ../../mod/dfrn_confirm.php:119
 msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at dir.friendica.com/siteinfo."
-msgstr "Pro veřejné servery: zde můžete doplnit dodatečné informace, které budou uvedeny v seznamu na dir.friendica.com/siteinfo."
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "To se může občas stát pokud kontakt byl zažádán oběma osobami a již byl schválen."
 
-#: ../../mod/admin.php:583
-msgid "System language"
-msgstr "Systémový jazyk"
+#: ../../mod/dfrn_confirm.php:237
+msgid "Response from remote site was not understood."
+msgstr "Odpověď ze vzdáleného serveru nebyla srozumitelná."
 
-#: ../../mod/admin.php:584
-msgid "System theme"
-msgstr "Grafická šablona systému "
+#: ../../mod/dfrn_confirm.php:246
+msgid "Unexpected response from remote site: "
+msgstr "Neočekávaná odpověď od vzdáleného serveru:"
 
-#: ../../mod/admin.php:584
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Defaultní systémové téma - může být změněno v uživatelských profilech - <a href='#' id='cnftheme'> změnit  theme settings</a>"
+#: ../../mod/dfrn_confirm.php:254
+msgid "Confirmation completed successfully."
+msgstr "Potvrzení úspěšně dokončena."
 
-#: ../../mod/admin.php:585
-msgid "Mobile system theme"
-msgstr "Systémové téma zobrazení pro mobilní zařízení"
+#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
+#: ../../mod/dfrn_confirm.php:277
+msgid "Remote site reported: "
+msgstr "Vzdálený server oznámil:"
 
-#: ../../mod/admin.php:585
-msgid "Theme for mobile devices"
-msgstr "Téma zobrazení pro mobilní zařízení"
+#: ../../mod/dfrn_confirm.php:268
+msgid "Temporary failure. Please wait and try again."
+msgstr "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu."
 
-#: ../../mod/admin.php:586
-msgid "SSL link policy"
-msgstr "Politika SSL odkazů"
+#: ../../mod/dfrn_confirm.php:275
+msgid "Introduction failed or was revoked."
+msgstr "Žádost o propojení selhala nebo byla zrušena."
 
-#: ../../mod/admin.php:586
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Určuje, zda-li budou generované odkazy používat SSL"
+#: ../../mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
+msgstr "Nelze nastavit fotografii kontaktu."
 
-#: ../../mod/admin.php:587
-msgid "Old style 'Share'"
-msgstr "Sdílení \"postaru\""
+#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:620
+#: ../../include/conversation.php:172
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s je nyní přítel s %2$s"
 
-#: ../../mod/admin.php:587
-msgid "Deactivates the bbcode element 'share' for repeating items."
-msgstr "Deaktivovat bbcode element \"share\" pro opakující se položky."
+#: ../../mod/dfrn_confirm.php:562
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Pro '%s' nenalezen žádný uživatelský záznam "
 
-#: ../../mod/admin.php:588
-msgid "Hide help entry from navigation menu"
-msgstr "skrýt nápovědu z navigačního menu"
+#: ../../mod/dfrn_confirm.php:572
+msgid "Our site encryption key is apparently messed up."
+msgstr "Náš šifrovací klíč zřejmě přestal správně fungovat."
 
-#: ../../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 "Skryje menu ze stránek Nápověda z navigačního menu. Nápovědu můžete stále zobrazit přímo zadáním /help."
+#: ../../mod/dfrn_confirm.php:583
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "Byla poskytnuta prázdná URL adresa nebo se nepodařilo URL adresu dešifrovat."
 
-#: ../../mod/admin.php:589
-msgid "Single user instance"
-msgstr "Jednouživatelská instance"
+#: ../../mod/dfrn_confirm.php:604
+msgid "Contact record was not found for you on our site."
+msgstr "Kontakt záznam nebyl nalezen pro vás na našich stránkách."
 
-#: ../../mod/admin.php:589
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr "Nastavit tuto instanci víceuživatelskou nebo jednouživatelskou pro pojmenovaného uživatele"
-
-#: ../../mod/admin.php:590
-msgid "Maximum image size"
-msgstr "Maximální velikost obrázků"
+#: ../../mod/dfrn_confirm.php:618
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "V adresáři není k dispozici veřejný klíč pro URL %s."
 
-#: ../../mod/admin.php:590
+#: ../../mod/dfrn_confirm.php:638
 msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Maximální velikost v bajtech nahraných obrázků. Defaultní je 0, což znamená neomezeno."
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "Váš systém poskytl duplicitní ID vůči našemu systému. Pokuste se akci zopakovat."
 
-#: ../../mod/admin.php:591
-msgid "Maximum image length"
-msgstr "Maximální velikost obrázků"
+#: ../../mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
+msgstr "Nelze nastavit Vaše přihlašovací údaje v našem systému."
 
-#: ../../mod/admin.php:591
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "Maximální délka v pixelech delší stránky nahrávaných obrázků. Defaultně je -1, což označuje bez limitu"
+#: ../../mod/dfrn_confirm.php:716
+msgid "Unable to update your contact profile details on our system"
+msgstr "Nelze aktualizovat Váš profil v našem systému"
 
-#: ../../mod/admin.php:592
-msgid "JPEG image quality"
-msgstr "JPEG kvalita obrázku"
+#: ../../mod/dfrn_confirm.php:751
+#, php-format
+msgid "Connection accepted at %s"
+msgstr "Připojení přijato na %s"
 
-#: ../../mod/admin.php:592
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr "Nahrávaný JPEG bude uložen se zadanou kvalitou v rozmezí [0-100]. Defaultní je 100, což znamená plnou kvalitu."
+#: ../../mod/dfrn_confirm.php:800
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s se připojil k %2$s"
 
-#: ../../mod/admin.php:594
-msgid "Register policy"
-msgstr "Politika registrace"
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
+msgstr "Název události a datum začátku jsou vyžadovány."
 
-#: ../../mod/admin.php:595
-msgid "Maximum Daily Registrations"
-msgstr "Maximální počet denních registrací"
+#: ../../mod/events.php:291
+msgid "l, F j"
+msgstr "l, F j"
 
-#: ../../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 "Pokud je registrace výše povolena, zde se nastaví maximální počet registrací nových uživatelů za den.\nPokud je registrace zakázána, toto nastavení nemá žádný efekt."
+#: ../../mod/events.php:313
+msgid "Edit event"
+msgstr "Editovat událost"
 
-#: ../../mod/admin.php:596
-msgid "Register text"
-msgstr "Registrace textu"
+#: ../../mod/events.php:335 ../../include/text.php:1633
+#: ../../include/text.php:1644
+msgid "link to source"
+msgstr "odkaz na zdroj"
 
-#: ../../mod/admin.php:596
-msgid "Will be displayed prominently on the registration page."
-msgstr "Bude zřetelně zobrazeno na registrační stránce."
+#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:127
+#: ../../boot.php:2003 ../../include/nav.php:79
+msgid "Events"
+msgstr "Události"
 
-#: ../../mod/admin.php:597
-msgid "Accounts abandoned after x days"
-msgstr "Účet je opuštěn po x dnech"
+#: ../../mod/events.php:371
+msgid "Create New Event"
+msgstr "Vytvořit novou událost"
 
-#: ../../mod/admin.php:597
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Neztrácejte systémové zdroje kontaktováním externích webů s opuštěnými účty. Zadejte 0 pro žádný časový limit."
+#: ../../mod/events.php:372
+msgid "Previous"
+msgstr "Předchozí"
 
-#: ../../mod/admin.php:598
-msgid "Allowed friend domains"
-msgstr "Povolené domény přátel"
+#: ../../mod/events.php:373 ../../mod/install.php:207
+msgid "Next"
+msgstr "Dále"
 
-#: ../../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 "Čárkou oddělený seznam domén, kterým je povoleno navazovat přátelství s tímto webem. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu."
+#: ../../mod/events.php:446
+msgid "hour:minute"
+msgstr "hodina:minuta"
 
-#: ../../mod/admin.php:599
-msgid "Allowed email domains"
-msgstr "Povolené e-mailové domény"
+#: ../../mod/events.php:456
+msgid "Event details"
+msgstr "Detaily události"
 
-#: ../../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 "Čárkou oddělený seznam domén emalových adres, kterým je povoleno provádět registraci na tomto webu. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu."
+#: ../../mod/events.php:457
+#, php-format
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "Formát je %s %s. Datum začátku a Název jsou vyžadovány."
 
-#: ../../mod/admin.php:600
-msgid "Block public"
-msgstr "Blokovat veřejnost"
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr "Událost začíná:"
 
-#: ../../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 "Označemím přepínače zablokujete veřejný přístup ke všem jinak veřejně přístupným soukromým stránkám uživatelům, kteří nebudou přihlášeni."
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "Vyžadováno"
 
-#: ../../mod/admin.php:601
-msgid "Force publish"
-msgstr "Publikovat"
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
+msgstr "Datum/čas konce není zadán nebo není relevantní"
 
-#: ../../mod/admin.php:601
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Označením přepínače budou včechny profily na tomto webu uvedeny v adresáři webu."
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
+msgstr "Akce končí:"
 
-#: ../../mod/admin.php:602
-msgid "Global directory update URL"
-msgstr "aktualizace URL adresy Globálního adresáře "
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
+msgstr "Nastavit časové pásmo pro uživatele s právem pro čtení"
 
-#: ../../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 adresa k aktualizaci globálního adresáře. Pokud není zadáno, funkce globálního adresáře není dostupná žádné aplikaci."
+#: ../../mod/events.php:469
+msgid "Description:"
+msgstr "Popis:"
 
-#: ../../mod/admin.php:603
-msgid "Allow threaded items"
-msgstr "Povolit vícevláknové zpracování obsahu"
+#: ../../mod/events.php:471 ../../mod/directory.php:134 ../../boot.php:1513
+#: ../../include/event.php:40 ../../include/bb2diaspora.php:155
+msgid "Location:"
+msgstr "Místo:"
 
-#: ../../mod/admin.php:603
-msgid "Allow infinite level threading for items on this site."
-msgstr "Povolit zpracování obsahu tohoto webu neomezeným počtem paralelních vláken."
+#: ../../mod/events.php:473
+msgid "Title:"
+msgstr "Název:"
 
-#: ../../mod/admin.php:604
-msgid "Private posts by default for new users"
-msgstr "Nastavit pro nové uživatele příspěvky jako soukromé"
+#: ../../mod/events.php:475
+msgid "Share this event"
+msgstr "Sdílet tuto událost"
 
-#: ../../mod/admin.php:604
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "Nastavit defaultní práva pro příspěvky od všech nových členů na výchozí soukromou skupinu raději než jako veřejné."
+#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:126
+#: ../../boot.php:1986 ../../include/nav.php:78
+msgid "Photos"
+msgstr "Fotografie"
 
-#: ../../mod/admin.php:605
-msgid "Don't include post content in email notifications"
-msgstr "Nezahrnovat obsah příspěvků v emailových upozorněních"
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "Soubory"
 
-#: ../../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 " V mailových upozorněních, které jsou odesílány z tohoto webu jako soukromé zprávy, nejsou z důvodů bezpečnosti obsaženy příspěvky/komentáře/soukromé zprávy apod. "
+#: ../../mod/home.php:34
+#, php-format
+msgid "Welcome to %s"
+msgstr "Vítá Vás %s"
 
-#: ../../mod/admin.php:606
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Zakázat veřejný přístup k rozšířením uvedeným v menu aplikace."
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Vzdálené soukromé informace nejsou k dispozici."
 
-#: ../../mod/admin.php:606
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr "Označení této volby omezí rozšíření uvedená v menu aplikace pouze pro členy."
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
+msgstr "Viditelné pro:"
 
-#: ../../mod/admin.php:607
-msgid "Don't embed private images in posts"
-msgstr "Nepovolit přidávání soukromých správ v příspěvcích"
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena."
 
-#: ../../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 "
-"photos will have to authenticate and load each image, which may take a "
-"while."
-msgstr "Nereplikovat lokální soukromé fotografie v příspěvcích s přidáním kopie obrázku. To znamená, že kontakty, které obdrží příspěvek obsahující soukromé fotografie se budou muset přihlásit a načíst každý obrázek, což může zabrat nějaký čas."
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Nebylo možné zjistit Vaši domácí lokaci."
 
-#: ../../mod/admin.php:608
-msgid "Allow Users to set remote_self"
-msgstr "Umožnit uživatelům nastavit "
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Žádný příjemce."
 
-#: ../../mod/admin.php:608
+#: ../../mod/wallmessage.php:143
+#, php-format
 msgid ""
-"With checking this, every user is allowed to mark every contact as a "
-"remote_self in the repair contact dialog. Setting this flag on a contact "
-"causes mirroring every posting of that contact in the users stream."
-msgstr "S tímto označením má každý uživatel možnost označit jakékoliv ze svých kontakt jako \"remote_self\" v nastavení v dialogu opravit kontakt. Tímto označením se budou zrcadlit všechny správy tohoto kontaktu v uživatelově proudu."
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů."
 
-#: ../../mod/admin.php:609
-msgid "Block multiple registrations"
-msgstr "Blokovat více registrací"
+#: ../../mod/nogroup.php:40 ../../mod/contacts.php:473
+#: ../../mod/contacts.php:665 ../../mod/viewcontacts.php:62
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Navštivte profil uživatele %s [%s]"
 
-#: ../../mod/admin.php:609
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Znemožnit uživatelům registraci dodatečných účtů k použití jako stránky."
+#: ../../mod/nogroup.php:41 ../../mod/contacts.php:666
+msgid "Edit contact"
+msgstr "Editovat kontakt"
 
-#: ../../mod/admin.php:610
-msgid "OpenID support"
-msgstr "podpora OpenID"
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Kontakty, které nejsou členy skupiny"
 
-#: ../../mod/admin.php:610
-msgid "OpenID support for registration and logins."
-msgstr "Podpora OpenID pro registraci a přihlašování."
+#: ../../mod/friendica.php:58
+msgid "This is Friendica, version"
+msgstr "Toto je Friendica, verze"
 
-#: ../../mod/admin.php:611
-msgid "Fullname check"
-msgstr "kontrola úplného jména"
+#: ../../mod/friendica.php:59
+msgid "running at web location"
+msgstr "běžící na webu"
 
-#: ../../mod/admin.php:611
+#: ../../mod/friendica.php:61
 msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr "Přimět uživatele k registraci s mezerou mezi jménu a příjmením v poli Celé jméno, jako antispamové opatření."
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Pro získání dalších informací o projektu Friendica navštivte prosím <a href=\"http://friendica.com\">Friendica.com</a>."
 
-#: ../../mod/admin.php:612
-msgid "UTF-8 Regular expressions"
-msgstr "UTF-8 Regulární výrazy"
+#: ../../mod/friendica.php:63
+msgid "Bug reports and issues: please visit"
+msgstr "Pro hlášení chyb a námětů na změny navštivte:"
 
-#: ../../mod/admin.php:612
-msgid "Use PHP UTF8 regular expressions"
-msgstr "Použít PHP UTF8 regulární výrazy."
+#: ../../mod/friendica.php:64
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Návrhy, chválu, dary, apod. - prosím piště na \"info\" na Friendica - tečka com"
 
-#: ../../mod/admin.php:613
-msgid "Show Community Page"
-msgstr "Zobrazit stránku komunity"
+#: ../../mod/friendica.php:78
+msgid "Installed plugins/addons/apps:"
+msgstr "Instalované pluginy/doplňky/aplikace:"
 
-#: ../../mod/admin.php:613
-msgid ""
-"Display a Community page showing all recent public postings on this site."
-msgstr "Zobrazit Komunitní stránku zobrazující všechny veřejné příspěvky napsané na této stránce."
+#: ../../mod/friendica.php:91
+msgid "No installed plugins/addons/apps"
+msgstr "Nejsou žádné nainstalované doplňky/aplikace"
 
-#: ../../mod/admin.php:614
-msgid "Enable OStatus support"
-msgstr "Zapnout podporu OStatus"
+#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
+msgid "Remove My Account"
+msgstr "Odstranit můj účet"
 
-#: ../../mod/admin.php:614
+#: ../../mod/removeme.php:47
 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 "Poskytnout zabudouvanou kompatibilitu s OStatus (identi.ca, status.net, etc.). Veškerá komunikace s OStatus je veřejná, proto bude občas zobrazeno upozornění."
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit."
 
-#: ../../mod/admin.php:615
-msgid "OStatus conversation completion interval"
-msgstr "Interval dokončení konverzace OStatus"
+#: ../../mod/removeme.php:48
+msgid "Please enter your password for verification:"
+msgstr "Prosím, zadejte své heslo pro ověření:"
 
-#: ../../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 "Jak často by mělo probíhat ověřování pro nové přísvěvky v konverzacích OStatus? Toto může být velmi výkonově náročný úkol."
+#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr "Obrázek překročil limit velikosti %d"
 
-#: ../../mod/admin.php:616
-msgid "Enable Diaspora support"
-msgstr "Povolit podporu Diaspora"
+#: ../../mod/wall_upload.php:112 ../../mod/photos.php:805
+#: ../../mod/profile_photo.php:153
+msgid "Unable to process image."
+msgstr "Obrázek není možné zprocesovat"
 
-#: ../../mod/admin.php:616
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Poskytnout zabudovanou kompatibilitu sitě Diaspora."
+#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
+#: ../../mod/wall_upload.php:151 ../../mod/item.php:455
+#: ../../include/message.php:144
+msgid "Wall Photos"
+msgstr "Fotografie na zdi"
 
-#: ../../mod/admin.php:617
-msgid "Only allow Friendica contacts"
-msgstr "Povolit pouze Friendica kontakty"
+#: ../../mod/wall_upload.php:138 ../../mod/photos.php:832
+#: ../../mod/profile_photo.php:301
+msgid "Image upload failed."
+msgstr "Nahrání obrázku selhalo."
 
-#: ../../mod/admin.php:617
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "Všechny kontakty musí používat Friendica protokol. Všchny jiné zabudované komunikační protokoly budou zablokované."
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Povolit připojení aplikacím"
 
-#: ../../mod/admin.php:618
-msgid "Verify SSL"
-msgstr "Ověřit SSL"
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Vraťte se do vaší aplikace a zadejte tento bezpečnostní kód:"
 
-#: ../../mod/admin.php:618
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Pro pokračování se prosím přihlaste."
+
+#: ../../mod/api.php:104
 msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you"
-" cannot connect (at all) to self-signed SSL sites."
-msgstr "Pokud si přejete, můžete vynutit striktní ověřování certifikátů. To znamená že se nebudete moci připojit k žádnému serveru s vlastním SSL certifikátem."
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?"
 
-#: ../../mod/admin.php:619
-msgid "Proxy user"
-msgstr "Proxy uživatel"
+#: ../../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 označen uživatelem %2$s %3$s s %4$s"
 
-#: ../../mod/admin.php:620
-msgid "Proxy URL"
-msgstr "Proxy URL adresa"
+#: ../../mod/photos.php:52 ../../boot.php:1989
+msgid "Photo Albums"
+msgstr "Fotoalba"
 
-#: ../../mod/admin.php:621
-msgid "Network timeout"
-msgstr "čas síťového spojení vypršelo (timeout)"
+#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1062
+#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
+#: ../../mod/photos.php:1756 ../../mod/photos.php:1768
+#: ../../view/theme/diabook/theme.php:499
+msgid "Contact Photos"
+msgstr "Fotogalerie kontaktu"
 
-#: ../../mod/admin.php:621
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Hodnota ve vteřinách. Nastavte 0 pro neomezeno (není doporučeno)."
+#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815
+msgid "Upload New Photos"
+msgstr "Nahrát nové fotografie"
 
-#: ../../mod/admin.php:622
-msgid "Delivery interval"
-msgstr "Interval doručování"
+#: ../../mod/photos.php:80 ../../mod/settings.php:29
+msgid "everybody"
+msgstr "Žádost o připojení selhala nebo byla zrušena."
 
-#: ../../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 "Prodleva mezi doručovacími procesy běžícími na pozadí snižuje zátěž systému. Doporučené nastavení: 4-5 pro sdílené instalace, 2-3 pro virtuální soukromé servery, 0-1 pro velké dedikované servery."
+#: ../../mod/photos.php:144
+msgid "Contact information unavailable"
+msgstr "Kontakt byl zablokován"
 
-#: ../../mod/admin.php:623
-msgid "Poll interval"
-msgstr "Dotazovací interval"
+#: ../../mod/photos.php:155 ../../mod/photos.php:729 ../../mod/photos.php:1187
+#: ../../mod/photos.php:1210 ../../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:500
+#: ../../include/user.php:334 ../../include/user.php:341
+#: ../../include/user.php:348
+msgid "Profile Photos"
+msgstr "Profilové fotografie"
 
-#: ../../mod/admin.php:623
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "Tímto nastavením ovlivníte prodlení mezi aktualizačními procesy běžícími na pozadí, čímž můžete snížit systémovou zátěž. Pokud 0, použijte doručovací interval."
+#: ../../mod/photos.php:165
+msgid "Album not found."
+msgstr "Album nenalezeno."
 
-#: ../../mod/admin.php:624
-msgid "Maximum Load Average"
-msgstr "Maximální průměrné zatížení"
+#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
+msgid "Delete Album"
+msgstr "Smazat album"
 
-#: ../../mod/admin.php:624
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Maximální zatížení systému před pozastavením procesů zajišťujících doručování aktualizací - defaultně 50"
+#: ../../mod/photos.php:198
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Opravdu chcete smazat toto foto album a všechny jeho fotografie?"
 
-#: ../../mod/admin.php:626
-msgid "Use MySQL full text engine"
-msgstr "Použít fulltextový vyhledávací stroj MySQL"
+#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511
+msgid "Delete Photo"
+msgstr "Smazat fotografii"
 
-#: ../../mod/admin.php:626
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
-msgstr "Aktivuje fulltextový vyhledávací stroj. Zrychluje vyhledávání ale pouze pro vyhledávání čtyř a více znaků"
+#: ../../mod/photos.php:287
+msgid "Do you really want to delete this photo?"
+msgstr "Opravdu chcete smazat tuto fotografii?"
 
-#: ../../mod/admin.php:627
-msgid "Suppress Language"
-msgstr "Potlačit Jazyk"
+#: ../../mod/photos.php:660
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s byl označen v %2$s uživatelem %3$s"
 
-#: ../../mod/admin.php:627
-msgid "Suppress language information in meta information about a posting."
-msgstr "Potlačit jazykové informace v meta informacích o příspěvcích"
+#: ../../mod/photos.php:660
+msgid "a photo"
+msgstr "fotografie"
 
-#: ../../mod/admin.php:628
-msgid "Path to item cache"
-msgstr "Cesta k položkám vyrovnávací paměti"
+#: ../../mod/photos.php:765
+msgid "Image exceeds size limit of "
+msgstr "Velikost obrázku překračuje limit velikosti"
 
-#: ../../mod/admin.php:629
-msgid "Cache duration in seconds"
-msgstr "Doba platnosti vyrovnávací paměti v sekundách"
+#: ../../mod/photos.php:773
+msgid "Image file is empty."
+msgstr "Soubor obrázku je prázdný."
 
-#: ../../mod/admin.php:629
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One"
-" day)."
-msgstr "Jak dlouho by měla vyrovnávací paměť držet data? Výchozí hodnota je 86400 sekund (Jeden den)."
+#: ../../mod/photos.php:928
+msgid "No photos selected"
+msgstr "Není vybrána žádná fotografie"
 
-#: ../../mod/admin.php:630
-msgid "Path for lock file"
-msgstr "Cesta k souboru zámku"
+#: ../../mod/photos.php:1029 ../../mod/videos.php:226
+msgid "Access to this item is restricted."
+msgstr "Přístup k této položce je omezen."
 
-#: ../../mod/admin.php:631
-msgid "Temp path"
-msgstr "Cesta k dočasným souborům"
+#: ../../mod/photos.php:1092
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Použil jste %1$.2f Mbajtů z %2$.2f Mbajtů úložiště fotografií."
 
-#: ../../mod/admin.php:632
-msgid "Base path to installation"
-msgstr "Základní cesta k instalaci"
+#: ../../mod/photos.php:1127
+msgid "Upload Photos"
+msgstr "Nahrání fotografií "
 
-#: ../../mod/admin.php:634
-msgid "New base url"
-msgstr "Nová výchozí url adresa"
+#: ../../mod/photos.php:1131 ../../mod/photos.php:1199
+msgid "New album name: "
+msgstr "Název nového alba: "
 
-#: ../../mod/admin.php:652
-msgid "Update has been marked successful"
-msgstr "Aktualizace byla označena jako úspěšná."
+#: ../../mod/photos.php:1132
+msgid "or existing album name: "
+msgstr "nebo stávající název alba: "
 
-#: ../../mod/admin.php:662
-#, php-format
-msgid "Executing %s failed. Check system logs."
-msgstr "Vykonávání %s selhalo. Zkontrolujte chybový protokol."
+#: ../../mod/photos.php:1133
+msgid "Do not show a status post for this upload"
+msgstr "Nezobrazovat stav pro tento upload"
 
-#: ../../mod/admin.php:665
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Aktualizace %s byla úspěšně aplikována."
+#: ../../mod/photos.php:1135 ../../mod/photos.php:1506
+msgid "Permissions"
+msgstr "Oprávnění:"
 
-#: ../../mod/admin.php:669
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "Aktualizace %s nevrátila žádný status. Není zřejmé, jestli byla úspěšná."
+#: ../../mod/photos.php:1144 ../../mod/photos.php:1515
+#: ../../mod/settings.php:1139
+msgid "Show to Groups"
+msgstr "Zobrazit ve Skupinách"
 
-#: ../../mod/admin.php:672
-#, php-format
-msgid "Update function %s could not be found."
-msgstr "Aktualizační funkce %s nebyla nalezena."
+#: ../../mod/photos.php:1145 ../../mod/photos.php:1516
+#: ../../mod/settings.php:1140
+msgid "Show to Contacts"
+msgstr "Zobrazit v Kontaktech"
 
-#: ../../mod/admin.php:687
-msgid "No failed updates."
-msgstr "Žádné neúspěšné aktualizace."
+#: ../../mod/photos.php:1146
+msgid "Private Photo"
+msgstr "Soukromé Fotografie"
 
-#: ../../mod/admin.php:691
-msgid "Failed Updates"
-msgstr "Neúspěšné aktualizace"
+#: ../../mod/photos.php:1147
+msgid "Public Photo"
+msgstr "Veřejné Fotografie"
 
-#: ../../mod/admin.php:692
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr "To nezahrnuje aktualizace do verze 1139, které nevracejí žádný status."
+#: ../../mod/photos.php:1214
+msgid "Edit Album"
+msgstr "Edituj album"
 
-#: ../../mod/admin.php:693
-msgid "Mark success (if update was manually applied)"
-msgstr "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)"
+#: ../../mod/photos.php:1220
+msgid "Show Newest First"
+msgstr "Zobrazit nejprve nejnovější:"
 
-#: ../../mod/admin.php:694
-msgid "Attempt to execute this update step automatically"
-msgstr "Pokusit se provést tuto aktualizaci automaticky."
+#: ../../mod/photos.php:1222
+msgid "Show Oldest First"
+msgstr "Zobrazit nejprve nejstarší:"
 
-#: ../../mod/admin.php:740
-msgid "Registration successful. Email send to user"
-msgstr "Registrace úspěšná. Email zaslán uživateli"
+#: ../../mod/photos.php:1255 ../../mod/photos.php:1798
+msgid "View Photo"
+msgstr "Zobraz fotografii"
 
-#: ../../mod/admin.php:750
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s uživatel blokován/odblokován"
-msgstr[1] "%s uživatelů blokováno/odblokováno"
-msgstr[2] "%s uživatelů blokováno/odblokováno"
+#: ../../mod/photos.php:1290
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen."
 
-#: ../../mod/admin.php:757
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s uživatel smazán"
-msgstr[1] "%s uživatelů smazáno"
-msgstr[2] "%s uživatelů smazáno"
+#: ../../mod/photos.php:1292
+msgid "Photo not available"
+msgstr "Fotografie není k dispozici"
 
-#: ../../mod/admin.php:796
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Uživatel '%s' smazán"
+#: ../../mod/photos.php:1348
+msgid "View photo"
+msgstr "Zobrazit obrázek"
 
-#: ../../mod/admin.php:804
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Uživatel '%s' odblokován"
+#: ../../mod/photos.php:1348
+msgid "Edit photo"
+msgstr "Editovat fotografii"
 
-#: ../../mod/admin.php:804
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Uživatel '%s' blokován"
+#: ../../mod/photos.php:1349
+msgid "Use as profile photo"
+msgstr "Použít jako profilovou fotografii"
 
-#: ../../mod/admin.php:899
-msgid "Add User"
-msgstr "Přidat Uživatele"
+#: ../../mod/photos.php:1374
+msgid "View Full Size"
+msgstr "Zobrazit v plné velikosti"
 
-#: ../../mod/admin.php:900
-msgid "select all"
-msgstr "Vybrat vše"
+#: ../../mod/photos.php:1453
+msgid "Tags: "
+msgstr "Štítky: "
 
-#: ../../mod/admin.php:901
-msgid "User registrations waiting for confirm"
-msgstr "Registrace uživatele čeká na potvrzení"
+#: ../../mod/photos.php:1456
+msgid "[Remove any tag]"
+msgstr "[Odstranit všechny štítky]"
 
-#: ../../mod/admin.php:902
-msgid "User waiting for permanent deletion"
-msgstr "Uživatel čeká na trvalé smazání"
+#: ../../mod/photos.php:1496
+msgid "Rotate CW (right)"
+msgstr "Rotovat po směru hodinových ručiček (doprava)"
 
-#: ../../mod/admin.php:903
-msgid "Request date"
-msgstr "Datum žádosti"
+#: ../../mod/photos.php:1497
+msgid "Rotate CCW (left)"
+msgstr "Rotovat proti směru hodinových ručiček (doleva)"
 
-#: ../../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 "Jméno"
+#: ../../mod/photos.php:1499
+msgid "New album name"
+msgstr "Nové jméno alba"
 
-#: ../../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/photos.php:1502
+msgid "Caption"
+msgstr "Titulek"
 
-#: ../../mod/admin.php:904
-msgid "No registrations."
-msgstr "Žádné registrace."
+#: ../../mod/photos.php:1504
+msgid "Add a Tag"
+msgstr "Přidat štítek"
 
-#: ../../mod/admin.php:905 ../../mod/notifications.php:161
-#: ../../mod/notifications.php:208
-msgid "Approve"
-msgstr "Schválit"
+#: ../../mod/photos.php:1508
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: ../../mod/admin.php:906
-msgid "Deny"
-msgstr "Odmítnout"
+#: ../../mod/photos.php:1517
+msgid "Private photo"
+msgstr "Soukromé fotografie"
 
-#: ../../mod/admin.php:908 ../../mod/contacts.php:425
-#: ../../mod/contacts.php:484 ../../mod/contacts.php:692
-msgid "Block"
-msgstr "Blokovat"
+#: ../../mod/photos.php:1518
+msgid "Public photo"
+msgstr "Veřejné fotografie"
 
-#: ../../mod/admin.php:909 ../../mod/contacts.php:425
-#: ../../mod/contacts.php:484 ../../mod/contacts.php:692
-msgid "Unblock"
-msgstr "Odblokovat"
+#: ../../mod/photos.php:1540 ../../include/conversation.php:1088
+msgid "Share"
+msgstr "Sdílet"
 
-#: ../../mod/admin.php:910
-msgid "Site admin"
-msgstr "Site administrátor"
+#: ../../mod/photos.php:1804 ../../mod/videos.php:308
+msgid "View Album"
+msgstr "Zobrazit album"
 
-#: ../../mod/admin.php:911
-msgid "Account expired"
-msgstr "Účtu vypršela platnost"
+#: ../../mod/photos.php:1813
+msgid "Recent Photos"
+msgstr "Aktuální fotografie"
 
-#: ../../mod/admin.php:914
-msgid "New User"
-msgstr "Nový uživatel"
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Žádný profil"
 
-#: ../../mod/admin.php:915 ../../mod/admin.php:916
-msgid "Register date"
-msgstr "Datum registrace"
+#: ../../mod/register.php:100
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce."
 
-#: ../../mod/admin.php:915 ../../mod/admin.php:916
-msgid "Last login"
-msgstr "Datum posledního přihlášení"
+#: ../../mod/register.php:104
+msgid "Failed to send email message. Here is the message that failed."
+msgstr "Nepodařilo se odeslat zprávu na e-mail. Zde je zpráva, která nebyla odeslána."
 
-#: ../../mod/admin.php:915 ../../mod/admin.php:916
-msgid "Last item"
-msgstr "Poslední položka"
+#: ../../mod/register.php:109
+msgid "Your registration can not be processed."
+msgstr "Vaši registraci nelze zpracovat."
 
-#: ../../mod/admin.php:915
-msgid "Deleted since"
-msgstr "Smazán od"
+#: ../../mod/register.php:149
+#, php-format
+msgid "Registration request at %s"
+msgstr "Žádost o registraci na %s"
 
-#: ../../mod/admin.php:916
-msgid "Account"
-msgstr "Účet"
+#: ../../mod/register.php:158
+msgid "Your registration is pending approval by the site owner."
+msgstr "Vaše registrace čeká na schválení vlastníkem serveru."
 
-#: ../../mod/admin.php:918
+#: ../../mod/register.php:196 ../../mod/uimport.php:50
 msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Vybraní uživatelé budou smazáni!\\n\\n Vše, co tito uživatelé na těchto stránkách vytvořili, bude trvale odstraněno!\\n\\n Opravdu pokračovat?"
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to  zítra znovu."
 
-#: ../../mod/admin.php:919
+#: ../../mod/register.php:224
 msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Uživatel {0} bude smazán!\\n\\n Vše, co tento uživatel na těchto stránkách vytvořil, bude trvale odstraněno!\\n\\n Opravdu pokračovat?"
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknutete na tlačítko 'Zaregistrovat'."
 
-#: ../../mod/admin.php:929
-msgid "Name of the new user."
-msgstr "Jméno nového uživatele"
+#: ../../mod/register.php:225
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky."
 
-#: ../../mod/admin.php:930
-msgid "Nickname"
-msgstr "Přezdívka"
+#: ../../mod/register.php:226
+msgid "Your OpenID (optional): "
+msgstr "Vaše OpenID (nepovinné): "
 
-#: ../../mod/admin.php:930
-msgid "Nickname of the new user."
-msgstr "Přezdívka nového uživatele."
+#: ../../mod/register.php:240
+msgid "Include your profile in member directory?"
+msgstr "Toto je Váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu."
 
-#: ../../mod/admin.php:931
-msgid "Email address of the new user."
-msgstr "Emailová adresa nového uživatele."
+#: ../../mod/register.php:261
+msgid "Membership on this site is by invitation only."
+msgstr "Členství na tomto webu je pouze na pozvání."
 
-#: ../../mod/admin.php:964
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plugin %s zakázán."
+#: ../../mod/register.php:262
+msgid "Your invitation ID: "
+msgstr "Vaše pozvání ID:"
 
-#: ../../mod/admin.php:968
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Plugin %s povolen."
+#: ../../mod/register.php:273
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "Vaše celé jméno (např. Jan Novák):"
 
-#: ../../mod/admin.php:978 ../../mod/admin.php:1181
-msgid "Disable"
-msgstr "Zakázat"
+#: ../../mod/register.php:274
+msgid "Your Email Address: "
+msgstr "Vaše e-mailová adresa:"
 
-#: ../../mod/admin.php:980 ../../mod/admin.php:1183
-msgid "Enable"
-msgstr "Povolit"
+#: ../../mod/register.php:275
+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 "Vyberte přezdívku k profilu. Ta musí začít s textovým znakem. Vaše profilová adresa na tomto webu pak bude \"<strong>přezdívka@$sitename</strong>\"."
 
-#: ../../mod/admin.php:1003 ../../mod/admin.php:1211
-msgid "Toggle"
-msgstr "Přepnout"
+#: ../../mod/register.php:276
+msgid "Choose a nickname: "
+msgstr "Vyberte přezdívku:"
 
-#: ../../mod/admin.php:1011 ../../mod/admin.php:1221
-msgid "Author: "
-msgstr "Autor: "
+#: ../../mod/register.php:279 ../../boot.php:1136 ../../include/nav.php:108
+msgid "Register"
+msgstr "Registrovat"
 
-#: ../../mod/admin.php:1012 ../../mod/admin.php:1222
-msgid "Maintainer: "
-msgstr "Správce: "
+#: ../../mod/register.php:285 ../../mod/uimport.php:64
+msgid "Import"
+msgstr "Import"
 
-#: ../../mod/admin.php:1141
-msgid "No themes found."
-msgstr "Nenalezeny žádná témata."
+#: ../../mod/register.php:286
+msgid "Import your profile to this friendica instance"
+msgstr "Import Vašeho profilu do této friendica instance"
 
-#: ../../mod/admin.php:1203
-msgid "Screenshot"
-msgstr "Snímek obrazovky"
+#: ../../mod/lostpass.php:17
+msgid "No valid account found."
+msgstr "Nenalezen žádný platný účet."
 
-#: ../../mod/admin.php:1249
-msgid "[Experimental]"
-msgstr "[Experimentální]"
+#: ../../mod/lostpass.php:33
+msgid "Password reset request issued. Check your email."
+msgstr "Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku."
 
-#: ../../mod/admin.php:1250
-msgid "[Unsupported]"
-msgstr "[Nepodporováno]"
+#: ../../mod/lostpass.php:44
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Na %s bylo zažádáno o resetování hesla"
 
-#: ../../mod/admin.php:1277
-msgid "Log settings updated."
-msgstr "Nastavení protokolu aktualizováno."
-
-#: ../../mod/admin.php:1333
-msgid "Clear"
-msgstr "Vyčistit"
+#: ../../mod/lostpass.php:66
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Žádost nemohla být ověřena. (Možná jste ji odeslali již dříve.) Obnovení hesla se nezdařilo."
 
-#: ../../mod/admin.php:1339
-msgid "Enable Debugging"
-msgstr "Povolit ladění"
+#: ../../mod/lostpass.php:84 ../../boot.php:1175
+msgid "Password Reset"
+msgstr "Obnovení hesla"
 
-#: ../../mod/admin.php:1340
-msgid "Log file"
-msgstr "Soubor s logem"
+#: ../../mod/lostpass.php:85
+msgid "Your password has been reset as requested."
+msgstr "Vaše heslo bylo na Vaše přání resetováno."
 
-#: ../../mod/admin.php:1340
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "Musí být editovatelné web serverem. Relativní cesta k vašemu kořenovému adresáři Friendica"
+#: ../../mod/lostpass.php:86
+msgid "Your new password is"
+msgstr "Někdo Vám napsal na Vaši profilovou stránku"
 
-#: ../../mod/admin.php:1341
-msgid "Log level"
-msgstr "Úroveň auditu"
+#: ../../mod/lostpass.php:87
+msgid "Save or copy your new password - and then"
+msgstr "Uložte si nebo zkopírujte nové heslo - a pak"
 
-#: ../../mod/admin.php:1390 ../../mod/contacts.php:481
-msgid "Update now"
-msgstr "Aktualizovat"
+#: ../../mod/lostpass.php:88
+msgid "click here to login"
+msgstr "klikněte zde pro přihlášení"
 
-#: ../../mod/admin.php:1391
-msgid "Close"
-msgstr "Zavřít"
+#: ../../mod/lostpass.php:89
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení)."
 
-#: ../../mod/admin.php:1397
-msgid "FTP Host"
-msgstr "Hostitel FTP"
+#: ../../mod/lostpass.php:107
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Vaše heslo bylo změněno na %s"
 
-#: ../../mod/admin.php:1398
-msgid "FTP Path"
-msgstr "Cesta FTP"
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
+msgstr "Zapomněli jste heslo?"
 
-#: ../../mod/admin.php:1399
-msgid "FTP User"
-msgstr "FTP uživatel"
+#: ../../mod/lostpass.php:123
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Zadejte svůj e-mailovou adresu a odešlete žádost o zaslání Vašeho nového hesla. Poté zkontrolujte svůj e-mail pro další instrukce."
 
-#: ../../mod/admin.php:1400
-msgid "FTP Password"
-msgstr "FTP heslo"
+#: ../../mod/lostpass.php:124
+msgid "Nickname or Email: "
+msgstr "Přezdívka nebo e-mail: "
 
-#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:934
-#: ../../include/text.php:935 ../../include/nav.php:118
-msgid "Search"
-msgstr "Vyhledávání"
+#: ../../mod/lostpass.php:125
+msgid "Reset"
+msgstr "Reset"
 
-#: ../../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 "Žádné výsledky."
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
+msgstr "Systém vypnut z důvodů údržby"
 
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Tipy pro nové členy"
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "Položka není k dispozici."
 
-#: ../../mod/share.php:44
-msgid "link"
-msgstr "odkaz"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "Položka nebyla nalezena."
 
-#: ../../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 označen uživatelem %2$s %3$s s %4$s"
+#: ../../mod/apps.php:11
+msgid "Applications"
+msgstr "Aplikace"
 
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "Položka nenalezena"
+#: ../../mod/apps.php:14
+msgid "No installed applications."
+msgstr "Žádné nainstalované aplikace."
 
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "Upravit příspěvek"
+#: ../../mod/help.php:79
+msgid "Help:"
+msgstr "Nápověda:"
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1082
-msgid "upload photo"
-msgstr "nahrát fotky"
+#: ../../mod/help.php:84 ../../include/nav.php:113
+msgid "Help"
+msgstr "Nápověda"
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1083
-msgid "Attach file"
-msgstr "Přiložit soubor"
+#: ../../mod/contacts.php:104
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited"
+msgstr[0] "%d kontakt upraven."
+msgstr[1] "%d kontakty upraveny"
+msgstr[2] "%d kontaktů upraveno"
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1084
-msgid "attach file"
-msgstr "přidat soubor"
+#: ../../mod/contacts.php:135 ../../mod/contacts.php:264
+msgid "Could not access contact record."
+msgstr "Nelze získat přístup k záznamu kontaktu."
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1086
-msgid "web link"
-msgstr "webový odkaz"
+#: ../../mod/contacts.php:149
+msgid "Could not locate selected profile."
+msgstr "Nelze nalézt vybraný profil."
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:1087
-msgid "Insert video link"
-msgstr "Zadejte odkaz na video"
+#: ../../mod/contacts.php:178
+msgid "Contact updated."
+msgstr "Kontakt aktualizován."
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:1088
-msgid "video link"
-msgstr "odkaz na video"
+#: ../../mod/contacts.php:278
+msgid "Contact has been blocked"
+msgstr "Kontakt byl zablokován"
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1089
-msgid "Insert audio link"
-msgstr "Zadejte odkaz na zvukový záznam"
+#: ../../mod/contacts.php:278
+msgid "Contact has been unblocked"
+msgstr "Kontakt byl odblokován"
 
-#: ../../mod/editpost.php:119 ../../include/conversation.php:1090
-msgid "audio link"
-msgstr "odkaz na audio"
+#: ../../mod/contacts.php:288
+msgid "Contact has been ignored"
+msgstr "Kontakt bude ignorován"
 
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1091
-msgid "Set your location"
-msgstr "Nastavte vaši polohu"
+#: ../../mod/contacts.php:288
+msgid "Contact has been unignored"
+msgstr "Kontakt přestal být ignorován"
 
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1092
-msgid "set location"
-msgstr "nastavit místo"
+#: ../../mod/contacts.php:299
+msgid "Contact has been archived"
+msgstr "Kontakt byl archivován"
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1093
-msgid "Clear browser location"
-msgstr "Odstranit adresu v prohlížeči"
+#: ../../mod/contacts.php:299
+msgid "Contact has been unarchived"
+msgstr "Kontakt byl vrácen z archívu."
 
-#: ../../mod/editpost.php:123 ../../include/conversation.php:1094
-msgid "clear location"
-msgstr "vymazat místo"
+#: ../../mod/contacts.php:324 ../../mod/contacts.php:697
+msgid "Do you really want to delete this contact?"
+msgstr "Opravdu chcete smazat tento kontakt?"
 
-#: ../../mod/editpost.php:125 ../../include/conversation.php:1100
-msgid "Permission settings"
-msgstr "Nastavení oprávnění"
+#: ../../mod/contacts.php:341
+msgid "Contact has been removed."
+msgstr "Kontakt byl odstraněn."
 
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1109
-msgid "CC: email addresses"
-msgstr "skrytá kopie: e-mailové adresy"
+#: ../../mod/contacts.php:379
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Jste vzájemní přátelé s uživatelem %s"
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1110
-msgid "Public post"
-msgstr "Veřejný příspěvek"
+#: ../../mod/contacts.php:383
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Sdílíte s uživatelem %s"
 
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1096
-msgid "Set title"
-msgstr "Nastavit titulek"
+#: ../../mod/contacts.php:388
+#, php-format
+msgid "%s is sharing with you"
+msgstr "uživatel %s sdílí s vámi"
 
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1098
-msgid "Categories (comma-separated list)"
-msgstr "Kategorie (čárkou oddělený seznam)"
+#: ../../mod/contacts.php:405
+msgid "Private communications are not available for this contact."
+msgstr "Soukromá komunikace není dostupná pro tento kontakt."
 
-#: ../../mod/editpost.php:140 ../../include/conversation.php:1112
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Příklad: bob@example.com, mary@example.com"
+#: ../../mod/contacts.php:412
+msgid "(Update was successful)"
+msgstr "(Aktualizace byla úspěšná)"
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "Položka není k dispozici."
+#: ../../mod/contacts.php:412
+msgid "(Update was not successful)"
+msgstr "(Aktualizace nebyla úspěšná)"
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "Položka nebyla nalezena."
+#: ../../mod/contacts.php:414
+msgid "Suggest friends"
+msgstr "Navrhněte přátelé"
 
-#: ../../mod/regmod.php:63
-msgid "Account approved."
-msgstr "Účet schválen."
+#: ../../mod/contacts.php:418
+#, php-format
+msgid "Network type: %s"
+msgstr "Typ sítě: %s"
 
-#: ../../mod/regmod.php:100
+#: ../../mod/contacts.php:421 ../../include/contact_widgets.php:199
 #, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrace zrušena pro %s"
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d sdílený kontakt"
+msgstr[1] "%d sdílených kontaktů"
+msgstr[2] "%d sdílených kontaktů"
 
-#: ../../mod/regmod.php:112
-msgid "Please login."
-msgstr "Přihlaste se, prosím."
+#: ../../mod/contacts.php:426
+msgid "View all contacts"
+msgstr "Zobrazit všechny kontakty"
 
-#: ../../mod/directory.php:57
-msgid "Find on this site"
-msgstr "Nalézt na tomto webu"
+#: ../../mod/contacts.php:434
+msgid "Toggle Blocked status"
+msgstr "Přepnout stav Blokováno"
 
-#: ../../mod/directory.php:59 ../../mod/contacts.php:685
-msgid "Finding: "
-msgstr "Zjištění: "
+#: ../../mod/contacts.php:437 ../../mod/contacts.php:491
+#: ../../mod/contacts.php:701
+msgid "Unignore"
+msgstr "Přestat ignorovat"
 
-#: ../../mod/directory.php:60
-msgid "Site Directory"
-msgstr "Adresář serveru"
+#: ../../mod/contacts.php:440
+msgid "Toggle Ignored status"
+msgstr "Přepnout stav Ignorováno"
 
-#: ../../mod/directory.php:61 ../../mod/contacts.php:686
-#: ../../include/contact_widgets.php:33
-msgid "Find"
-msgstr "Najít"
+#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
+msgid "Unarchive"
+msgstr "Vrátit z archívu"
 
-#: ../../mod/directory.php:111 ../../mod/profiles.php:686
-msgid "Age: "
-msgstr "Věk: "
+#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
+msgid "Archive"
+msgstr "Archivovat"
 
-#: ../../mod/directory.php:114
-msgid "Gender: "
-msgstr "Pohlaví: "
+#: ../../mod/contacts.php:447
+msgid "Toggle Archive status"
+msgstr "Přepnout stav Archivováno"
 
-#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
-msgid "About:"
-msgstr "O mě:"
+#: ../../mod/contacts.php:450
+msgid "Repair"
+msgstr "Opravit"
 
-#: ../../mod/directory.php:187
-msgid "No entries (some entries may be hidden)."
-msgstr "Žádné záznamy (některé položky mohou být skryty)."
+#: ../../mod/contacts.php:453
+msgid "Advanced Contact Settings"
+msgstr "Pokročilé nastavení kontaktu"
 
-#: ../../mod/crepair.php:104
-msgid "Contact settings applied."
-msgstr "Nastavení kontaktu změněno"
+#: ../../mod/contacts.php:459
+msgid "Communications lost with this contact!"
+msgstr "Komunikace s tímto kontaktem byla ztracena!"
 
-#: ../../mod/crepair.php:106
-msgid "Contact update failed."
-msgstr "Aktualizace kontaktu selhala."
+#: ../../mod/contacts.php:462
+msgid "Contact Editor"
+msgstr "Editor kontaktu"
 
-#: ../../mod/crepair.php:137
-msgid "Repair Contact Settings"
-msgstr "Opravit nastavení kontaktu"
+#: ../../mod/contacts.php:465
+msgid "Profile Visibility"
+msgstr "Viditelnost profilu"
 
-#: ../../mod/crepair.php:139
+#: ../../mod/contacts.php:466
+#, php-format
 msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>Varování: Toto je velmi pokročilé</strong> a pokud zadáte nesprávné informace, Vaše komunikace s tímto kontaktem může přestat fungovat."
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu."
 
-#: ../../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 "Prosím použijte <strong>ihned</strong> v prohlížeči tlačítko \"zpět\" pokud si nejste jistí co dělat na této stránce."
+#: ../../mod/contacts.php:467
+msgid "Contact Information / Notes"
+msgstr "Kontaktní informace / poznámky"
 
-#: ../../mod/crepair.php:146
-msgid "Return to contact editor"
-msgstr "Návrat k editoru kontaktu"
+#: ../../mod/contacts.php:468
+msgid "Edit contact notes"
+msgstr "Editovat poznámky kontaktu"
 
-#: ../../mod/crepair.php:151
-msgid "Account Nickname"
-msgstr "Přezdívka účtu"
+#: ../../mod/contacts.php:474
+msgid "Block/Unblock contact"
+msgstr "Blokovat / Odblokovat kontakt"
 
-#: ../../mod/crepair.php:152
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Tagname - upřednostněno před Jménem/Přezdívkou"
+#: ../../mod/contacts.php:475
+msgid "Ignore contact"
+msgstr "Ignorovat kontakt"
 
-#: ../../mod/crepair.php:153
-msgid "Account URL"
-msgstr "URL adresa účtu"
+#: ../../mod/contacts.php:476
+msgid "Repair URL settings"
+msgstr "Opravit nastavení adresy URL "
 
-#: ../../mod/crepair.php:154
-msgid "Friend Request URL"
-msgstr "Žádost o přátelství URL"
+#: ../../mod/contacts.php:477
+msgid "View conversations"
+msgstr "Zobrazit konverzace"
 
-#: ../../mod/crepair.php:155
-msgid "Friend Confirm URL"
-msgstr "URL adresa potvrzení přátelství"
+#: ../../mod/contacts.php:479
+msgid "Delete contact"
+msgstr "Odstranit kontakt"
 
-#: ../../mod/crepair.php:156
-msgid "Notification Endpoint URL"
-msgstr "Notifikační URL adresa"
+#: ../../mod/contacts.php:483
+msgid "Last update:"
+msgstr "Poslední aktualizace:"
 
-#: ../../mod/crepair.php:157
-msgid "Poll/Feed URL"
-msgstr "Poll/Feed URL adresa"
+#: ../../mod/contacts.php:485
+msgid "Update public posts"
+msgstr "Aktualizovat veřejné příspěvky"
 
-#: ../../mod/crepair.php:158
-msgid "New photo from this URL"
-msgstr "Nové foto z této URL adresy"
+#: ../../mod/contacts.php:494
+msgid "Currently blocked"
+msgstr "V současnosti zablokováno"
 
-#: ../../mod/crepair.php:159
-msgid "Remote Self"
-msgstr "Remote Self"
+#: ../../mod/contacts.php:495
+msgid "Currently ignored"
+msgstr "V současnosti ignorováno"
 
-#: ../../mod/crepair.php:161
-msgid "Mirror postings from this contact"
-msgstr "Zrcadlení správ od tohoto kontaktu"
+#: ../../mod/contacts.php:496
+msgid "Currently archived"
+msgstr "Aktuálně archivován"
 
-#: ../../mod/crepair.php:161
+#: ../../mod/contacts.php:497
 msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
-msgstr "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu."
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Odpovědi/Libí se na Vaše veřejné příspěvky <strong>mohou být</strong> stále viditelné"
+
+#: ../../mod/contacts.php:498
+msgid "Notification for new posts"
+msgstr "Upozornění na nové příspěvky"
+
+#: ../../mod/contacts.php:498
+msgid "Send a notification of every new post of this contact"
+msgstr "Poslat upozornění při každém novém příspěvku tohoto kontaktu"
+
+#: ../../mod/contacts.php:499
+msgid "Fetch further information for feeds"
+msgstr "Načíst další informace pro kanál"
+
+#: ../../mod/contacts.php:550
+msgid "Suggestions"
+msgstr "Doporučení"
+
+#: ../../mod/contacts.php:553
+msgid "Suggest potential friends"
+msgstr "Navrhnout potenciální přátele"
+
+#: ../../mod/contacts.php:556 ../../mod/group.php:194
+msgid "All Contacts"
+msgstr "Všechny kontakty"
+
+#: ../../mod/contacts.php:559
+msgid "Show all contacts"
+msgstr "Zobrazit všechny kontakty"
+
+#: ../../mod/contacts.php:562
+msgid "Unblocked"
+msgstr "Odblokován"
+
+#: ../../mod/contacts.php:565
+msgid "Only show unblocked contacts"
+msgstr "Zobrazit pouze neblokované kontakty"
+
+#: ../../mod/contacts.php:569
+msgid "Blocked"
+msgstr "Blokován"
+
+#: ../../mod/contacts.php:572
+msgid "Only show blocked contacts"
+msgstr "Zobrazit pouze blokované kontakty"
+
+#: ../../mod/contacts.php:576
+msgid "Ignored"
+msgstr "Ignorován"
+
+#: ../../mod/contacts.php:579
+msgid "Only show ignored contacts"
+msgstr "Zobrazit pouze ignorované kontakty"
+
+#: ../../mod/contacts.php:583
+msgid "Archived"
+msgstr "Archivován"
+
+#: ../../mod/contacts.php:586
+msgid "Only show archived contacts"
+msgstr "Zobrazit pouze archivované kontakty"
+
+#: ../../mod/contacts.php:590
+msgid "Hidden"
+msgstr "Skrytý"
+
+#: ../../mod/contacts.php:593
+msgid "Only show hidden contacts"
+msgstr "Zobrazit pouze skryté kontakty"
+
+#: ../../mod/contacts.php:641
+msgid "Mutual Friendship"
+msgstr "Vzájemné přátelství"
+
+#: ../../mod/contacts.php:645
+msgid "is a fan of yours"
+msgstr "je Váš fanoušek"
+
+#: ../../mod/contacts.php:649
+msgid "you are a fan of"
+msgstr "jste fanouškem"
+
+#: ../../mod/contacts.php:688 ../../view/theme/diabook/theme.php:125
+#: ../../include/nav.php:173
+msgid "Contacts"
+msgstr "Kontakty"
+
+#: ../../mod/contacts.php:692
+msgid "Search your contacts"
+msgstr "Prohledat Vaše kontakty"
+
+#: ../../mod/contacts.php:693 ../../mod/directory.php:59
+msgid "Finding: "
+msgstr "Zjištění: "
+
+#: ../../mod/contacts.php:694 ../../mod/directory.php:61
+#: ../../include/contact_widgets.php:33
+msgid "Find"
+msgstr "Najít"
+
+#: ../../mod/contacts.php:699 ../../mod/settings.php:132
+#: ../../mod/settings.php:635
+msgid "Update"
+msgstr "Aktualizace"
+
+#: ../../mod/videos.php:125
+msgid "No videos selected"
+msgstr "Není vybráno žádné video"
+
+#: ../../mod/videos.php:317
+msgid "Recent Videos"
+msgstr "Aktuální Videa"
+
+#: ../../mod/videos.php:319
+msgid "Upload New Videos"
+msgstr "Nahrát nová videa"
+
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "Společní přátelé"
+
+#: ../../mod/common.php:78
+msgid "No contacts in common."
+msgstr "Žádné společné kontakty."
+
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr "Kontakt přidán"
 
 #: ../../mod/uimport.php:66
 msgid "Move account"
@@ -3047,3487 +3045,3702 @@ msgid ""
 "select \"Export account\""
 msgstr "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\""
 
-#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Vzdálené soukromé informace nejsou k dispozici."
-
-#: ../../mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Viditelné pro:"
+#: ../../mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s následuje %3$s uživatele %2$s"
 
-#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:937
-msgid "Save"
-msgstr "Uložit"
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "Přátelé uživatele %s"
 
-#: ../../mod/help.php:79
-msgid "Help:"
-msgstr "Nápověda:"
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Žádní přátelé k zobrazení"
 
-#: ../../mod/help.php:84 ../../include/nav.php:113
-msgid "Help"
-msgstr "Nápověda"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Štítek odstraněn"
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Žádný profil"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Odebrat štítek položky"
 
-#: ../../mod/dfrn_request.php:93
-msgid "This introduction has already been accepted."
-msgstr "Toto pozvání již bylo přijato."
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Vyberte štítek k odebrání: "
 
-#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Adresa profilu není platná nebo neobsahuje profilové informace"
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133
+msgid "Remove"
+msgstr "Odstranit"
 
-#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka"
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Vítejte na Friendica"
 
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
-msgid "Warning: profile location has no profile photo."
-msgstr "Varování: umístění profilu nemá žádnou profilovou fotografii."
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Seznam doporučení pro nového člena"
 
-#: ../../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 požadovaný parametr nebyl nalezen na daném místě"
-msgstr[1] "%d požadované parametry nebyly nalezeny na daném místě"
-msgstr[2] "%d požadované parametry nebyly nalezeny na daném místě"
+#: ../../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 "Rádi bychom vám nabídli několik tipů a odkazů pro začátek. Klikněte na jakoukoliv položku pro zobrazení relevantní stránky. Odkaz na tuto stránku bude viditelný z Vaší domovské stránky po dobu dvou týdnů od Vaší první registrace."
 
-#: ../../mod/dfrn_request.php:170
-msgid "Introduction complete."
-msgstr "Představení dokončeno."
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Začínáme"
 
-#: ../../mod/dfrn_request.php:209
-msgid "Unrecoverable protocol error."
-msgstr "Neopravitelná chyba protokolu"
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Prohlídka Friendica "
 
-#: ../../mod/dfrn_request.php:237
-msgid "Profile unavailable."
-msgstr "Profil není k dispozici."
+#: ../../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 "Na Vaší stránce <em>Rychlý Start</em> - naleznete stručné představení k Vašemu profilu a záložce Síť, k vytvoření spojení s novými kontakty a nalezení skupin, ke kterým se můžete připojit."
 
-#: ../../mod/dfrn_request.php:262
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Navštivte své nastavení"
+
+#: ../../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 "Na Vaší stránce <em>Nastavení</em> - si změňte Vaše první heslo.\nVěnujte také svou pozornost k adrese identity. Vypadá jako emailová adresa a bude Vám užitečná pro navazování přátelství na svobodné sociální síti."
+
+#: ../../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 "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši potenciální přátelé věděli, jak vás přesně najít."
+
+#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
+#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979
+#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
+#: ../../include/nav.php:77
+msgid "Profile"
+msgstr "Profil"
+
+#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
+msgstr "Nahrát profilovou fotografii"
+
+#: ../../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 "Nahrajte si svou profilovou fotku, pokud jste tak již neučinili. Studie ukázaly, že lidé se skutečnými fotografiemi mají desetkrát častěji přátele než lidé, kteří nemají."
+
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Editujte Váš profil"
+
+#: ../../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 "Upravit <strong>výchozí</strong> profil podle vašich představ. Prověřte nastavení pro skrytí Vašeho  seznamu přátel a skrytí profilu před neznámými návštěvníky."
+
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Profilová klíčová slova"
+
+#: ../../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 "Nastavte si nějaká veřejné klíčová slova pro výchozí profil, která popisují Vaše zájmy. Friendika Vám může nalézt další lidi s podobnými zájmy a navrhnout přátelství."
+
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Probíhá pokus o připojení"
+
+#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
+#: ../../include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
+
+#: ../../mod/newmember.php:49
+msgid ""
+"Authorise the Facebook Connector if you currently have a Facebook account "
+"and we will (optionally) import all your Facebook friends and conversations."
+msgstr "Jestliže máte účet na Facebooku, povolte konektor na Facebook a bude možné (na přání) importovat všechny Vaš přátele na Facebooku a všechny Vaše konverzace."
+
+#: ../../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 "<em>Pokud</em> je toto Váš soukromý server, instalací Facebok doplňku můžete zjednodušit Váš přechod na svobodný sociální web."
+
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "Importování emaiů"
+
+#: ../../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 "Pokud chcete importovat své přátele nebo mailové skupiny a komunikovat s nimi, zadejte na Vaší stránce Nastavení kontektoru své přístupové údaje do svého emailového účtu"
+
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Navštivte Vaši stránku s kontakty"
+
+#: ../../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 "Vaše stránka Kontakty je Vaše brána k nastavování přátelství a propojení s přáteli z dalších sítí. Typicky zadáte jejich emailovou adresu nebo URL adresu jejich serveru prostřednictvím dialogu <em>Přidat nový kontakt</em>."
+
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Navštivte lokální adresář Friendica"
+
+#: ../../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 "Stránka Adresář Vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Prostřednictvím odkazů <em>Připojení</em> nebo <em>Následovat</em> si prohlédněte jejich profilovou stránku. Uveďte svou vlastní adresu identity, je-li požadována."
+
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Nalezení nových lidí"
+
+#: ../../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 "Na bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin."
+
+#: ../../mod/newmember.php:66 ../../include/group.php:270
+msgid "Groups"
+msgstr "Skupiny"
+
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Seskupte si své kontakty"
+
+#: ../../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 "Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu Vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť."
+
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Proč nejsou mé příspěvky veřejné?"
+
+#: ../../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 "Friendica respektuje Vaše soukromí. Defaultně  jsou Vaše příspěvky viditelné pouze lidem, které označíte jako Vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu"
+
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Získání nápovědy"
+
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Navštivte sekci nápovědy"
+
+#: ../../mod/newmember.php:82
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Na stránkách <strong>Nápověda</strong> naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací."
+
+#: ../../mod/search.php:21 ../../mod/network.php:179
+msgid "Remove term"
+msgstr "Odstranit termín"
+
+#: ../../mod/search.php:30 ../../mod/network.php:188
+#: ../../include/features.php:42
+msgid "Saved Searches"
+msgstr "Uložená hledání"
+
+#: ../../mod/search.php:99 ../../include/text.php:951
+#: ../../include/text.php:952 ../../include/nav.php:118
+msgid "Search"
+msgstr "Vyhledávání"
+
+#: ../../mod/search.php:170 ../../mod/search.php:196
+#: ../../mod/community.php:62 ../../mod/community.php:89
+msgid "No results."
+msgstr "Žádné výsledky."
+
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "Celkový limit pozvánek byl překročen"
+
+#: ../../mod/invite.php:49
 #, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s dnes obdržel příliš mnoho požadavků na připojení."
+msgid "%s : Not a valid email address."
+msgstr "%s : není platná e-mailová adresa."
 
-#: ../../mod/dfrn_request.php:263
-msgid "Spam protection measures have been invoked."
-msgstr "Ochrana proti spamu byla aktivována"
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Prosím přidejte se k nám na Friendice"
 
-#: ../../mod/dfrn_request.php:264
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Přátelům se doporučuje to zkusit znovu za 24 hodin."
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limit pozvánek byl překročen. Prosím kontaktujte vašeho administrátora webu."
 
-#: ../../mod/dfrn_request.php:326
-msgid "Invalid locator"
-msgstr "Neplatný odkaz"
+#: ../../mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : Doručení zprávy se nezdařilo."
 
-#: ../../mod/dfrn_request.php:335
-msgid "Invalid email address."
-msgstr "Neplatná emailová adresa"
+#: ../../mod/invite.php:93
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d zpráva odeslána."
+msgstr[1] "%d zprávy odeslány."
+msgstr[2] "%d zprávy odeslány."
 
-#: ../../mod/dfrn_request.php:362
-msgid "This account has not been configured for email. Request failed."
-msgstr "Tento účet nebyl nastaven pro email. Požadavek nesplněn."
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Nemáte k dispozici žádné další pozvánky"
 
-#: ../../mod/dfrn_request.php:458
-msgid "Unable to resolve your name at the provided location."
-msgstr "Nepodařilo se zjistit Vaše jméno na zadané adrese."
+#: ../../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 "Navštivte %s pro seznam veřejných serverů, na kterých se můžete přidat. Členové Friendica se mohou navzájem propojovat, stejně tak jako se mohou přiopojit se členy mnoha dalších sociálních sítí."
 
-#: ../../mod/dfrn_request.php:471
-msgid "You have already introduced yourself here."
-msgstr "Již jste se zde zavedli."
+#: ../../mod/invite.php:122
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "K akceptaci této pozvánky prosím navštivte a registrujte se na %s nebo na kterékoliv jiném veřejném Friendica serveru."
 
-#: ../../mod/dfrn_request.php:475
+#: ../../mod/invite.php:123
 #, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Zřejmě jste již přátelé se %s."
+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 "Friendica servery jsou všechny propojené a vytváří tak rozsáhlou sociální síť s důrazem na soukromý a je pod kontrolou svých členů. Členové se mohou propojovat s mnoha dalšími tradičními sociálními sítěmi. Navštivte %s pro seznam alternativních Friendica serverů kde se můžete přidat."
 
-#: ../../mod/dfrn_request.php:496
-msgid "Invalid profile URL."
-msgstr "Neplatné URL profilu."
+#: ../../mod/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy."
 
-#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
-msgid "Disallowed profile URL."
-msgstr "Nepovolené URL profilu."
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Poslat pozvánky"
 
-#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:174
-msgid "Failed to update contact record."
-msgstr "Nepodařilo se aktualizovat kontakt."
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "Zadejte e-mailové adresy, jednu na řádek:"
 
-#: ../../mod/dfrn_request.php:592
-msgid "Your introduction has been sent."
-msgstr "Vaše žádost o propojení byla odeslána."
+#: ../../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 "Jste srdečně pozván se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální síť."
 
-#: ../../mod/dfrn_request.php:645
-msgid "Please login to confirm introduction."
-msgstr "Prosím přihlašte se k potvrzení žádosti o propojení."
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Budete muset zadat kód této pozvánky: $invite_code"
 
-#: ../../mod/dfrn_request.php:659
+#: ../../mod/invite.php:137
 msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Jste přihlášeni pod nesprávnou identitou  Prosím, přihlaste se do <strong>tohoto</strong> profilu."
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu stránku na:"
 
-#: ../../mod/dfrn_request.php:670
-msgid "Hide this contact"
-msgstr "Skrýt tento kontakt"
+#: ../../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 "Pro více informací o Friendica projektu a o tom, proč je tak důležitý, prosím navštivte http://friendica.com"
+
+#: ../../mod/settings.php:41
+msgid "Additional features"
+msgstr "Další funkčnosti"
+
+#: ../../mod/settings.php:46
+msgid "Display"
+msgstr "Zobrazení"
+
+#: ../../mod/settings.php:52 ../../mod/settings.php:775
+msgid "Social Networks"
+msgstr "Sociální sítě"
+
+#: ../../mod/settings.php:62 ../../include/nav.php:167
+msgid "Delegations"
+msgstr "Delegace"
+
+#: ../../mod/settings.php:67
+msgid "Connected apps"
+msgstr "Propojené aplikace"
+
+#: ../../mod/settings.php:72 ../../mod/uexport.php:85
+msgid "Export personal data"
+msgstr "Export osobních údajů"
 
-#: ../../mod/dfrn_request.php:673
-#, php-format
-msgid "Welcome home %s."
-msgstr "Vítejte doma %s."
+#: ../../mod/settings.php:77
+msgid "Remove account"
+msgstr "Odstranit účet"
 
-#: ../../mod/dfrn_request.php:674
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Prosím potvrďte Vaši žádost o propojení %s."
+#: ../../mod/settings.php:129
+msgid "Missing some important data!"
+msgstr "Chybí některé důležité údaje!"
 
-#: ../../mod/dfrn_request.php:675
-msgid "Confirm"
-msgstr "Potvrdit"
+#: ../../mod/settings.php:238
+msgid "Failed to connect with email account using the settings provided."
+msgstr "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení."
 
-#: ../../mod/dfrn_request.php:716 ../../include/items.php:3532
-msgid "[Name Withheld]"
-msgstr "[Jméno odepřeno]"
+#: ../../mod/settings.php:243
+msgid "Email settings updated."
+msgstr "Nastavení e-mailu aktualizována."
 
-#: ../../mod/dfrn_request.php:811
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Prosím zadejte Vaši adresu identity jedné z následujících podporovaných komunikačních sítí:"
+#: ../../mod/settings.php:258
+msgid "Features updated"
+msgstr "Aktualizované funkčnosti"
 
-#: ../../mod/dfrn_request.php:827
-msgid "<strike>Connect as an email follower</strike> (Coming soon)"
-msgstr "<strike>Připojte se jako emailový následovník</strike> (Již brzy)"
+#: ../../mod/settings.php:319
+msgid "Relocate message has been send to your contacts"
+msgstr "Správa o změně umístění byla odeslána vašim kontaktům"
 
-#: ../../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 "Pokud ještě nejste členem svobodné sociální sítě, <a href=\"http://dir.friendica.com/siteinfo\">následujte tento odkaz k nalezení veřejného Friendica serveru a přidejte se k nám ještě dnes</a>."
+#: ../../mod/settings.php:333
+msgid "Passwords do not match. Password unchanged."
+msgstr "Hesla se neshodují. Heslo nebylo změněno."
 
-#: ../../mod/dfrn_request.php:832
-msgid "Friend/Connection Request"
-msgstr "Požadavek o přátelství / kontaktování"
+#: ../../mod/settings.php:338
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Prázdné hesla nejsou povolena. Heslo nebylo změněno."
 
-#: ../../mod/dfrn_request.php:833
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+#: ../../mod/settings.php:346
+msgid "Wrong password."
+msgstr "Špatné heslo."
 
-#: ../../mod/dfrn_request.php:834
-msgid "Please answer the following:"
-msgstr "Odpovězte, prosím, následující:"
+#: ../../mod/settings.php:357
+msgid "Password changed."
+msgstr "Heslo bylo změněno."
 
-#: ../../mod/dfrn_request.php:835
-#, php-format
-msgid "Does %s know you?"
-msgstr "Zná Vás uživatel %s ?"
+#: ../../mod/settings.php:359
+msgid "Password update failed. Please try again."
+msgstr "Aktualizace hesla se nezdařila. Zkuste to prosím znovu."
 
-#: ../../mod/dfrn_request.php:838
-msgid "Add a personal note:"
-msgstr "Přidat osobní poznámku:"
+#: ../../mod/settings.php:424
+msgid " Please use a shorter name."
+msgstr "Prosím použijte kratší jméno."
 
-#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../mod/settings.php:426
+msgid " Name too short."
+msgstr "Jméno je příliš krátké."
 
-#: ../../mod/dfrn_request.php:841
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet / Federativní Sociální Web"
+#: ../../mod/settings.php:435
+msgid "Wrong Password"
+msgstr "Špatné heslo"
 
-#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:722
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
-msgstr "Diaspora"
+#: ../../mod/settings.php:440
+msgid " Not valid email."
+msgstr "Neplatný e-mail."
 
-#: ../../mod/dfrn_request.php:843
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - prosím nepoužívejte tento formulář.  Místo toho zadejte %s do Vašeho Diaspora vyhledávacího pole."
+#: ../../mod/settings.php:446
+msgid " Cannot change to that email."
+msgstr "Nelze provést změnu na tento e-mail."
 
-#: ../../mod/dfrn_request.php:844
-msgid "Your Identity Address:"
-msgstr "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\"."
+#: ../../mod/settings.php:501
+msgid "Private forum has no privacy permissions. Using default privacy group."
+msgstr "Soukromé fórum nemá nastaveno zabezpečení. Používá se defaultní soukromá skupina."
 
-#: ../../mod/dfrn_request.php:847
-msgid "Submit Request"
-msgstr "Odeslat žádost"
+#: ../../mod/settings.php:505
+msgid "Private forum has no privacy permissions and no default privacy group."
+msgstr "Soukromé fórum nemá nastaveno zabezpečení a ani žádnou defaultní soukromou skupinu."
 
-#: ../../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 "[Vložený obsah - obnovení stránky pro zobrazení]"
+#: ../../mod/settings.php:535
+msgid "Settings updated."
+msgstr "Nastavení aktualizováno."
 
-#: ../../mod/content.php:496 ../../include/conversation.php:686
-msgid "View in context"
-msgstr "Pohled v kontextu"
+#: ../../mod/settings.php:608 ../../mod/settings.php:634
+#: ../../mod/settings.php:670
+msgid "Add application"
+msgstr "Přidat aplikaci"
 
-#: ../../mod/contacts.php:104
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited"
-msgstr[0] "%d kontakt upraven."
-msgstr[1] "%d kontakty upraveny"
-msgstr[2] "%d kontaktů upraveno"
+#: ../../mod/settings.php:612 ../../mod/settings.php:638
+msgid "Consumer Key"
+msgstr "Consumer Key"
 
-#: ../../mod/contacts.php:135 ../../mod/contacts.php:258
-msgid "Could not access contact record."
-msgstr "Nelze získat přístup k záznamu kontaktu."
+#: ../../mod/settings.php:613 ../../mod/settings.php:639
+msgid "Consumer Secret"
+msgstr "Consumer Secret"
 
-#: ../../mod/contacts.php:149
-msgid "Could not locate selected profile."
-msgstr "Nelze nalézt vybraný profil."
+#: ../../mod/settings.php:614 ../../mod/settings.php:640
+msgid "Redirect"
+msgstr "Přesměrování"
 
-#: ../../mod/contacts.php:172
-msgid "Contact updated."
-msgstr "Kontakt aktualizován."
+#: ../../mod/settings.php:615 ../../mod/settings.php:641
+msgid "Icon url"
+msgstr "URL ikony"
 
-#: ../../mod/contacts.php:272
-msgid "Contact has been blocked"
-msgstr "Kontakt byl zablokován"
+#: ../../mod/settings.php:626
+msgid "You can't edit this application."
+msgstr "Nemůžete editovat tuto aplikaci."
 
-#: ../../mod/contacts.php:272
-msgid "Contact has been unblocked"
-msgstr "Kontakt byl odblokován"
+#: ../../mod/settings.php:669
+msgid "Connected Apps"
+msgstr "Připojené aplikace"
 
-#: ../../mod/contacts.php:282
-msgid "Contact has been ignored"
-msgstr "Kontakt bude ignorován"
+#: ../../mod/settings.php:673
+msgid "Client key starts with"
+msgstr "Klienský klíč začíná"
 
-#: ../../mod/contacts.php:282
-msgid "Contact has been unignored"
-msgstr "Kontakt přestal být ignorován"
+#: ../../mod/settings.php:674
+msgid "No name"
+msgstr "Bez názvu"
 
-#: ../../mod/contacts.php:293
-msgid "Contact has been archived"
-msgstr "Kontakt byl archivován"
+#: ../../mod/settings.php:675
+msgid "Remove authorization"
+msgstr "Odstranit oprávnění"
 
-#: ../../mod/contacts.php:293
-msgid "Contact has been unarchived"
-msgstr "Kontakt byl vrácen z archívu."
+#: ../../mod/settings.php:687
+msgid "No Plugin settings configured"
+msgstr "Žádný doplněk není nastaven"
 
-#: ../../mod/contacts.php:318 ../../mod/contacts.php:689
-msgid "Do you really want to delete this contact?"
-msgstr "Opravdu chcete smazat tento kontakt?"
+#: ../../mod/settings.php:695
+msgid "Plugin Settings"
+msgstr "Nastavení doplňku"
 
-#: ../../mod/contacts.php:335
-msgid "Contact has been removed."
-msgstr "Kontakt byl odstraněn."
+#: ../../mod/settings.php:709
+msgid "Off"
+msgstr "Vypnuto"
 
-#: ../../mod/contacts.php:373
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Jste vzájemní přátelé s uživatelem %s"
+#: ../../mod/settings.php:709
+msgid "On"
+msgstr "Zapnuto"
 
-#: ../../mod/contacts.php:377
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Sdílíte s uživatelem %s"
+#: ../../mod/settings.php:717
+msgid "Additional Features"
+msgstr "Další Funkčnosti"
 
-#: ../../mod/contacts.php:382
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
 #, php-format
-msgid "%s is sharing with you"
-msgstr "uživatel %s sdílí s vámi"
-
-#: ../../mod/contacts.php:399
-msgid "Private communications are not available for this contact."
-msgstr "Soukromá komunikace není dostupná pro tento kontakt."
+msgid "Built-in support for %s connectivity is %s"
+msgstr "Vestavěná podpora pro připojení s %s je %s"
 
-#: ../../mod/contacts.php:406
-msgid "(Update was successful)"
-msgstr "(Aktualizace byla úspěšná)"
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
+msgid "enabled"
+msgstr "povoleno"
 
-#: ../../mod/contacts.php:406
-msgid "(Update was not successful)"
-msgstr "(Aktualizace nebyla úspěšná)"
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
+msgid "disabled"
+msgstr "zakázáno"
 
-#: ../../mod/contacts.php:408
-msgid "Suggest friends"
-msgstr "Navrhněte přátelé"
+#: ../../mod/settings.php:732
+msgid "StatusNet"
+msgstr "StatusNet"
 
-#: ../../mod/contacts.php:412
-#, php-format
-msgid "Network type: %s"
-msgstr "Typ sítě: %s"
+#: ../../mod/settings.php:768
+msgid "Email access is disabled on this site."
+msgstr "Přístup k elektronické poště je na tomto serveru zakázán."
 
-#: ../../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 sdílený kontakt"
-msgstr[1] "%d sdílených kontaktů"
-msgstr[2] "%d sdílených kontaktů"
+#: ../../mod/settings.php:780
+msgid "Email/Mailbox Setup"
+msgstr "Nastavení e-mailu"
 
-#: ../../mod/contacts.php:420
-msgid "View all contacts"
-msgstr "Zobrazit všechny kontakty"
+#: ../../mod/settings.php:781
+msgid ""
+"If you wish to communicate with email contacts using this service "
+"(optional), please specify how to connect to your mailbox."
+msgstr "Pokud chcete komunikovat pomocí této služby s Vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce."
 
-#: ../../mod/contacts.php:428
-msgid "Toggle Blocked status"
-msgstr "Přepnout stav Blokováno"
+#: ../../mod/settings.php:782
+msgid "Last successful email check:"
+msgstr "Poslední úspěšná kontrola e-mailu:"
 
-#: ../../mod/contacts.php:431 ../../mod/contacts.php:485
-#: ../../mod/contacts.php:693
-msgid "Unignore"
-msgstr "Přestat ignorovat"
+#: ../../mod/settings.php:784
+msgid "IMAP server name:"
+msgstr "jméno IMAP serveru:"
 
-#: ../../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 "Ignorovat"
+#: ../../mod/settings.php:785
+msgid "IMAP port:"
+msgstr "IMAP port:"
 
-#: ../../mod/contacts.php:434
-msgid "Toggle Ignored status"
-msgstr "Přepnout stav Ignorováno"
+#: ../../mod/settings.php:786
+msgid "Security:"
+msgstr "Zabezpečení:"
 
-#: ../../mod/contacts.php:438 ../../mod/contacts.php:694
-msgid "Unarchive"
-msgstr "Vrátit z archívu"
+#: ../../mod/settings.php:786 ../../mod/settings.php:791
+msgid "None"
+msgstr "Žádný"
 
-#: ../../mod/contacts.php:438 ../../mod/contacts.php:694
-msgid "Archive"
-msgstr "Archivovat"
+#: ../../mod/settings.php:787
+msgid "Email login name:"
+msgstr "přihlašovací jméno k e-mailu:"
 
-#: ../../mod/contacts.php:441
-msgid "Toggle Archive status"
-msgstr "Přepnout stav Archivováno"
+#: ../../mod/settings.php:788
+msgid "Email password:"
+msgstr "heslo k Vašemu e-mailu:"
 
-#: ../../mod/contacts.php:444
-msgid "Repair"
-msgstr "Opravit"
+#: ../../mod/settings.php:789
+msgid "Reply-to address:"
+msgstr "Odpovědět na adresu:"
 
-#: ../../mod/contacts.php:447
-msgid "Advanced Contact Settings"
-msgstr "Pokročilé nastavení kontaktu"
+#: ../../mod/settings.php:790
+msgid "Send public posts to all email contacts:"
+msgstr "Poslat veřejné příspěvky na všechny e-mailové kontakty:"
 
-#: ../../mod/contacts.php:453
-msgid "Communications lost with this contact!"
-msgstr "Komunikace s tímto kontaktem byla ztracena!"
+#: ../../mod/settings.php:791
+msgid "Action after import:"
+msgstr "Akce po importu:"
 
-#: ../../mod/contacts.php:456
-msgid "Contact Editor"
-msgstr "Editor kontaktu"
+#: ../../mod/settings.php:791
+msgid "Mark as seen"
+msgstr "Označit jako přečtené"
 
-#: ../../mod/contacts.php:459
-msgid "Profile Visibility"
-msgstr "Viditelnost profilu"
+#: ../../mod/settings.php:791
+msgid "Move to folder"
+msgstr "Přesunout do složky"
 
-#: ../../mod/contacts.php:460
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu."
+#: ../../mod/settings.php:792
+msgid "Move to folder:"
+msgstr "Přesunout do složky:"
 
-#: ../../mod/contacts.php:461
-msgid "Contact Information / Notes"
-msgstr "Kontaktní informace / poznámky"
+#: ../../mod/settings.php:870
+msgid "Display Settings"
+msgstr "Nastavení Zobrazení"
 
-#: ../../mod/contacts.php:462
-msgid "Edit contact notes"
-msgstr "Editovat poznámky kontaktu"
+#: ../../mod/settings.php:876 ../../mod/settings.php:890
+msgid "Display Theme:"
+msgstr "Vybrat grafickou šablonu:"
 
-#: ../../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 "Navštivte profil uživatele %s [%s]"
+#: ../../mod/settings.php:877
+msgid "Mobile Theme:"
+msgstr "Téma pro mobilní zařízení:"
 
-#: ../../mod/contacts.php:468
-msgid "Block/Unblock contact"
-msgstr "Blokovat / Odblokovat kontakt"
+#: ../../mod/settings.php:878
+msgid "Update browser every xx seconds"
+msgstr "Aktualizovat prohlížeč každých xx sekund"
 
-#: ../../mod/contacts.php:469
-msgid "Ignore contact"
-msgstr "Ignorovat kontakt"
+#: ../../mod/settings.php:878
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Minimum 10 sekund, žádné maximum."
 
-#: ../../mod/contacts.php:470
-msgid "Repair URL settings"
-msgstr "Opravit nastavení adresy URL "
+#: ../../mod/settings.php:879
+msgid "Number of items to display per page:"
+msgstr "Počet položek zobrazených na stránce:"
 
-#: ../../mod/contacts.php:471
-msgid "View conversations"
-msgstr "Zobrazit konverzace"
+#: ../../mod/settings.php:879 ../../mod/settings.php:880
+msgid "Maximum of 100 items"
+msgstr "Maximum 100 položek"
 
-#: ../../mod/contacts.php:473
-msgid "Delete contact"
-msgstr "Odstranit kontakt"
+#: ../../mod/settings.php:880
+msgid "Number of items to display per page when viewed from mobile device:"
+msgstr "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:"
 
-#: ../../mod/contacts.php:477
-msgid "Last update:"
-msgstr "Poslední aktualizace:"
+#: ../../mod/settings.php:881
+msgid "Don't show emoticons"
+msgstr "Nezobrazovat emotikony"
 
-#: ../../mod/contacts.php:479
-msgid "Update public posts"
-msgstr "Aktualizovat veřejné příspěvky"
+#: ../../mod/settings.php:882
+msgid "Don't show notices"
+msgstr "Nezobrazovat oznámění"
 
-#: ../../mod/contacts.php:488
-msgid "Currently blocked"
-msgstr "V současnosti zablokováno"
+#: ../../mod/settings.php:883
+msgid "Infinite scroll"
+msgstr "Nekonečné posouvání"
 
-#: ../../mod/contacts.php:489
-msgid "Currently ignored"
-msgstr "V současnosti ignorováno"
+#: ../../mod/settings.php:960
+msgid "User Types"
+msgstr "Uživatelské typy"
 
-#: ../../mod/contacts.php:490
-msgid "Currently archived"
-msgstr "Aktuálně archivován"
+#: ../../mod/settings.php:961
+msgid "Community Types"
+msgstr "Komunitní typy"
 
-#: ../../mod/contacts.php:491 ../../mod/notifications.php:157
-#: ../../mod/notifications.php:204
-msgid "Hide this contact from others"
-msgstr "Skrýt tento kontakt před ostatními"
+#: ../../mod/settings.php:962
+msgid "Normal Account Page"
+msgstr "Normální stránka účtu"
 
-#: ../../mod/contacts.php:491
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Odpovědi/Libí se na Vaše veřejné příspěvky <strong>mohou být</strong> stále viditelné"
+#: ../../mod/settings.php:963
+msgid "This account is a normal personal profile"
+msgstr "Tento účet je běžný osobní profil"
 
-#: ../../mod/contacts.php:542
-msgid "Suggestions"
-msgstr "Doporučení"
+#: ../../mod/settings.php:966
+msgid "Soapbox Page"
+msgstr "Stránka \"Soapbox\""
 
-#: ../../mod/contacts.php:545
-msgid "Suggest potential friends"
-msgstr "Navrhnout potenciální přátele"
+#: ../../mod/settings.php:967
+msgid "Automatically approve all connection/friend requests as read-only fans"
+msgstr "Automaticky schválit všechna spojení / přátelství jako fanoušky s právem pouze ke čtení"
 
-#: ../../mod/contacts.php:548 ../../mod/group.php:194
-msgid "All Contacts"
-msgstr "Všechny kontakty"
+#: ../../mod/settings.php:970
+msgid "Community Forum/Celebrity Account"
+msgstr "Komunitní fórum/ účet celebrity"
 
-#: ../../mod/contacts.php:551
-msgid "Show all contacts"
-msgstr "Zobrazit všechny kontakty"
+#: ../../mod/settings.php:971
+msgid ""
+"Automatically approve all connection/friend requests as read-write fans"
+msgstr "Automaticky schvalovat všechny žádosti o spojení / přátelství, jako fanoušky s právem ke čtení."
 
-#: ../../mod/contacts.php:554
-msgid "Unblocked"
-msgstr "Odblokován"
+#: ../../mod/settings.php:974
+msgid "Automatic Friend Page"
+msgstr "Automatická stránka přítele"
 
-#: ../../mod/contacts.php:557
-msgid "Only show unblocked contacts"
-msgstr "Zobrazit pouze neblokované kontakty"
+#: ../../mod/settings.php:975
+msgid "Automatically approve all connection/friend requests as friends"
+msgstr "Automaticky schvalovat všechny žádosti o spojení / přátelství jako přátele"
 
-#: ../../mod/contacts.php:561
-msgid "Blocked"
-msgstr "Blokován"
+#: ../../mod/settings.php:978
+msgid "Private Forum [Experimental]"
+msgstr "Soukromé fórum [Experimentální]"
 
-#: ../../mod/contacts.php:564
-msgid "Only show blocked contacts"
-msgstr "Zobrazit pouze blokované kontakty"
+#: ../../mod/settings.php:979
+msgid "Private forum - approved members only"
+msgstr "Soukromé fórum - pouze pro schválené členy"
 
-#: ../../mod/contacts.php:568
-msgid "Ignored"
-msgstr "Ignorován"
+#: ../../mod/settings.php:991
+msgid "OpenID:"
+msgstr "OpenID:"
 
-#: ../../mod/contacts.php:571
-msgid "Only show ignored contacts"
-msgstr "Zobrazit pouze ignorované kontakty"
+#: ../../mod/settings.php:991
+msgid "(Optional) Allow this OpenID to login to this account."
+msgstr "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu."
 
-#: ../../mod/contacts.php:575
-msgid "Archived"
-msgstr "Archivován"
+#: ../../mod/settings.php:1001
+msgid "Publish your default profile in your local site directory?"
+msgstr "Publikovat Váš výchozí profil v místním adresáři webu?"
 
-#: ../../mod/contacts.php:578
-msgid "Only show archived contacts"
-msgstr "Zobrazit pouze archivované kontakty"
+#: ../../mod/settings.php:1007
+msgid "Publish your default profile in the global social directory?"
+msgstr "Publikovat Váš výchozí profil v globální sociálním adresáři?"
 
-#: ../../mod/contacts.php:582
-msgid "Hidden"
-msgstr "Skrytý"
+#: ../../mod/settings.php:1015
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr "Skrýt Vaše kontaktní údaje a seznam přátel před návštěvníky ve Vašem výchozím profilu?"
 
-#: ../../mod/contacts.php:585
-msgid "Only show hidden contacts"
-msgstr "Zobrazit pouze skryté kontakty"
+#: ../../mod/settings.php:1019 ../../include/conversation.php:1055
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Skrýt Vaše profilové detaily před neznámými uživateli?"
 
-#: ../../mod/contacts.php:633
-msgid "Mutual Friendship"
-msgstr "Vzájemné přátelství"
+#: ../../mod/settings.php:1024
+msgid "Allow friends to post to your profile page?"
+msgstr "Povolit přátelům umisťování příspěvků na vaši profilovou stránku?"
 
-#: ../../mod/contacts.php:637
-msgid "is a fan of yours"
-msgstr "je Váš fanoušek"
+#: ../../mod/settings.php:1030
+msgid "Allow friends to tag your posts?"
+msgstr "Povolit přátelům označovat Vaše příspěvky?"
 
-#: ../../mod/contacts.php:641
-msgid "you are a fan of"
-msgstr "jste fanouškem"
+#: ../../mod/settings.php:1036
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Chcete nám povolit abychom vás navrhovali jako přátelé pro nové členy?"
 
-#: ../../mod/contacts.php:658 ../../mod/nogroup.php:41
-msgid "Edit contact"
-msgstr "Editovat kontakt"
+#: ../../mod/settings.php:1042
+msgid "Permit unknown people to send you private mail?"
+msgstr "Povolit neznámým lidem Vám zasílat soukromé zprávy?"
 
-#: ../../mod/contacts.php:684
-msgid "Search your contacts"
-msgstr "Prohledat Vaše kontakty"
+#: ../../mod/settings.php:1050
+msgid "Profile is <strong>not published</strong>."
+msgstr "Profil <strong>není zveřejněn</strong>."
 
-#: ../../mod/contacts.php:691 ../../mod/settings.php:126
-#: ../../mod/settings.php:627
-msgid "Update"
-msgstr "Aktualizace"
+#: ../../mod/settings.php:1053 ../../mod/profile_photo.php:248
+msgid "or"
+msgstr "nebo"
 
-#: ../../mod/settings.php:28 ../../mod/photos.php:79
-msgid "everybody"
-msgstr "Žádost o připojení selhala nebo byla zrušena."
+#: ../../mod/settings.php:1058
+msgid "Your Identity Address is"
+msgstr "Vaše adresa identity je"
 
-#: ../../mod/settings.php:35 ../../mod/uexport.php:9 ../../include/nav.php:167
-msgid "Account settings"
-msgstr "Nastavení účtu"
+#: ../../mod/settings.php:1069
+msgid "Automatically expire posts after this many days:"
+msgstr "Automaticky expirovat příspěvky po zadaném počtu dní:"
 
-#: ../../mod/settings.php:40
-msgid "Additional features"
-msgstr "Další funkčnosti"
+#: ../../mod/settings.php:1069
+msgid "If empty, posts will not expire. Expired posts will be deleted"
+msgstr "Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány"
 
-#: ../../mod/settings.php:45 ../../mod/uexport.php:14
-msgid "Display settings"
-msgstr "Nastavení zobrazení"
+#: ../../mod/settings.php:1070
+msgid "Advanced expiration settings"
+msgstr "Pokročilé nastavení expirací"
 
-#: ../../mod/settings.php:51 ../../mod/uexport.php:20
-msgid "Connector settings"
-msgstr "Nastavení konektoru"
+#: ../../mod/settings.php:1071
+msgid "Advanced Expiration"
+msgstr "Nastavení expirací"
 
-#: ../../mod/settings.php:56 ../../mod/uexport.php:25
-msgid "Plugin settings"
-msgstr "Nastavení pluginu"
+#: ../../mod/settings.php:1072
+msgid "Expire posts:"
+msgstr "Expirovat příspěvky:"
 
-#: ../../mod/settings.php:61 ../../mod/uexport.php:30
-msgid "Connected apps"
-msgstr "Propojené aplikace"
+#: ../../mod/settings.php:1073
+msgid "Expire personal notes:"
+msgstr "Expirovat osobní poznámky:"
 
-#: ../../mod/settings.php:66 ../../mod/uexport.php:35 ../../mod/uexport.php:80
-msgid "Export personal data"
-msgstr "Export osobních údajů"
+#: ../../mod/settings.php:1074
+msgid "Expire starred posts:"
+msgstr "Expirovat příspěvky s hvězdou:"
 
-#: ../../mod/settings.php:71 ../../mod/uexport.php:40
-msgid "Remove account"
-msgstr "Odstranit účet"
+#: ../../mod/settings.php:1075
+msgid "Expire photos:"
+msgstr "Expirovat fotografie:"
 
-#: ../../mod/settings.php:123
-msgid "Missing some important data!"
-msgstr "Chybí některé důležité údaje!"
+#: ../../mod/settings.php:1076
+msgid "Only expire posts by others:"
+msgstr "Přízpěvky expirovat pouze ostatními:"
 
-#: ../../mod/settings.php:232
-msgid "Failed to connect with email account using the settings provided."
-msgstr "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení."
+#: ../../mod/settings.php:1102
+msgid "Account Settings"
+msgstr "Nastavení účtu"
 
-#: ../../mod/settings.php:237
-msgid "Email settings updated."
-msgstr "Nastavení e-mailu aktualizována."
+#: ../../mod/settings.php:1110
+msgid "Password Settings"
+msgstr "Nastavení hesla"
 
-#: ../../mod/settings.php:252
-msgid "Features updated"
-msgstr "Aktualizované funkčnosti"
+#: ../../mod/settings.php:1111
+msgid "New Password:"
+msgstr "Nové heslo:"
 
-#: ../../mod/settings.php:311
-msgid "Relocate message has been send to your contacts"
-msgstr "Správa o změně umístění byla odeslána vašim kontaktům"
+#: ../../mod/settings.php:1112
+msgid "Confirm:"
+msgstr "Potvrďte:"
 
-#: ../../mod/settings.php:325
-msgid "Passwords do not match. Password unchanged."
-msgstr "Hesla se neshodují. Heslo nebylo změněno."
+#: ../../mod/settings.php:1112
+msgid "Leave password fields blank unless changing"
+msgstr "Pokud nechcete změnit heslo, položku hesla nevyplňujte"
 
-#: ../../mod/settings.php:330
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Prázdné hesla nejsou povolena. Heslo nebylo změněno."
+#: ../../mod/settings.php:1113
+msgid "Current Password:"
+msgstr "Stávající heslo:"
 
-#: ../../mod/settings.php:338
-msgid "Wrong password."
-msgstr "Špatné heslo."
+#: ../../mod/settings.php:1113 ../../mod/settings.php:1114
+msgid "Your current password to confirm the changes"
+msgstr "Vaše stávající heslo k potvrzení změn"
 
-#: ../../mod/settings.php:349
-msgid "Password changed."
-msgstr "Heslo bylo změněno."
+#: ../../mod/settings.php:1114
+msgid "Password:"
+msgstr "Heslo"
 
-#: ../../mod/settings.php:351
-msgid "Password update failed. Please try again."
-msgstr "Aktualizace hesla se nezdařila. Zkuste to prosím znovu."
+#: ../../mod/settings.php:1118
+msgid "Basic Settings"
+msgstr "Základní nastavení"
 
-#: ../../mod/settings.php:416
-msgid " Please use a shorter name."
-msgstr "Prosím použijte kratší jméno."
+#: ../../mod/settings.php:1119 ../../include/profile_advanced.php:15
+msgid "Full Name:"
+msgstr "Celé jméno:"
 
-#: ../../mod/settings.php:418
-msgid " Name too short."
-msgstr "Jméno je příliš krátké."
+#: ../../mod/settings.php:1120
+msgid "Email Address:"
+msgstr "E-mailová adresa:"
 
-#: ../../mod/settings.php:427
-msgid "Wrong Password"
-msgstr "Špatné heslo"
+#: ../../mod/settings.php:1121
+msgid "Your Timezone:"
+msgstr "Vaše časové pásmo:"
+
+#: ../../mod/settings.php:1122
+msgid "Default Post Location:"
+msgstr "Výchozí umístění příspěvků:"
 
-#: ../../mod/settings.php:432
-msgid " Not valid email."
-msgstr "Neplatný e-mail."
+#: ../../mod/settings.php:1123
+msgid "Use Browser Location:"
+msgstr "Používat umístění dle prohlížeče:"
 
-#: ../../mod/settings.php:438
-msgid " Cannot change to that email."
-msgstr "Nelze provést změnu na tento e-mail."
+#: ../../mod/settings.php:1126
+msgid "Security and Privacy Settings"
+msgstr "Nastavení zabezpečení a soukromí"
 
-#: ../../mod/settings.php:493
-msgid "Private forum has no privacy permissions. Using default privacy group."
-msgstr "Soukromé fórum nemá nastaveno zabezpečení. Používá se defaultní soukromá skupina."
+#: ../../mod/settings.php:1128
+msgid "Maximum Friend Requests/Day:"
+msgstr "Maximální počet žádostí o přátelství za den:"
 
-#: ../../mod/settings.php:497
-msgid "Private forum has no privacy permissions and no default privacy group."
-msgstr "Soukromé fórum nemá nastaveno zabezpečení a ani žádnou defaultní soukromou skupinu."
+#: ../../mod/settings.php:1128 ../../mod/settings.php:1158
+msgid "(to prevent spam abuse)"
+msgstr "(Aby se zabránilo spamu)"
 
-#: ../../mod/settings.php:527
-msgid "Settings updated."
-msgstr "Nastavení aktualizováno."
+#: ../../mod/settings.php:1129
+msgid "Default Post Permissions"
+msgstr "Výchozí oprávnění pro příspěvek"
 
-#: ../../mod/settings.php:600 ../../mod/settings.php:626
-#: ../../mod/settings.php:662
-msgid "Add application"
-msgstr "Přidat aplikaci"
+#: ../../mod/settings.php:1130
+msgid "(click to open/close)"
+msgstr "(Klikněte pro otevření/zavření)"
 
-#: ../../mod/settings.php:604 ../../mod/settings.php:630
-msgid "Consumer Key"
-msgstr "Consumer Key"
+#: ../../mod/settings.php:1141
+msgid "Default Private Post"
+msgstr "Výchozí Soukromý příspěvek"
 
-#: ../../mod/settings.php:605 ../../mod/settings.php:631
-msgid "Consumer Secret"
-msgstr "Consumer Secret"
+#: ../../mod/settings.php:1142
+msgid "Default Public Post"
+msgstr "Výchozí Veřejný příspěvek"
 
-#: ../../mod/settings.php:606 ../../mod/settings.php:632
-msgid "Redirect"
-msgstr "Přesměrování"
+#: ../../mod/settings.php:1146
+msgid "Default Permissions for New Posts"
+msgstr "Výchozí oprávnění pro nové příspěvky"
 
-#: ../../mod/settings.php:607 ../../mod/settings.php:633
-msgid "Icon url"
-msgstr "URL ikony"
+#: ../../mod/settings.php:1158
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Maximum soukromých zpráv od neznámých lidí:"
 
-#: ../../mod/settings.php:618
-msgid "You can't edit this application."
-msgstr "Nemůžete editovat tuto aplikaci."
+#: ../../mod/settings.php:1161
+msgid "Notification Settings"
+msgstr "Nastavení notifikací"
 
-#: ../../mod/settings.php:661
-msgid "Connected Apps"
-msgstr "Připojené aplikace"
+#: ../../mod/settings.php:1162
+msgid "By default post a status message when:"
+msgstr "Defaultně posílat statusové zprávy když:"
 
-#: ../../mod/settings.php:665
-msgid "Client key starts with"
-msgstr "Klienský klíč začíná"
+#: ../../mod/settings.php:1163
+msgid "accepting a friend request"
+msgstr "akceptuji požadavek na přátelství"
 
-#: ../../mod/settings.php:666
-msgid "No name"
-msgstr "Bez názvu"
+#: ../../mod/settings.php:1164
+msgid "joining a forum/community"
+msgstr "připojující se k fóru/komunitě"
 
-#: ../../mod/settings.php:667
-msgid "Remove authorization"
-msgstr "Odstranit oprávnění"
+#: ../../mod/settings.php:1165
+msgid "making an <em>interesting</em> profile change"
+msgstr "provedení <em>zajímavé</em> profilové změny"
 
-#: ../../mod/settings.php:679
-msgid "No Plugin settings configured"
-msgstr "Žádný doplněk není nastaven"
+#: ../../mod/settings.php:1166
+msgid "Send a notification email when:"
+msgstr "Poslat notifikaci e-mailem, když"
 
-#: ../../mod/settings.php:687
-msgid "Plugin Settings"
-msgstr "Nastavení doplňku"
+#: ../../mod/settings.php:1167
+msgid "You receive an introduction"
+msgstr "obdržíte žádost o propojení"
 
-#: ../../mod/settings.php:701
-msgid "Off"
-msgstr "Vypnuto"
+#: ../../mod/settings.php:1168
+msgid "Your introductions are confirmed"
+msgstr "Vaše žádosti jsou potvrzeny"
 
-#: ../../mod/settings.php:701
-msgid "On"
-msgstr "Zapnuto"
+#: ../../mod/settings.php:1169
+msgid "Someone writes on your profile wall"
+msgstr "někdo Vám napíše na Vaši profilovou stránku"
 
-#: ../../mod/settings.php:709
-msgid "Additional Features"
-msgstr "Další Funkčnosti"
+#: ../../mod/settings.php:1170
+msgid "Someone writes a followup comment"
+msgstr "někdo Vám napíše následný komentář"
 
-#: ../../mod/settings.php:722 ../../mod/settings.php:723
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr "Vestavěná podpora pro připojení s %s je %s"
+#: ../../mod/settings.php:1171
+msgid "You receive a private message"
+msgstr "obdržíte soukromou zprávu"
 
-#: ../../mod/settings.php:722 ../../mod/settings.php:723
-msgid "enabled"
-msgstr "povoleno"
+#: ../../mod/settings.php:1172
+msgid "You receive a friend suggestion"
+msgstr "Obdržel jste návrh přátelství"
 
-#: ../../mod/settings.php:722 ../../mod/settings.php:723
-msgid "disabled"
-msgstr "zakázáno"
+#: ../../mod/settings.php:1173
+msgid "You are tagged in a post"
+msgstr "Jste označen v příspěvku"
 
-#: ../../mod/settings.php:723
-msgid "StatusNet"
-msgstr "StatusNet"
+#: ../../mod/settings.php:1174
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Byl Jste šťouchnout v příspěvku"
 
-#: ../../mod/settings.php:755
-msgid "Email access is disabled on this site."
-msgstr "Přístup k elektronické poště je na tomto serveru zakázán."
+#: ../../mod/settings.php:1177
+msgid "Advanced Account/Page Type Settings"
+msgstr "Pokročilé nastavení účtu/stránky"
 
-#: ../../mod/settings.php:762
-msgid "Connector Settings"
-msgstr "Nastavení konektoru"
+#: ../../mod/settings.php:1178
+msgid "Change the behaviour of this account for special situations"
+msgstr "Změnit chování tohoto účtu ve speciálních situacích"
 
-#: ../../mod/settings.php:767
-msgid "Email/Mailbox Setup"
-msgstr "Nastavení e-mailu"
+#: ../../mod/settings.php:1181
+msgid "Relocate"
+msgstr "Změna umístění"
 
-#: ../../mod/settings.php:768
+#: ../../mod/settings.php:1182
 msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
-msgstr "Pokud chcete komunikovat pomocí této služby s Vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce."
+"If you have moved this profile from another server, and some of your "
+"contacts don't receive your updates, try pushing this button."
+msgstr "Pokud jste přemístil tento profil z jiného serveru a nějaký z vašich kontaktů nedostává Vaše aktualizace, zkuste stisknout toto tlačítko."
 
-#: ../../mod/settings.php:769
-msgid "Last successful email check:"
-msgstr "Poslední úspěšná kontrola e-mailu:"
+#: ../../mod/settings.php:1183
+msgid "Resend relocate message to contacts"
+msgstr "Znovu odeslat správu o změně umístění Vašim kontaktům"
 
-#: ../../mod/settings.php:771
-msgid "IMAP server name:"
-msgstr "jméno IMAP serveru:"
+#: ../../mod/display.php:263
+msgid "Item has been removed."
+msgstr "Položka byla odstraněna."
 
-#: ../../mod/settings.php:772
-msgid "IMAP port:"
-msgstr "IMAP port:"
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Vyhledávání lidí"
 
-#: ../../mod/settings.php:773
-msgid "Security:"
-msgstr "Zabezpečení:"
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "Žádné shody"
 
-#: ../../mod/settings.php:773 ../../mod/settings.php:778
-msgid "None"
-msgstr "Žádný"
+#: ../../mod/profiles.php:37
+msgid "Profile deleted."
+msgstr "Profil smazán."
 
-#: ../../mod/settings.php:774
-msgid "Email login name:"
-msgstr "přihlašovací jméno k e-mailu:"
+#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+msgid "Profile-"
+msgstr "Profil-"
 
-#: ../../mod/settings.php:775
-msgid "Email password:"
-msgstr "heslo k Vašemu e-mailu:"
+#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
+msgid "New profile created."
+msgstr "Nový profil vytvořen."
 
-#: ../../mod/settings.php:776
-msgid "Reply-to address:"
-msgstr "Odpovědět na adresu:"
+#: ../../mod/profiles.php:95
+msgid "Profile unavailable to clone."
+msgstr "Profil není možné naklonovat."
 
-#: ../../mod/settings.php:777
-msgid "Send public posts to all email contacts:"
-msgstr "Poslat veřejné příspěvky na všechny e-mailové kontakty:"
+#: ../../mod/profiles.php:170
+msgid "Profile Name is required."
+msgstr "Jméno profilu je povinné."
 
-#: ../../mod/settings.php:778
-msgid "Action after import:"
-msgstr "Akce po importu:"
+#: ../../mod/profiles.php:321
+msgid "Marital Status"
+msgstr "Rodinný Stav"
 
-#: ../../mod/settings.php:778
-msgid "Mark as seen"
-msgstr "Označit jako přečtené"
+#: ../../mod/profiles.php:325
+msgid "Romantic Partner"
+msgstr "Romatický partner"
 
-#: ../../mod/settings.php:778
-msgid "Move to folder"
-msgstr "Přesunout do složky"
+#: ../../mod/profiles.php:329
+msgid "Likes"
+msgstr "Libí se mi"
 
-#: ../../mod/settings.php:779
-msgid "Move to folder:"
-msgstr "Přesunout do složky:"
+#: ../../mod/profiles.php:333
+msgid "Dislikes"
+msgstr "Nelibí se mi"
 
-#: ../../mod/settings.php:854
-msgid "Display Settings"
-msgstr "Nastavení Zobrazení"
+#: ../../mod/profiles.php:337
+msgid "Work/Employment"
+msgstr "Práce/Zaměstnání"
 
-#: ../../mod/settings.php:860 ../../mod/settings.php:873
-msgid "Display Theme:"
-msgstr "Vybrat grafickou šablonu:"
+#: ../../mod/profiles.php:340
+msgid "Religion"
+msgstr "Náboženství"
 
-#: ../../mod/settings.php:861
-msgid "Mobile Theme:"
-msgstr "Téma pro mobilní zařízení:"
+#: ../../mod/profiles.php:344
+msgid "Political Views"
+msgstr "Politické přesvědčení"
 
-#: ../../mod/settings.php:862
-msgid "Update browser every xx seconds"
-msgstr "Aktualizovat prohlížeč každých xx sekund"
+#: ../../mod/profiles.php:348
+msgid "Gender"
+msgstr "Pohlaví"
 
-#: ../../mod/settings.php:862
-msgid "Minimum of 10 seconds, no maximum"
-msgstr "Minimum 10 sekund, žádné maximum."
+#: ../../mod/profiles.php:352
+msgid "Sexual Preference"
+msgstr "Sexuální orientace"
 
-#: ../../mod/settings.php:863
-msgid "Number of items to display per page:"
-msgstr "Počet položek zobrazených na stránce:"
+#: ../../mod/profiles.php:356
+msgid "Homepage"
+msgstr "Domácí stránka"
 
-#: ../../mod/settings.php:863 ../../mod/settings.php:864
-msgid "Maximum of 100 items"
-msgstr "Maximum 100 položek"
+#: ../../mod/profiles.php:360
+msgid "Interests"
+msgstr "Zájmy"
 
-#: ../../mod/settings.php:864
-msgid "Number of items to display per page when viewed from mobile device:"
-msgstr "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:"
+#: ../../mod/profiles.php:364
+msgid "Address"
+msgstr "Adresa"
 
-#: ../../mod/settings.php:865
-msgid "Don't show emoticons"
-msgstr "Nezobrazovat emotikony"
+#: ../../mod/profiles.php:371
+msgid "Location"
+msgstr "Lokace"
 
-#: ../../mod/settings.php:866
-msgid "Infinite scroll"
-msgstr "Nekonečné posouvání"
+#: ../../mod/profiles.php:454
+msgid "Profile updated."
+msgstr "Profil aktualizován."
 
-#: ../../mod/settings.php:942
-msgid "Normal Account Page"
-msgstr "Normální stránka účtu"
+#: ../../mod/profiles.php:525
+msgid " and "
+msgstr " a "
 
-#: ../../mod/settings.php:943
-msgid "This account is a normal personal profile"
-msgstr "Tento účet je běžný osobní profil"
+#: ../../mod/profiles.php:533
+msgid "public profile"
+msgstr "veřejný profil"
 
-#: ../../mod/settings.php:946
-msgid "Soapbox Page"
-msgstr "Stránka \"Soapbox\""
+#: ../../mod/profiles.php:536
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s změnil %2$s na &ldquo;%3$s&rdquo;"
 
-#: ../../mod/settings.php:947
-msgid "Automatically approve all connection/friend requests as read-only fans"
-msgstr "Automaticky schválit všechna spojení / přátelství jako fanoušky s právem pouze ke čtení"
+#: ../../mod/profiles.php:537
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr " - Navštivte %2$s uživatele %1$s"
+
+#: ../../mod/profiles.php:540
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s aktualizoval %2$s, změnou %3$s."
 
-#: ../../mod/settings.php:950
-msgid "Community Forum/Celebrity Account"
-msgstr "Komunitní fórum/ účet celebrity"
+#: ../../mod/profiles.php:613
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Skrýt u tohoto profilu Vaše kontakty / seznam přátel před před dalšími uživateli zobrazující si tento profil?"
 
-#: ../../mod/settings.php:951
-msgid ""
-"Automatically approve all connection/friend requests as read-write fans"
-msgstr "Automaticky schvalovat všechny žádosti o spojení / přátelství, jako fanoušky s právem ke čtení."
+#: ../../mod/profiles.php:633
+msgid "Edit Profile Details"
+msgstr "Upravit podrobnosti profilu "
 
-#: ../../mod/settings.php:954
-msgid "Automatic Friend Page"
-msgstr "Automatická stránka přítele"
+#: ../../mod/profiles.php:635
+msgid "Change Profile Photo"
+msgstr "Změna Profilové fotky"
 
-#: ../../mod/settings.php:955
-msgid "Automatically approve all connection/friend requests as friends"
-msgstr "Automaticky schvalovat všechny žádosti o spojení / přátelství jako přátele"
+#: ../../mod/profiles.php:636
+msgid "View this profile"
+msgstr "Zobrazit tento profil"
 
-#: ../../mod/settings.php:958
-msgid "Private Forum [Experimental]"
-msgstr "Soukromé fórum [Experimentální]"
+#: ../../mod/profiles.php:637
+msgid "Create a new profile using these settings"
+msgstr "Vytvořit nový profil pomocí tohoto nastavení"
 
-#: ../../mod/settings.php:959
-msgid "Private forum - approved members only"
-msgstr "Soukromé fórum - pouze pro schválené členy"
+#: ../../mod/profiles.php:638
+msgid "Clone this profile"
+msgstr "Klonovat tento profil"
 
-#: ../../mod/settings.php:971
-msgid "OpenID:"
-msgstr "OpenID:"
+#: ../../mod/profiles.php:639
+msgid "Delete this profile"
+msgstr "Smazat tento profil"
 
-#: ../../mod/settings.php:971
-msgid "(Optional) Allow this OpenID to login to this account."
-msgstr "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu."
+#: ../../mod/profiles.php:640
+msgid "Profile Name:"
+msgstr "Jméno profilu:"
 
-#: ../../mod/settings.php:981
-msgid "Publish your default profile in your local site directory?"
-msgstr "Publikovat Váš výchozí profil v místním adresáři webu?"
+#: ../../mod/profiles.php:641
+msgid "Your Full Name:"
+msgstr "Vaše celé jméno:"
 
-#: ../../mod/settings.php:987
-msgid "Publish your default profile in the global social directory?"
-msgstr "Publikovat Váš výchozí profil v globální sociálním adresáři?"
+#: ../../mod/profiles.php:642
+msgid "Title/Description:"
+msgstr "Název / Popis:"
 
-#: ../../mod/settings.php:995
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr "Skrýt Vaše kontaktní údaje a seznam přátel před návštěvníky ve Vašem výchozím profilu?"
+#: ../../mod/profiles.php:643
+msgid "Your Gender:"
+msgstr "Vaše pohlaví:"
 
-#: ../../mod/settings.php:999
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Skrýt Vaše profilové detaily před neznámými uživateli?"
+#: ../../mod/profiles.php:644
+#, php-format
+msgid "Birthday (%s):"
+msgstr "Narozeniny uživatele (%s):"
 
-#: ../../mod/settings.php:1004
-msgid "Allow friends to post to your profile page?"
-msgstr "Povolit přátelům umisťování příspěvků na vaši profilovou stránku?"
+#: ../../mod/profiles.php:645
+msgid "Street Address:"
+msgstr "Ulice:"
 
-#: ../../mod/settings.php:1010
-msgid "Allow friends to tag your posts?"
-msgstr "Povolit přátelům označovat Vaše příspěvky?"
+#: ../../mod/profiles.php:646
+msgid "Locality/City:"
+msgstr "Město:"
 
-#: ../../mod/settings.php:1016
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "Chcete nám povolit abychom vás navrhovali jako přátelé pro nové členy?"
+#: ../../mod/profiles.php:647
+msgid "Postal/Zip Code:"
+msgstr "PSČ:"
 
-#: ../../mod/settings.php:1022
-msgid "Permit unknown people to send you private mail?"
-msgstr "Povolit neznámým lidem Vám zasílat soukromé zprávy?"
+#: ../../mod/profiles.php:648
+msgid "Country:"
+msgstr "Země:"
 
-#: ../../mod/settings.php:1030
-msgid "Profile is <strong>not published</strong>."
-msgstr "Profil <strong>není zveřejněn</strong>."
+#: ../../mod/profiles.php:649
+msgid "Region/State:"
+msgstr "Region / stát:"
 
-#: ../../mod/settings.php:1033 ../../mod/profile_photo.php:248
-msgid "or"
-msgstr "nebo"
+#: ../../mod/profiles.php:650
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Rodinný stav:"
 
-#: ../../mod/settings.php:1038
-msgid "Your Identity Address is"
-msgstr "Vaše adresa identity je"
+#: ../../mod/profiles.php:651
+msgid "Who: (if applicable)"
+msgstr "Kdo: (pokud je možné)"
 
-#: ../../mod/settings.php:1049
-msgid "Automatically expire posts after this many days:"
-msgstr "Automaticky expirovat příspěvky po zadaném počtu dní:"
+#: ../../mod/profiles.php:652
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Příklady: jan123, Jan Novák, jan@seznam.cz"
 
-#: ../../mod/settings.php:1049
-msgid "If empty, posts will not expire. Expired posts will be deleted"
-msgstr "Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány"
+#: ../../mod/profiles.php:653
+msgid "Since [date]:"
+msgstr "Od [data]:"
 
-#: ../../mod/settings.php:1050
-msgid "Advanced expiration settings"
-msgstr "Pokročilé nastavení expirací"
+#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:46
+msgid "Sexual Preference:"
+msgstr "Sexuální preference:"
 
-#: ../../mod/settings.php:1051
-msgid "Advanced Expiration"
-msgstr "Nastavení expirací"
+#: ../../mod/profiles.php:655
+msgid "Homepage URL:"
+msgstr "Odkaz na domovskou stránku:"
 
-#: ../../mod/settings.php:1052
-msgid "Expire posts:"
-msgstr "Expirovat příspěvky:"
+#: ../../mod/profiles.php:656 ../../include/profile_advanced.php:50
+msgid "Hometown:"
+msgstr "Rodné město"
 
-#: ../../mod/settings.php:1053
-msgid "Expire personal notes:"
-msgstr "Expirovat osobní poznámky:"
+#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:54
+msgid "Political Views:"
+msgstr "Politické přesvědčení:"
 
-#: ../../mod/settings.php:1054
-msgid "Expire starred posts:"
-msgstr "Expirovat příspěvky s hvězdou:"
+#: ../../mod/profiles.php:658
+msgid "Religious Views:"
+msgstr "Náboženské přesvědčení:"
 
-#: ../../mod/settings.php:1055
-msgid "Expire photos:"
-msgstr "Expirovat fotografie:"
+#: ../../mod/profiles.php:659
+msgid "Public Keywords:"
+msgstr "Veřejná klíčová slova:"
 
-#: ../../mod/settings.php:1056
-msgid "Only expire posts by others:"
-msgstr "Přízpěvky expirovat pouze ostatními:"
+#: ../../mod/profiles.php:660
+msgid "Private Keywords:"
+msgstr "Soukromá klíčová slova:"
 
-#: ../../mod/settings.php:1082
-msgid "Account Settings"
-msgstr "Nastavení účtu"
+#: ../../mod/profiles.php:661 ../../include/profile_advanced.php:62
+msgid "Likes:"
+msgstr "Líbí se:"
 
-#: ../../mod/settings.php:1090
-msgid "Password Settings"
-msgstr "Nastavení hesla"
+#: ../../mod/profiles.php:662 ../../include/profile_advanced.php:64
+msgid "Dislikes:"
+msgstr "Nelibí se:"
 
-#: ../../mod/settings.php:1091
-msgid "New Password:"
-msgstr "Nové heslo:"
+#: ../../mod/profiles.php:663
+msgid "Example: fishing photography software"
+msgstr "Příklad: fishing photography software"
 
-#: ../../mod/settings.php:1092
-msgid "Confirm:"
-msgstr "Potvrďte:"
+#: ../../mod/profiles.php:664
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)"
 
-#: ../../mod/settings.php:1092
-msgid "Leave password fields blank unless changing"
-msgstr "Pokud nechcete změnit heslo, položku hesla nevyplňujte"
+#: ../../mod/profiles.php:665
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)"
 
-#: ../../mod/settings.php:1093
-msgid "Current Password:"
-msgstr "Stávající heslo:"
+#: ../../mod/profiles.php:666
+msgid "Tell us about yourself..."
+msgstr "Řekněte nám něco o sobě ..."
 
-#: ../../mod/settings.php:1093 ../../mod/settings.php:1094
-msgid "Your current password to confirm the changes"
-msgstr "Vaše stávající heslo k potvrzení změn"
+#: ../../mod/profiles.php:667
+msgid "Hobbies/Interests"
+msgstr "Koníčky/zájmy"
 
-#: ../../mod/settings.php:1094
-msgid "Password:"
-msgstr "Heslo: "
+#: ../../mod/profiles.php:668
+msgid "Contact information and Social Networks"
+msgstr "Kontaktní informace a sociální sítě"
 
-#: ../../mod/settings.php:1098
-msgid "Basic Settings"
-msgstr "Základní nastavení"
+#: ../../mod/profiles.php:669
+msgid "Musical interests"
+msgstr "Hudební vkus"
 
-#: ../../mod/settings.php:1099 ../../include/profile_advanced.php:15
-msgid "Full Name:"
-msgstr "Celé jméno:"
+#: ../../mod/profiles.php:670
+msgid "Books, literature"
+msgstr "Knihy, literatura"
 
-#: ../../mod/settings.php:1100
-msgid "Email Address:"
-msgstr "E-mailová adresa:"
+#: ../../mod/profiles.php:671
+msgid "Television"
+msgstr "Televize"
 
-#: ../../mod/settings.php:1101
-msgid "Your Timezone:"
-msgstr "Vaše časové pásmo:"
+#: ../../mod/profiles.php:672
+msgid "Film/dance/culture/entertainment"
+msgstr "Film/tanec/kultura/zábava"
 
-#: ../../mod/settings.php:1102
-msgid "Default Post Location:"
-msgstr "Výchozí umístění příspěvků:"
+#: ../../mod/profiles.php:673
+msgid "Love/romance"
+msgstr "Láska/romantika"
 
-#: ../../mod/settings.php:1103
-msgid "Use Browser Location:"
-msgstr "Používat umístění dle prohlížeče:"
+#: ../../mod/profiles.php:674
+msgid "Work/employment"
+msgstr "Práce/zaměstnání"
 
-#: ../../mod/settings.php:1106
-msgid "Security and Privacy Settings"
-msgstr "Nastavení zabezpečení a soukromí"
+#: ../../mod/profiles.php:675
+msgid "School/education"
+msgstr "Škola/vzdělání"
 
-#: ../../mod/settings.php:1108
-msgid "Maximum Friend Requests/Day:"
-msgstr "Maximální počet žádostí o přátelství za den:"
+#: ../../mod/profiles.php:680
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Toto je váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu."
 
-#: ../../mod/settings.php:1108 ../../mod/settings.php:1138
-msgid "(to prevent spam abuse)"
-msgstr "(Aby se zabránilo spamu)"
+#: ../../mod/profiles.php:690 ../../mod/directory.php:111
+msgid "Age: "
+msgstr "Věk: "
 
-#: ../../mod/settings.php:1109
-msgid "Default Post Permissions"
-msgstr "Výchozí oprávnění pro příspěvek"
+#: ../../mod/profiles.php:729
+msgid "Edit/Manage Profiles"
+msgstr "Upravit / Spravovat profily"
 
-#: ../../mod/settings.php:1110
-msgid "(click to open/close)"
-msgstr "(Klikněte pro otevření/zavření)"
+#: ../../mod/profiles.php:730 ../../boot.php:1473 ../../boot.php:1499
+msgid "Change profile photo"
+msgstr "Změnit profilovou fotografii"
 
-#: ../../mod/settings.php:1119 ../../mod/photos.php:1140
-#: ../../mod/photos.php:1506
-msgid "Show to Groups"
-msgstr "Zobrazit ve Skupinách"
+#: ../../mod/profiles.php:731 ../../boot.php:1474
+msgid "Create New Profile"
+msgstr "Vytvořit nový profil"
 
-#: ../../mod/settings.php:1120 ../../mod/photos.php:1141
-#: ../../mod/photos.php:1507
-msgid "Show to Contacts"
-msgstr "Zobrazit v Kontaktech"
+#: ../../mod/profiles.php:742 ../../boot.php:1484
+msgid "Profile Image"
+msgstr "Profilový obrázek"
 
-#: ../../mod/settings.php:1121
-msgid "Default Private Post"
-msgstr "Výchozí Soukromý příspěvek"
+#: ../../mod/profiles.php:744 ../../boot.php:1487
+msgid "visible to everybody"
+msgstr "viditelné pro všechny"
 
-#: ../../mod/settings.php:1122
-msgid "Default Public Post"
-msgstr "Výchozí Veřejný příspěvek"
+#: ../../mod/profiles.php:745 ../../boot.php:1488
+msgid "Edit visibility"
+msgstr "Upravit viditelnost"
 
-#: ../../mod/settings.php:1126
-msgid "Default Permissions for New Posts"
-msgstr "Výchozí oprávnění pro nové příspěvky"
+#: ../../mod/share.php:44
+msgid "link"
+msgstr "odkaz"
 
-#: ../../mod/settings.php:1138
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Maximum soukromých zpráv od neznámých lidí:"
+#: ../../mod/uexport.php:77
+msgid "Export account"
+msgstr "Exportovat účet"
 
-#: ../../mod/settings.php:1141
-msgid "Notification Settings"
-msgstr "Nastavení notifikací"
+#: ../../mod/uexport.php:77
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření  zálohy svého účtu a/nebo k přesunu na jiný server."
 
-#: ../../mod/settings.php:1142
-msgid "By default post a status message when:"
-msgstr "Defaultně posílat statusové zprávy když:"
+#: ../../mod/uexport.php:78
+msgid "Export all"
+msgstr "Exportovat vše"
 
-#: ../../mod/settings.php:1143
-msgid "accepting a friend request"
-msgstr "akceptuji požadavek na přátelství"
+#: ../../mod/uexport.php:78
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
+msgstr "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)"
 
-#: ../../mod/settings.php:1144
-msgid "joining a forum/community"
-msgstr "připojující se k fóru/komunitě"
+#: ../../mod/ping.php:238
+msgid "{0} wants to be your friend"
+msgstr "{0} chce být Vaším přítelem"
 
-#: ../../mod/settings.php:1145
-msgid "making an <em>interesting</em> profile change"
-msgstr "provedení <em>zajímavé</em> profilové změny"
+#: ../../mod/ping.php:243
+msgid "{0} sent you a message"
+msgstr "{0} vám poslal zprávu"
 
-#: ../../mod/settings.php:1146
-msgid "Send a notification email when:"
-msgstr "Poslat notifikaci e-mailem, když"
+#: ../../mod/ping.php:248
+msgid "{0} requested registration"
+msgstr "{0} požaduje registraci"
 
-#: ../../mod/settings.php:1147
-msgid "You receive an introduction"
-msgstr "obdržíte žádost o propojení"
+#: ../../mod/ping.php:254
+#, php-format
+msgid "{0} commented %s's post"
+msgstr "{0} komentoval příspěvek uživatele %s"
 
-#: ../../mod/settings.php:1148
-msgid "Your introductions are confirmed"
-msgstr "Vaše žádosti jsou potvrzeny"
+#: ../../mod/ping.php:259
+#, php-format
+msgid "{0} liked %s's post"
+msgstr "{0} má rád příspěvek uživatele %s"
 
-#: ../../mod/settings.php:1149
-msgid "Someone writes on your profile wall"
-msgstr "někdo Vám napíše na Vaši profilovou stránku"
+#: ../../mod/ping.php:264
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "{0} nemá rád příspěvek uživatele %s"
 
-#: ../../mod/settings.php:1150
-msgid "Someone writes a followup comment"
-msgstr "někdo Vám napíše následný komentář"
+#: ../../mod/ping.php:269
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0} se skamarádil s %s"
 
-#: ../../mod/settings.php:1151
-msgid "You receive a private message"
-msgstr "obdržíte soukromou zprávu"
+#: ../../mod/ping.php:274
+msgid "{0} posted"
+msgstr "{0} zasláno"
 
-#: ../../mod/settings.php:1152
-msgid "You receive a friend suggestion"
-msgstr "Obdržel jste návrh přátelství"
+#: ../../mod/ping.php:279
+#, php-format
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0} označen %s' příspěvek s #%s"
 
-#: ../../mod/settings.php:1153
-msgid "You are tagged in a post"
-msgstr "Jste označen v příspěvku"
+#: ../../mod/ping.php:285
+msgid "{0} mentioned you in a post"
+msgstr "{0} vás zmínil v příspěvku"
 
-#: ../../mod/settings.php:1154
-msgid "You are poked/prodded/etc. in a post"
-msgstr "Byl Jste šťouchnout v příspěvku"
+#: ../../mod/navigation.php:20 ../../include/nav.php:34
+msgid "Nothing new here"
+msgstr "Zde není nic nového"
 
-#: ../../mod/settings.php:1157
-msgid "Advanced Account/Page Type Settings"
-msgstr "Pokročilé nastavení účtu/stránky"
+#: ../../mod/navigation.php:24 ../../include/nav.php:38
+msgid "Clear notifications"
+msgstr "Smazat notifikace"
 
-#: ../../mod/settings.php:1158
-msgid "Change the behaviour of this account for special situations"
-msgstr "Změnit chování tohoto účtu ve speciálních situacích"
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "Není k dispozici."
 
-#: ../../mod/settings.php:1161
-msgid "Relocate"
-msgstr "Změna umístění"
+#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:129
+#: ../../include/nav.php:128
+msgid "Community"
+msgstr "Komunita"
 
-#: ../../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 "Pokud jste přemístil tento profil z jiného serveru a nějaký z vašich kontaktů nedostává Vaše aktualizace, zkuste stisknout toto tlačítko."
+#: ../../mod/filer.php:30 ../../include/conversation.php:1004
+#: ../../include/conversation.php:1022
+msgid "Save to Folder:"
+msgstr "Uložit do složky:"
 
-#: ../../mod/settings.php:1163
-msgid "Resend relocate message to contacts"
-msgstr "Znovu odeslat správu o změně umístění Vašim kontaktům"
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "- vyber -"
 
-#: ../../mod/profiles.php:37
-msgid "Profile deleted."
-msgstr "Profil smazán."
+#: ../../mod/filer.php:31 ../../mod/notes.php:63 ../../include/text.php:954
+msgid "Save"
+msgstr "Uložit"
 
-#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
-msgid "Profile-"
-msgstr "Profil-"
+#: ../../mod/wall_attach.php:75
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP"
 
-#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
-msgid "New profile created."
-msgstr "Nový profil vytvořen."
+#: ../../mod/wall_attach.php:75
+msgid "Or - did you try to upload an empty file?"
+msgstr "Nebo - nenahrával jste prázdný soubor?"
 
-#: ../../mod/profiles.php:95
-msgid "Profile unavailable to clone."
-msgstr "Profil není možné naklonovat."
+#: ../../mod/wall_attach.php:81
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Velikost souboru přesáhla limit %d"
 
-#: ../../mod/profiles.php:170
-msgid "Profile Name is required."
-msgstr "Jméno profilu je povinné."
+#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
+msgid "File upload failed."
+msgstr "Nahrání souboru se nezdařilo."
 
-#: ../../mod/profiles.php:317
-msgid "Marital Status"
-msgstr "Rodinný Stav"
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Neplatný identifikátor profilu."
 
-#: ../../mod/profiles.php:321
-msgid "Romantic Partner"
-msgstr "Romatický partner"
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr "Editor viditelnosti profilu "
 
-#: ../../mod/profiles.php:325
-msgid "Likes"
-msgstr "Libí se mi"
+#: ../../mod/profperm.php:105 ../../mod/group.php:224
+msgid "Click on a contact to add or remove."
+msgstr "Klikněte na kontakt pro přidání nebo odebrání"
 
-#: ../../mod/profiles.php:329
-msgid "Dislikes"
-msgstr "Nelibí se mi"
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Viditelný pro"
 
-#: ../../mod/profiles.php:333
-msgid "Work/Employment"
-msgstr "Práce/Zaměstnání"
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Všechny kontakty (se zabezpečeným přístupovým profilem )"
 
-#: ../../mod/profiles.php:336
-msgid "Religion"
-msgstr "Náboženství"
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Opravdu chcete smazat tento návrh?"
 
-#: ../../mod/profiles.php:340
-msgid "Political Views"
-msgstr "Politické přesvědčení"
+#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:527
+#: ../../include/contact_widgets.php:34
+msgid "Friend Suggestions"
+msgstr "Návrhy přátel"
 
-#: ../../mod/profiles.php:344
-msgid "Gender"
-msgstr "Pohlaví"
+#: ../../mod/suggest.php:72
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin."
 
-#: ../../mod/profiles.php:348
-msgid "Sexual Preference"
-msgstr "Sexuální orientace"
+#: ../../mod/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1445
+#: ../../include/contact_widgets.php:9
+msgid "Connect"
+msgstr "Spojit"
 
-#: ../../mod/profiles.php:352
-msgid "Homepage"
-msgstr "Domácí stránka"
+#: ../../mod/suggest.php:90
+msgid "Ignore/Hide"
+msgstr "Ignorovat / skrýt"
 
-#: ../../mod/profiles.php:356
-msgid "Interests"
-msgstr "Zájmy"
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Přístup odmítnut"
 
-#: ../../mod/profiles.php:360
-msgid "Address"
-msgstr "Adresa"
+#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s vítá %2$s"
 
-#: ../../mod/profiles.php:367
-msgid "Location"
-msgstr "Lokace"
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Správa identit a / nebo stránek"
 
-#: ../../mod/profiles.php:450
-msgid "Profile updated."
-msgstr "Profil aktualizován."
+#: ../../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 "Přepnutí mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí Vaše detaily účtu, nebo kterým jste přidělili oprávnění nastavovat přístupová práva."
 
-#: ../../mod/profiles.php:521
-msgid " and "
-msgstr " a "
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Vyberte identitu pro správu: "
 
-#: ../../mod/profiles.php:529
-msgid "public profile"
-msgstr "veřejný profil"
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr "Žádní potenciální delegáti stránky nenalezeni."
 
-#: ../../mod/profiles.php:532
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s změnil %2$s na &ldquo;%3$s&rdquo;"
+#: ../../mod/delegate.php:124 ../../include/nav.php:167
+msgid "Delegate Page Management"
+msgstr "Správa delegátů stránky"
 
-#: ../../mod/profiles.php:533
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " - Navštivte %2$s uživatele %1$s"
+#: ../../mod/delegate.php:126
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Delegáti jsou schopni řídit všechny aspekty tohoto účtu / stránky, kromě základních nastavení účtu. Prosím, nepředávejte svůj osobní účet nikomu, komu úplně nevěříte.."
 
-#: ../../mod/profiles.php:536
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s aktualizoval %2$s, změnou %3$s."
+#: ../../mod/delegate.php:127
+msgid "Existing Page Managers"
+msgstr "Stávající správci stránky"
 
-#: ../../mod/profiles.php:609
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Skrýt u tohoto profilu Vaše kontakty / seznam přátel před před dalšími uživateli zobrazující si tento profil?"
+#: ../../mod/delegate.php:129
+msgid "Existing Page Delegates"
+msgstr "Stávající delegáti stránky "
 
-#: ../../mod/profiles.php:629
-msgid "Edit Profile Details"
-msgstr "Upravit podrobnosti profilu "
+#: ../../mod/delegate.php:131
+msgid "Potential Delegates"
+msgstr "Potenciální delegáti"
 
-#: ../../mod/profiles.php:631
-msgid "Change Profile Photo"
-msgstr "Změna Profilové fotky"
+#: ../../mod/delegate.php:134
+msgid "Add"
+msgstr "Přidat"
 
-#: ../../mod/profiles.php:632
-msgid "View this profile"
-msgstr "Zobrazit tento profil"
+#: ../../mod/delegate.php:135
+msgid "No entries."
+msgstr "Žádné záznamy."
 
-#: ../../mod/profiles.php:633
-msgid "Create a new profile using these settings"
-msgstr "Vytvořit nový profil pomocí tohoto nastavení"
+#: ../../mod/viewcontacts.php:39
+msgid "No contacts."
+msgstr "Žádné kontakty."
 
-#: ../../mod/profiles.php:634
-msgid "Clone this profile"
-msgstr "Klonovat tento profil"
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:874
+msgid "View Contacts"
+msgstr "Zobrazit kontakty"
 
-#: ../../mod/profiles.php:635
-msgid "Delete this profile"
-msgstr "Smazat tento profil"
+#: ../../mod/notes.php:44 ../../boot.php:2010
+msgid "Personal Notes"
+msgstr "Osobní poznámky"
 
-#: ../../mod/profiles.php:636
-msgid "Profile Name:"
-msgstr "Jméno profilu:"
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Šťouchanec"
 
-#: ../../mod/profiles.php:637
-msgid "Your Full Name:"
-msgstr "Vaše celé jméno:"
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "někoho šťouchnout nebo mu provést  jinou věc"
 
-#: ../../mod/profiles.php:638
-msgid "Title/Description:"
-msgstr "Název / Popis:"
+#: ../../mod/poke.php:194
+msgid "Recipient"
+msgstr "Příjemce"
 
-#: ../../mod/profiles.php:639
-msgid "Your Gender:"
-msgstr "Vaše pohlaví:"
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Vyberte, co si přejete příjemci udělat"
 
-#: ../../mod/profiles.php:640
-#, php-format
-msgid "Birthday (%s):"
-msgstr "Narozeniny uživatele (%s):"
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr "Změnit tento příspěvek na soukromý"
 
-#: ../../mod/profiles.php:641
-msgid "Street Address:"
-msgstr "Ulice:"
+#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:525
+msgid "Global Directory"
+msgstr "Globální adresář"
 
-#: ../../mod/profiles.php:642
-msgid "Locality/City:"
-msgstr "Město:"
+#: ../../mod/directory.php:57
+msgid "Find on this site"
+msgstr "Nalézt na tomto webu"
 
-#: ../../mod/profiles.php:643
-msgid "Postal/Zip Code:"
-msgstr "PSČ:"
+#: ../../mod/directory.php:60
+msgid "Site Directory"
+msgstr "Adresář serveru"
 
-#: ../../mod/profiles.php:644
-msgid "Country:"
-msgstr "Země:"
+#: ../../mod/directory.php:114
+msgid "Gender: "
+msgstr "Pohlaví: "
 
-#: ../../mod/profiles.php:645
-msgid "Region/State:"
-msgstr "Region / stát:"
+#: ../../mod/directory.php:136 ../../boot.php:1515
+#: ../../include/profile_advanced.php:17
+msgid "Gender:"
+msgstr "Pohlaví:"
 
-#: ../../mod/profiles.php:646
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Rodinný stav:"
+#: ../../mod/directory.php:138 ../../boot.php:1518
+#: ../../include/profile_advanced.php:37
+msgid "Status:"
+msgstr "Status:"
 
-#: ../../mod/profiles.php:647
-msgid "Who: (if applicable)"
-msgstr "Kdo: (pokud je možné)"
+#: ../../mod/directory.php:140 ../../boot.php:1520
+#: ../../include/profile_advanced.php:48
+msgid "Homepage:"
+msgstr "Domácí stránka:"
 
-#: ../../mod/profiles.php:648
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Příklady: jan123, Jan Novák, jan@seznam.cz"
+#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
+msgid "About:"
+msgstr "O mě:"
 
-#: ../../mod/profiles.php:649
-msgid "Since [date]:"
-msgstr "Od [data]:"
+#: ../../mod/directory.php:187
+msgid "No entries (some entries may be hidden)."
+msgstr "Žádné záznamy (některé položky mohou být skryty)."
 
-#: ../../mod/profiles.php:650 ../../include/profile_advanced.php:46
-msgid "Sexual Preference:"
-msgstr "Sexuální preference:"
+#: ../../mod/localtime.php:12 ../../include/event.php:11
+#: ../../include/bb2diaspora.php:133
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ g:i A"
 
-#: ../../mod/profiles.php:651
-msgid "Homepage URL:"
-msgstr "Odkaz na domovskou stránku:"
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Časová konverze"
 
-#: ../../mod/profiles.php:652 ../../include/profile_advanced.php:50
-msgid "Hometown:"
-msgstr "Rodné město"
+#: ../../mod/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica poskytuje tuto službu pro sdílení událostí s ostatními sítěmi a přáteli v neznámých časových zónách"
 
-#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:54
-msgid "Political Views:"
-msgstr "Politické přesvědčení:"
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC čas: %s"
 
-#: ../../mod/profiles.php:654
-msgid "Religious Views:"
-msgstr "Náboženské přesvědčení:"
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Aktuální časové pásmo: %s"
 
-#: ../../mod/profiles.php:655
-msgid "Public Keywords:"
-msgstr "Veřejná klíčová slova:"
+#: ../../mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Převedený lokální čas : %s"
 
-#: ../../mod/profiles.php:656
-msgid "Private Keywords:"
-msgstr "Soukromá klíčová slova:"
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Prosím, vyberte své časové pásmo:"
 
-#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:62
-msgid "Likes:"
-msgstr "Líbí se:"
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Příspěvek úspěšně odeslán"
 
-#: ../../mod/profiles.php:658 ../../include/profile_advanced.php:64
-msgid "Dislikes:"
-msgstr "Nelibí se:"
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo."
 
-#: ../../mod/profiles.php:659
-msgid "Example: fishing photography software"
-msgstr "Příklad: fishing photography software"
+#: ../../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 "Nepodařilo se snížit velikost obrázku [%s]."
 
-#: ../../mod/profiles.php:660
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)"
+#: ../../mod/profile_photo.php:118
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nové fotografie nezobrazí okamžitě."
 
-#: ../../mod/profiles.php:661
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)"
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Obrázek nelze zpracovat "
 
-#: ../../mod/profiles.php:662
-msgid "Tell us about yourself..."
-msgstr "Řekněte nám něco o sobě ..."
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Nahrát soubor:"
 
-#: ../../mod/profiles.php:663
-msgid "Hobbies/Interests"
-msgstr "Koníčky/zájmy"
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Vybrat profil:"
 
-#: ../../mod/profiles.php:664
-msgid "Contact information and Social Networks"
-msgstr "Kontaktní informace a sociální sítě"
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Nahrát"
 
-#: ../../mod/profiles.php:665
-msgid "Musical interests"
-msgstr "Hudební vkus"
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "přeskočit tento krok "
 
-#: ../../mod/profiles.php:666
-msgid "Books, literature"
-msgstr "Knihy, literatura"
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "Vybrat fotografii z Vašich fotoalb"
 
-#: ../../mod/profiles.php:667
-msgid "Television"
-msgstr "Televize"
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "Oříznout obrázek"
 
-#: ../../mod/profiles.php:668
-msgid "Film/dance/culture/entertainment"
-msgstr "Film/tanec/kultura/zábava"
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Prosím, ořízněte tento obrázek pro optimální zobrazení."
 
-#: ../../mod/profiles.php:669
-msgid "Love/romance"
-msgstr "Láska/romantika"
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Editace dokončena"
 
-#: ../../mod/profiles.php:670
-msgid "Work/employment"
-msgstr "Práce/zaměstnání"
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "Obrázek byl úspěšně nahrán."
 
-#: ../../mod/profiles.php:671
-msgid "School/education"
-msgstr "Škola/vzdělání"
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica Komunikační server - Nastavení"
 
-#: ../../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 "Toto je váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu."
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr "Nelze se připojit k databázi."
 
-#: ../../mod/profiles.php:725
-msgid "Edit/Manage Profiles"
-msgstr "Upravit / Spravovat profily"
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "Nelze vytvořit tabulku."
 
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "Skupina vytvořena."
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "Vaše databáze Friendica  byla nainstalována."
 
-#: ../../mod/group.php:35
-msgid "Could not create group."
-msgstr "Nelze vytvořit skupinu."
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do Vašeho adresáře - i když Vy můžete."
 
-#: ../../mod/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
-msgstr "Skupina nenalezena."
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:521
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Přečtěte si prosím informace v souboru \"INSTALL.txt\"."
 
-#: ../../mod/group.php:60
-msgid "Group name changed."
-msgstr "Název skupiny byl změněn."
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "Testování systému"
 
-#: ../../mod/group.php:87
-msgid "Save Group"
-msgstr "Uložit Skupinu"
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "Otestovat znovu"
 
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Vytvořit skupinu kontaktů / přátel."
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Databázové spojení"
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr "Název skupiny: "
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi."
 
-#: ../../mod/group.php:113
-msgid "Group removed."
-msgstr "Skupina odstraněna. "
+#: ../../mod/install.php:229
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru, "
 
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Nelze odstranit skupinu."
+#: ../../mod/install.php:230
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním."
 
-#: ../../mod/group.php:179
-msgid "Group Editor"
-msgstr "Editor skupin"
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Jméno databázového serveru"
 
-#: ../../mod/group.php:192
-msgid "Members"
-msgstr "Členové"
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Přihlašovací jméno k databázi"
 
-#: ../../mod/group.php:224 ../../mod/profperm.php:105
-msgid "Click on a contact to add or remove."
-msgstr "Klikněte na kontakt pro přidání nebo odebrání"
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Heslo k databázovému účtu "
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Zdrojový text (bbcode):"
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Jméno databáze"
 
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Zdrojový (Diaspora) text k převedení do BB kódování:"
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "Emailová adresa administrátora webu"
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr "Zdrojový vstup: "
+#: ../../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 "Vaše emailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní."
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (raw HTML): "
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
+msgstr "Prosím, vyberte výchozí časové pásmo pro váš server"
 
-#: ../../mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html: "
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Nastavení webu"
 
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
+#: ../../mod/install.php:321
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru."
 
-#: ../../mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
+#: ../../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 "Pokud na serveru nemáte nainstalovánu verzi PHP spustitelnou z příkazového řádku, nebudete moci spouštět na pozadí synchronizaci zpráv prostřednictvím cronu. Přečtěte si <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>\n\n    podrobnosti\n    návrhy\n    historie\n\n\t\nThe following url is either missing from the translation or has been translated: 'http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
 
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
+#: ../../mod/install.php:326
+msgid "PHP executable path"
+msgstr "Cesta k \"PHP executable\""
 
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
+#: ../../mod/install.php:326
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Zadejte plnou cestu k spustitelnému souboru php. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci."
 
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
+#: ../../mod/install.php:331
+msgid "Command line PHP"
+msgstr "Příkazový řádek PHP"
 
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Vstupní data (ve formátu Diaspora): "
+#: ../../mod/install.php:340
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "PHP executable není php cli binary (může být verze cgi-fgci)"
 
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
+msgstr "Nalezena PHP verze:"
 
-#: ../../mod/community.php:23
-msgid "Not available."
-msgstr "Není k dispozici."
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
+msgstr "PHP cli binary"
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "Kontakt přidán"
+#: ../../mod/install.php:354
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu."
 
-#: ../../mod/notify.php:61 ../../mod/notifications.php:332
-msgid "No more system notifications."
-msgstr "Žádné další systémová upozornění."
+#: ../../mod/install.php:355
+msgid "This is required for message delivery to work."
+msgstr "Toto je nutné pro fungování doručování zpráv."
 
-#: ../../mod/notify.php:65 ../../mod/notifications.php:336
-msgid "System Notifications"
-msgstr "Systémová upozornění"
+#: ../../mod/install.php:357
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../mod/message.php:9 ../../include/nav.php:159
-msgid "New Message"
-msgstr "Nová zpráva"
+#: ../../mod/install.php:378
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče"
 
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Nepodařilo se najít kontaktní informace."
+#: ../../mod/install.php:379
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Pokud systém běží na Windows, seznamte se s \"http://www.php.net/manual/en/openssl.installation.php\"."
 
-#: ../../mod/message.php:182 ../../mod/notifications.php:103
-#: ../../include/nav.php:156
-msgid "Messages"
-msgstr "Zprávy"
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
+msgstr "Generovat kriptovací klíče"
 
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
-msgstr "Opravdu chcete smazat tuto zprávu?"
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
+msgstr "libCurl PHP modul"
 
-#: ../../mod/message.php:227
-msgid "Message deleted."
-msgstr "Zpráva odstraněna."
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr "GD graphics PHP modul"
 
-#: ../../mod/message.php:258
-msgid "Conversation removed."
-msgstr "Konverzace odstraněna."
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr "OpenSSL PHP modul"
 
-#: ../../mod/message.php:371
-msgid "No messages."
-msgstr "Žádné zprávy."
+#: ../../mod/install.php:391
+msgid "mysqli PHP module"
+msgstr "mysqli PHP modul"
 
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Neznámý odesilatel - %s"
+#: ../../mod/install.php:392
+msgid "mb_string PHP module"
+msgstr "mb_string PHP modul"
 
-#: ../../mod/message.php:381
-#, php-format
-msgid "You and %s"
-msgstr "Vy a %s"
+#: ../../mod/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite modul"
 
-#: ../../mod/message.php:384
-#, php-format
-msgid "%s and You"
-msgstr "%s a Vy"
+#: ../../mod/install.php:397
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován."
 
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
-msgstr "Odstranit konverzaci"
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Chyba: požadovaný libcurl PHP modul není nainstalován."
 
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
-msgstr "D M R - g:i A"
+#: ../../mod/install.php:409
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Chyba: požadovaný GD graphics PHP modul není nainstalován."
 
-#: ../../mod/message.php:411
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d zpráva"
-msgstr[1] "%d zprávy"
-msgstr[2] "%d zpráv"
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Chyba: požadovaný openssl PHP modul není nainstalován."
 
-#: ../../mod/message.php:450
-msgid "Message not available."
-msgstr "Zpráva není k dispozici."
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Chyba: požadovaný mysqli PHP modul není nainstalován."
 
-#: ../../mod/message.php:520
-msgid "Delete message"
-msgstr "Smazat zprávu"
+#: ../../mod/install.php:421
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Chyba: PHP modul mb_string  je vyžadován, ale není nainstalován."
 
-#: ../../mod/message.php:548
+#: ../../mod/install.php:438
 msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Není k dispozici zabezpečená komunikace. <strong>Možná</strong> budete schopni reagovat z odesilatelovy profilové stránky."
+"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 "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři vašeho webového serveru ale nyní mu to není umožněno."
 
-#: ../../mod/message.php:552
-msgid "Send Reply"
-msgstr "Poslat odpověď"
+#: ../../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 "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když Vy můžete."
 
-#: ../../mod/like.php:170 ../../include/conversation.php:140
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s nemá rád %2$s na %3$s"
+#: ../../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 "Na konci této procedury obd nás obdržíte text k uložení v souboru pojmenovaném .htconfig.php ve Vašem Friendica kořenovém adresáři."
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Příspěvek úspěšně odeslán"
+#: ../../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 "Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor \"INSTALL.txt\" pro další instrukce."
 
-#: ../../mod/localtime.php:12 ../../include/event.php:11
-#: ../../include/bb2diaspora.php:393
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ g:i A"
+#: ../../mod/install.php:444
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php je editovatelné"
 
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Časová konverze"
+#: ../../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 "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování."
 
-#: ../../mod/localtime.php:26
+#: ../../mod/install.php:455
 msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica poskytuje tuto službu pro sdílení událostí s ostatními sítěmi a přáteli v neznámých časových zónách"
+"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 "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica"
 
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "UTC čas: %s"
+#: ../../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 "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře"
 
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Aktuální časové pásmo: %s"
+#: ../../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 "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje."
 
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Převedený lokální čas : %s"
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 je nastaven pro zápis"
 
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Prosím, vyberte své časové pásmo:"
+#: ../../mod/install.php:472
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "Url rewrite v .htconfig nefunguje. Prověřte prosím Vaše nastavení serveru."
 
-#: ../../mod/filer.php:30 ../../include/conversation.php:1001
-#: ../../include/conversation.php:1019
-msgid "Save to Folder:"
-msgstr "Uložit do složky:"
+#: ../../mod/install.php:474
+msgid "Url rewrite is working"
+msgstr "Url rewrite je funkční."
 
-#: ../../mod/filer.php:30
-msgid "- select -"
-msgstr "- vyber -"
+#: ../../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 "Databázový konfigurační soubor \".htconfig.php\" nemohl být uložen. Prosím, použijte přiložený text k vytvoření konfiguračního souboru ve vašem kořenovém adresáři webového serveru."
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Neplatný identifikátor profilu."
+#: ../../mod/install.php:508
+msgid "Errors encountered creating database tables."
+msgstr "Při vytváření databázových tabulek došlo k chybám."
 
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "Editor viditelnosti profilu "
+#: ../../mod/install.php:519
+msgid "<h1>What next</h1>"
+msgstr "<h1>Co dál<h1>"
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Viditelný pro"
+#: ../../mod/install.php:520
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři Vašeho webového serveru ale nyní mu to není umožněno."
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Všechny kontakty (se zabezpečeným přístupovým profilem )"
+#: ../../mod/group.php:29
+msgid "Group created."
+msgstr "Skupina vytvořena."
 
-#: ../../mod/viewcontacts.php:39
-msgid "No contacts."
-msgstr "Žádné kontakty."
+#: ../../mod/group.php:35
+msgid "Could not create group."
+msgstr "Nelze vytvořit skupinu."
 
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:857
-msgid "View Contacts"
-msgstr "Zobrazit kontakty"
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
+msgstr "Skupina nenalezena."
 
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Vyhledávání lidí"
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "Název skupiny byl změněn."
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "Žádné shody"
+#: ../../mod/group.php:87
+msgid "Save Group"
+msgstr "Uložit Skupinu"
 
-#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795
-msgid "Upload New Photos"
-msgstr "Nahrát nové fotografie"
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Vytvořit skupinu kontaktů / přátel."
 
-#: ../../mod/photos.php:143
-msgid "Contact information unavailable"
-msgstr "Kontakt byl zablokován"
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "Název skupiny: "
 
-#: ../../mod/photos.php:164
-msgid "Album not found."
-msgstr "Album nenalezeno."
+#: ../../mod/group.php:113
+msgid "Group removed."
+msgstr "Skupina odstraněna. "
 
-#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200
-msgid "Delete Album"
-msgstr "Smazat album"
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Nelze odstranit skupinu."
 
-#: ../../mod/photos.php:197
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Opravdu chcete smazat toto foto album a všechny jeho fotografie?"
+#: ../../mod/group.php:179
+msgid "Group Editor"
+msgstr "Editor skupin"
 
-#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502
-msgid "Delete Photo"
-msgstr "Smazat fotografii"
+#: ../../mod/group.php:192
+msgid "Members"
+msgstr "Členové"
 
-#: ../../mod/photos.php:285
-msgid "Do you really want to delete this photo?"
-msgstr "Opravdu chcete smazat tuto fotografii?"
+#: ../../mod/content.php:119 ../../mod/network.php:514
+msgid "No such group"
+msgstr "Žádná taková skupina"
 
-#: ../../mod/photos.php:656
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s byl označen v %2$s uživatelem %3$s"
+#: ../../mod/content.php:130 ../../mod/network.php:531
+msgid "Group is empty"
+msgstr "Skupina je prázdná"
 
-#: ../../mod/photos.php:656
-msgid "a photo"
-msgstr "fotografie"
+#: ../../mod/content.php:134 ../../mod/network.php:538
+msgid "Group: "
+msgstr "Skupina: "
 
-#: ../../mod/photos.php:761
-msgid "Image exceeds size limit of "
-msgstr "Velikost obrázku překračuje limit velikosti"
+#: ../../mod/content.php:496 ../../include/conversation.php:688
+msgid "View in context"
+msgstr "Pohled v kontextu"
 
-#: ../../mod/photos.php:769
-msgid "Image file is empty."
-msgstr "Soubor obrázku je prázdný."
+#: ../../mod/regmod.php:63
+msgid "Account approved."
+msgstr "Účet schválen."
 
-#: ../../mod/photos.php:801 ../../mod/wall_upload.php:112
-#: ../../mod/profile_photo.php:153
-msgid "Unable to process image."
-msgstr "Obrázek není možné zprocesovat"
+#: ../../mod/regmod.php:100
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registrace zrušena pro %s"
 
-#: ../../mod/photos.php:828 ../../mod/wall_upload.php:138
-#: ../../mod/profile_photo.php:301
-msgid "Image upload failed."
-msgstr "Nahrání obrázku selhalo."
+#: ../../mod/regmod.php:112
+msgid "Please login."
+msgstr "Přihlaste se, prosím."
 
-#: ../../mod/photos.php:924
-msgid "No photos selected"
-msgstr "Není vybrána žádná fotografie"
+#: ../../mod/match.php:12
+msgid "Profile Match"
+msgstr "Shoda profilu"
 
-#: ../../mod/photos.php:1025 ../../mod/videos.php:226
-msgid "Access to this item is restricted."
-msgstr "Přístup k této položce je omezen."
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do Vašeho výchozího profilu."
 
-#: ../../mod/photos.php:1088
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "Použil jste %1$.2f Mbajtů z %2$.2f Mbajtů úložiště fotografií."
+#: ../../mod/match.php:57
+msgid "is interested in:"
+msgstr "zajímá se o:"
+
+#: ../../mod/item.php:110
+msgid "Unable to locate original post."
+msgstr "Nelze nalézt původní příspěvek."
 
-#: ../../mod/photos.php:1123
-msgid "Upload Photos"
-msgstr "Nahrání fotografií "
+#: ../../mod/item.php:319
+msgid "Empty post discarded."
+msgstr "Prázdný příspěvek odstraněn."
 
-#: ../../mod/photos.php:1127 ../../mod/photos.php:1195
-msgid "New album name: "
-msgstr "Název nového alba: "
+#: ../../mod/item.php:891
+msgid "System error. Post not saved."
+msgstr "Chyba systému. Příspěvek nebyl uložen."
 
-#: ../../mod/photos.php:1128
-msgid "or existing album name: "
-msgstr "nebo stávající název alba: "
+#: ../../mod/item.php:917
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Tato zpráva vám byla zaslána od %s, člena sociální sítě Friendica."
 
-#: ../../mod/photos.php:1129
-msgid "Do not show a status post for this upload"
-msgstr "Nezobrazovat stav pro tento upload"
+#: ../../mod/item.php:919
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Můžete je navštívit online na adrese %s"
 
-#: ../../mod/photos.php:1131 ../../mod/photos.php:1497
-msgid "Permissions"
-msgstr "Oprávnění:"
+#: ../../mod/item.php:920
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam."
 
-#: ../../mod/photos.php:1142
-msgid "Private Photo"
-msgstr "Soukromé Fotografie"
+#: ../../mod/item.php:924
+#, php-format
+msgid "%s posted an update."
+msgstr "%s poslal aktualizaci."
 
-#: ../../mod/photos.php:1143
-msgid "Public Photo"
-msgstr "Veřejné Fotografie"
+#: ../../mod/mood.php:62 ../../include/conversation.php:227
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s je právě %2$s"
 
-#: ../../mod/photos.php:1210
-msgid "Edit Album"
-msgstr "Edituj album"
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "Nálada"
 
-#: ../../mod/photos.php:1216
-msgid "Show Newest First"
-msgstr "Zobrazit nejprve nejnovější:"
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "Nastavte svou aktuální náladu a řekněte to Vašim přátelům"
 
-#: ../../mod/photos.php:1218
-msgid "Show Oldest First"
-msgstr "Zobrazit nejprve nejstarší:"
+#: ../../mod/network.php:136
+msgid "Search Results For:"
+msgstr "Výsledky hledání pro:"
 
-#: ../../mod/photos.php:1251 ../../mod/photos.php:1778
-msgid "View Photo"
-msgstr "Zobraz fotografii"
+#: ../../mod/network.php:189 ../../include/group.php:275
+msgid "add"
+msgstr "přidat"
 
-#: ../../mod/photos.php:1286
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen."
+#: ../../mod/network.php:350
+msgid "Commented Order"
+msgstr "Dle komentářů"
 
-#: ../../mod/photos.php:1288
-msgid "Photo not available"
-msgstr "Fotografie není k dispozici"
+#: ../../mod/network.php:353
+msgid "Sort by Comment Date"
+msgstr "Řadit podle data komentáře"
 
-#: ../../mod/photos.php:1344
-msgid "View photo"
-msgstr "Zobrazit obrázek"
+#: ../../mod/network.php:356
+msgid "Posted Order"
+msgstr "Dle data"
 
-#: ../../mod/photos.php:1344
-msgid "Edit photo"
-msgstr "Editovat fotografii"
+#: ../../mod/network.php:359
+msgid "Sort by Post Date"
+msgstr "Řadit podle data příspěvku"
 
-#: ../../mod/photos.php:1345
-msgid "Use as profile photo"
-msgstr "Použít jako profilovou fotografii"
+#: ../../mod/network.php:368
+msgid "Posts that mention or involve you"
+msgstr "Příspěvky, které Vás zmiňují nebo zahrnují"
 
-#: ../../mod/photos.php:1370
-msgid "View Full Size"
-msgstr "Zobrazit v plné velikosti"
+#: ../../mod/network.php:374
+msgid "New"
+msgstr "Nové"
 
-#: ../../mod/photos.php:1444
-msgid "Tags: "
-msgstr "Štítky: "
+#: ../../mod/network.php:377
+msgid "Activity Stream - by date"
+msgstr "Proud aktivit - dle data"
 
-#: ../../mod/photos.php:1447
-msgid "[Remove any tag]"
-msgstr "[Odstranit všechny štítky]"
+#: ../../mod/network.php:383
+msgid "Shared Links"
+msgstr "Sdílené odkazy"
 
-#: ../../mod/photos.php:1487
-msgid "Rotate CW (right)"
-msgstr "Rotovat po směru hodinových ručiček (doprava)"
+#: ../../mod/network.php:386
+msgid "Interesting Links"
+msgstr "Zajímavé odkazy"
 
-#: ../../mod/photos.php:1488
-msgid "Rotate CCW (left)"
-msgstr "Rotovat proti směru hodinových ručiček (doleva)"
+#: ../../mod/network.php:392
+msgid "Starred"
+msgstr "S hvězdičkou"
 
-#: ../../mod/photos.php:1490
-msgid "New album name"
-msgstr "Nové jméno alba"
+#: ../../mod/network.php:395
+msgid "Favourite Posts"
+msgstr "Oblíbené přízpěvky"
 
-#: ../../mod/photos.php:1493
-msgid "Caption"
-msgstr "Titulek"
+#: ../../mod/network.php:457
+#, 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] "Upozornění: Tato skupina obsahuje %s člena z nezabezpečené sítě."
+msgstr[1] "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě."
+msgstr[2] "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě."
 
-#: ../../mod/photos.php:1495
-msgid "Add a Tag"
-msgstr "Přidat štítek"
+#: ../../mod/network.php:460
+msgid "Private messages to this group are at risk of public disclosure."
+msgstr "Soukromé zprávy této skupině jsou vystaveny riziku prozrazení."
 
-#: ../../mod/photos.php:1499
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+#: ../../mod/network.php:548
+msgid "Contact: "
+msgstr "Kontakt: "
 
-#: ../../mod/photos.php:1508
-msgid "Private photo"
-msgstr "Soukromé fotografie"
+#: ../../mod/network.php:550
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení."
 
-#: ../../mod/photos.php:1509
-msgid "Public photo"
-msgstr "Veřejné fotografie"
+#: ../../mod/network.php:555
+msgid "Invalid contact."
+msgstr "Neplatný kontakt."
 
-#: ../../mod/photos.php:1531 ../../include/conversation.php:1080
-msgid "Share"
-msgstr "Sdílet"
+#: ../../mod/crepair.php:104
+msgid "Contact settings applied."
+msgstr "Nastavení kontaktu změněno"
 
-#: ../../mod/photos.php:1784 ../../mod/videos.php:308
-msgid "View Album"
-msgstr "Zobrazit album"
+#: ../../mod/crepair.php:106
+msgid "Contact update failed."
+msgstr "Aktualizace kontaktu selhala."
 
-#: ../../mod/photos.php:1793
-msgid "Recent Photos"
-msgstr "Aktuální fotografie"
+#: ../../mod/crepair.php:137
+msgid "Repair Contact Settings"
+msgstr "Opravit nastavení kontaktu"
 
-#: ../../mod/wall_attach.php:69
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Velikost souboru přesáhla limit %d"
+#: ../../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>Varování: Toto je velmi pokročilé</strong> a pokud zadáte nesprávné informace, Vaše komunikace s tímto kontaktem může přestat fungovat."
 
-#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
-msgid "File upload failed."
-msgstr "Nahrání souboru se nezdařilo."
+#: ../../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 "Prosím použijte <strong>ihned</strong> v prohlížeči tlačítko \"zpět\" pokud si nejste jistí co dělat na této stránce."
 
-#: ../../mod/videos.php:125
-msgid "No videos selected"
-msgstr "Není vybráno žádné video"
+#: ../../mod/crepair.php:146
+msgid "Return to contact editor"
+msgstr "Návrat k editoru kontaktu"
 
-#: ../../mod/videos.php:301 ../../include/text.php:1383
-msgid "View Video"
-msgstr "Zobrazit video"
+#: ../../mod/crepair.php:151
+msgid "Account Nickname"
+msgstr "Přezdívka účtu"
 
-#: ../../mod/videos.php:317
-msgid "Recent Videos"
-msgstr "Aktuální Videa"
+#: ../../mod/crepair.php:152
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname - upřednostněno před Jménem/Přezdívkou"
 
-#: ../../mod/videos.php:319
-msgid "Upload New Videos"
-msgstr "Nahrát nová videa"
+#: ../../mod/crepair.php:153
+msgid "Account URL"
+msgstr "URL adresa účtu"
 
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Šťouchanec"
+#: ../../mod/crepair.php:154
+msgid "Friend Request URL"
+msgstr "Žádost o pÅ\99átelství URL"
 
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "někoho šťouchnout nebo mu provést  jinou věc"
+#: ../../mod/crepair.php:155
+msgid "Friend Confirm URL"
+msgstr "URL adresa potvrzení přátelství"
 
-#: ../../mod/poke.php:194
-msgid "Recipient"
-msgstr "Příjemce"
+#: ../../mod/crepair.php:156
+msgid "Notification Endpoint URL"
+msgstr "Notifikační URL adresa"
 
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Vyberte, co si přejete příjemci udělat"
+#: ../../mod/crepair.php:157
+msgid "Poll/Feed URL"
+msgstr "Poll/Feed URL adresa"
 
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr "Změnit tento příspěvek na soukromý"
+#: ../../mod/crepair.php:158
+msgid "New photo from this URL"
+msgstr "Nové foto z této URL adresy"
 
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s následuje %3$s uživatele %2$s"
+#: ../../mod/crepair.php:159
+msgid "Remote Self"
+msgstr "Remote Self"
 
-#: ../../mod/uexport.php:72
-msgid "Export account"
-msgstr "Exportovat účet"
+#: ../../mod/crepair.php:161
+msgid "Mirror postings from this contact"
+msgstr "Zrcadlení správ od tohoto kontaktu"
 
-#: ../../mod/uexport.php:72
+#: ../../mod/crepair.php:161
 msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
-msgstr "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření  zálohy svého účtu a/nebo k přesunu na jiný server."
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu."
 
-#: ../../mod/uexport.php:73
-msgid "Export all"
-msgstr "Exportovat vše"
+#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
+#: ../../include/nav.php:145
+msgid "Your posts and conversations"
+msgstr "Vaše příspěvky a konverzace"
 
-#: ../../mod/uexport.php:73
-msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
-msgstr "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)"
+#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
+msgid "Your profile page"
+msgstr "Vaše profilová stránka"
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr "Společní přátelé"
+#: ../../view/theme/diabook/theme.php:125
+msgid "Your contacts"
+msgstr "Vaše kontakty"
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
-msgstr "Žádné společné kontakty."
+#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
+msgid "Your photos"
+msgstr "Vaše fotky"
+
+#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79
+msgid "Your events"
+msgstr "Vaše události"
 
-#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "Obrázek překročil limit velikosti %d"
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
+msgid "Personal notes"
+msgstr "Osobní poznámky"
 
-#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
-#: ../../mod/wall_upload.php:151 ../../mod/item.php:453
-#: ../../include/message.php:144
-msgid "Wall Photos"
-msgstr "Fotografie na zdi"
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
+msgid "Your personal photos"
+msgstr "Vaše osobní fotky"
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo."
+#: ../../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 "Komunitní stránky"
 
-#: ../../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 "Nepodařilo se snížit velikost obrázku [%s]."
+#: ../../view/theme/diabook/theme.php:391
+#: ../../view/theme/diabook/theme.php:626
+#: ../../view/theme/diabook/config.php:160
+msgid "Community Profiles"
+msgstr "Komunitní profily"
 
-#: ../../mod/profile_photo.php:118
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nové fotografie nezobrazí okamžitě."
+#: ../../view/theme/diabook/theme.php:412
+#: ../../view/theme/diabook/theme.php:630
+#: ../../view/theme/diabook/config.php:164
+msgid "Last users"
+msgstr "Poslední uživatelé"
 
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Obrázek nelze zpracovat "
+#: ../../view/theme/diabook/theme.php:441
+#: ../../view/theme/diabook/theme.php:632
+#: ../../view/theme/diabook/config.php:166
+msgid "Last likes"
+msgstr "Poslední líbí/nelíbí"
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Nahrát soubor:"
+#: ../../view/theme/diabook/theme.php:463 ../../include/text.php:1953
+#: ../../include/conversation.php:118 ../../include/conversation.php:246
+msgid "event"
+msgstr "událost"
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "Vybrat profil:"
+#: ../../view/theme/diabook/theme.php:486
+#: ../../view/theme/diabook/theme.php:631
+#: ../../view/theme/diabook/config.php:165
+msgid "Last photos"
+msgstr "Poslední fotografie"
 
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
-msgstr "Nahrát"
+#: ../../view/theme/diabook/theme.php:523
+#: ../../view/theme/diabook/theme.php:629
+#: ../../view/theme/diabook/config.php:163
+msgid "Find Friends"
+msgstr "Nalézt Přátele"
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "přeskočit tento krok "
+#: ../../view/theme/diabook/theme.php:524
+msgid "Local Directory"
+msgstr "Lokální Adresář"
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "Vybrat fotografii z Vašich fotoalb"
+#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35
+msgid "Similar Interests"
+msgstr "Podobné zájmy"
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "Oříznout obrázek"
+#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37
+msgid "Invite Friends"
+msgstr "Pozvat přátele"
 
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Prosím, ořízněte tento obrázek pro optimální zobrazení."
+#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/theme.php:625
+#: ../../view/theme/diabook/config.php:159
+msgid "Earth Layers"
+msgstr "Earth Layers"
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Editace dokončena"
+#: ../../view/theme/diabook/theme.php:584
+msgid "Set zoomfactor for Earth Layers"
+msgstr "Nastavit faktor přiblížení pro Earth Layers"
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "Obrázek byl úspěšně nahrán."
+#: ../../view/theme/diabook/theme.php:585
+#: ../../view/theme/diabook/config.php:156
+msgid "Set longitude (X) for Earth Layers"
+msgstr "Nastavit zeměpistnou délku (X) pro Earth Layers"
 
-#: ../../mod/apps.php:11
-msgid "Applications"
-msgstr "Aplikace"
+#: ../../view/theme/diabook/theme.php:586
+#: ../../view/theme/diabook/config.php:157
+msgid "Set latitude (Y) for Earth Layers"
+msgstr "Nastavit zeměpistnou šířku (X) pro Earth Layers"
 
-#: ../../mod/apps.php:14
-msgid "No installed applications."
-msgstr "Žádné nainstalované aplikace."
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:627
+#: ../../view/theme/diabook/config.php:161
+msgid "Help or @NewHere ?"
+msgstr "Pomoc nebo @ProNováčky ?"
 
-#: ../../mod/navigation.php:20 ../../include/nav.php:34
-msgid "Nothing new here"
-msgstr "Zde není nic nového"
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:628
+#: ../../view/theme/diabook/config.php:162
+msgid "Connect Services"
+msgstr "Propojené služby"
 
-#: ../../mod/navigation.php:24 ../../include/nav.php:38
-msgid "Clear notifications"
-msgstr "Smazat notifikace"
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328
+msgid "don't show"
+msgstr "nikdy nezobrazit"
 
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr "Shoda profilu"
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327
+msgid "show"
+msgstr "zobrazit"
 
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do Vašeho výchozího profilu."
+#: ../../view/theme/diabook/theme.php:622
+msgid "Show/hide boxes at right-hand column:"
+msgstr "Zobrazit/skrýt boxy na pravém sloupci:"
 
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr "zajímá se o:"
+#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:49
+#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
+#: ../../view/theme/cleanzero/config.php:82
+msgid "Theme settings"
+msgstr "Nastavení téma"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Štítek odstraněn"
+#: ../../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 "Nastav velikost písma pro přízpěvky a komentáře."
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Odebrat štítek položky"
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/dispy/config.php:74
+msgid "Set line-height for posts and comments"
+msgstr "Nastav výšku řádku  pro přízpěvky a komentáře."
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Vyberte štítek k odebrání: "
+#: ../../view/theme/diabook/config.php:153
+msgid "Set resolution for middle column"
+msgstr "Nastav rozlišení pro prostřední sloupec"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
-msgid "Remove"
-msgstr "Odstranit"
+#: ../../view/theme/diabook/config.php:154
+msgid "Set color scheme"
+msgstr "Nastavení barevného schematu"
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
-msgstr "Název události a datum začátku jsou vyžadovány."
+#: ../../view/theme/diabook/config.php:155
+msgid "Set zoomfactor for Earth Layer"
+msgstr "Nastavit přiblížení pro Earth Layer"
 
-#: ../../mod/events.php:291
-msgid "l, F j"
-msgstr "l, F j"
+#: ../../view/theme/vier/config.php:50
+msgid "Set style"
+msgstr "Nastavit styl"
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "Editovat událost"
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Nastavit barevné schéma"
 
-#: ../../mod/events.php:335 ../../include/text.php:1615
-msgid "link to source"
-msgstr "odkaz na zdroj"
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Zarovnání"
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "Vytvořit novou událost"
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Vlevo"
 
-#: ../../mod/events.php:372
-msgid "Previous"
-msgstr "Předchozí"
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Uprostřed"
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "hodina:minuta"
+#: ../../view/theme/quattro/config.php:68
+#: ../../view/theme/cleanzero/config.php:86
+msgid "Color scheme"
+msgstr "Barevné schéma"
 
-#: ../../mod/events.php:456
-msgid "Event details"
-msgstr "Detaily události"
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "Velikost písma u příspěvků"
 
-#: ../../mod/events.php:457
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr "Formát je %s %s. Datum začátku a Název jsou vyžadovány."
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "Velikost písma textů"
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
-msgstr "Událost začíná:"
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
+msgstr "Nastavit velikost fotek v přízpěvcích a komentářích (šířka a výška)"
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "Vyžadováno"
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Nastavení šířku grafické šablony"
 
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
-msgstr "Datum/čas konce není zadán nebo není relevantní"
+#: ../../boot.php:692
+msgid "Delete this item?"
+msgstr "Odstranit tuto položku?"
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "Akce končí:"
+#: ../../boot.php:695
+msgid "show fewer"
+msgstr "zobrazit méně"
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "Nastavit časové pásmo pro uživatele s právem pro čtení"
+#: ../../boot.php:1023
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "Aktualizace %s selhala. Zkontrolujte protokol chyb."
 
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "Popis:"
+#: ../../boot.php:1025
+#, php-format
+msgid "Update Error at %s"
+msgstr "Chyba aktualizace na %s"
 
-#: ../../mod/events.php:473
-msgid "Title:"
-msgstr "Název:"
+#: ../../boot.php:1135
+msgid "Create a New Account"
+msgstr "Vytvořit nový účet"
 
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "Sdílet tuto událost"
+#: ../../boot.php:1160 ../../include/nav.php:73
+msgid "Logout"
+msgstr "Odhlásit se"
 
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr "Žádní potenciální delegáti stránky nenalezeni."
+#: ../../boot.php:1161 ../../include/nav.php:91
+msgid "Login"
+msgstr "Přihlásit se"
 
-#: ../../mod/delegate.php:121 ../../include/nav.php:165
-msgid "Delegate Page Management"
-msgstr "Správa delegátů stránky"
+#: ../../boot.php:1163
+msgid "Nickname or Email address: "
+msgstr "Přezdívka nebo e-mailová adresa:"
 
-#: ../../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 "Delegáti jsou schopni řídit všechny aspekty tohoto účtu / stránky, kromě základních nastavení účtu. Prosím, nepředávejte svůj osobní účet nikomu, komu úplně nevěříte.."
+#: ../../boot.php:1164
+msgid "Password: "
+msgstr "Heslo: "
 
-#: ../../mod/delegate.php:124
-msgid "Existing Page Managers"
-msgstr "Stávající správci stránky"
+#: ../../boot.php:1165
+msgid "Remember me"
+msgstr "Pamatuj si mne"
 
-#: ../../mod/delegate.php:126
-msgid "Existing Page Delegates"
-msgstr "Stávající delegáti stránky "
+#: ../../boot.php:1168
+msgid "Or login using OpenID: "
+msgstr "Nebo přihlášení pomocí OpenID: "
 
-#: ../../mod/delegate.php:128
-msgid "Potential Delegates"
-msgstr "Potenciální delegáti"
+#: ../../boot.php:1174
+msgid "Forgot your password?"
+msgstr "Zapomněli jste své heslo?"
 
-#: ../../mod/delegate.php:131
-msgid "Add"
-msgstr "Přidat"
+#: ../../boot.php:1177
+msgid "Website Terms of Service"
+msgstr "Podmínky použití serveru"
 
-#: ../../mod/delegate.php:132
-msgid "No entries."
-msgstr "Žádné záznamy."
+#: ../../boot.php:1178
+msgid "terms of service"
+msgstr "podmínky použití"
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "Kontakty, které nejsou členy skupiny"
+#: ../../boot.php:1180
+msgid "Website Privacy Policy"
+msgstr "Pravidla ochrany soukromí serveru"
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "Soubory"
+#: ../../boot.php:1181
+msgid "privacy policy"
+msgstr "Ochrana soukromí"
 
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
-msgstr "Systém vypnut z důvodů údržby"
+#: ../../boot.php:1314
+msgid "Requested account is not available."
+msgstr "Požadovaný účet není dostupný."
 
-#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
-msgid "Remove My Account"
-msgstr "Odstranit můj účet"
+#: ../../boot.php:1393 ../../boot.php:1497
+msgid "Edit profile"
+msgstr "Upravit profil"
 
-#: ../../mod/removeme.php:46
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit."
+#: ../../boot.php:1459
+msgid "Message"
+msgstr "Zpráva"
 
-#: ../../mod/removeme.php:47
-msgid "Please enter your password for verification:"
-msgstr "Prosím, zadejte své heslo pro ověření:"
+#: ../../boot.php:1467 ../../include/nav.php:171
+msgid "Profiles"
+msgstr "Profily"
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Návrhy přátelství odeslány "
+#: ../../boot.php:1467
+msgid "Manage/edit profiles"
+msgstr "Spravovat/upravit profily"
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Navrhněte přátelé"
+#: ../../boot.php:1596 ../../boot.php:1682
+msgid "g A l F d"
+msgstr "g A l F d"
 
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Navrhněte přátelé pro uživatele %s"
+#: ../../boot.php:1597 ../../boot.php:1683
+msgid "F d"
+msgstr "d. F"
 
-#: ../../mod/item.php:108
-msgid "Unable to locate original post."
-msgstr "Nelze nalézt původní příspěvek."
+#: ../../boot.php:1642 ../../boot.php:1723
+msgid "[today]"
+msgstr "[Dnes]"
 
-#: ../../mod/item.php:317
-msgid "Empty post discarded."
-msgstr "Prázdný příspěvek odstraněn."
+#: ../../boot.php:1654
+msgid "Birthday Reminders"
+msgstr "Připomínka narozenin"
 
-#: ../../mod/item.php:884
-msgid "System error. Post not saved."
-msgstr "Chyba systému. Příspěvek nebyl uložen."
+#: ../../boot.php:1655
+msgid "Birthdays this week:"
+msgstr "Narozeniny tento týden:"
 
-#: ../../mod/item.php:909
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "Tato zpráva vám byla zaslána od %s, člena sociální sítě Friendica."
+#: ../../boot.php:1716
+msgid "[No description]"
+msgstr "[Žádný popis]"
 
-#: ../../mod/item.php:911
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Můžete je navštívit online na adrese %s"
+#: ../../boot.php:1734
+msgid "Event Reminders"
+msgstr "Připomenutí událostí"
 
-#: ../../mod/item.php:912
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam."
+#: ../../boot.php:1735
+msgid "Events this week:"
+msgstr "Události tohoto týdne:"
 
-#: ../../mod/item.php:916
-#, php-format
-msgid "%s posted an update."
-msgstr "%s poslal aktualizaci."
+#: ../../boot.php:1972 ../../include/nav.php:76
+msgid "Status"
+msgstr "Stav"
 
-#: ../../mod/ping.php:238
-msgid "{0} wants to be your friend"
-msgstr "{0} chce být Vaším přítelem"
+#: ../../boot.php:1975
+msgid "Status Messages and Posts"
+msgstr "Statusové zprávy a příspěvky "
 
-#: ../../mod/ping.php:243
-msgid "{0} sent you a message"
-msgstr "{0} vám poslal zprávu"
+#: ../../boot.php:1982
+msgid "Profile Details"
+msgstr "Detaily profilu"
 
-#: ../../mod/ping.php:248
-msgid "{0} requested registration"
-msgstr "{0} požaduje registraci"
+#: ../../boot.php:1993 ../../boot.php:1996
+msgid "Videos"
+msgstr "Videa"
 
-#: ../../mod/ping.php:254
-#, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} komentoval příspěvek uživatele %s"
+#: ../../boot.php:2006
+msgid "Events and Calendar"
+msgstr "Události a kalendář"
 
-#: ../../mod/ping.php:259
-#, php-format
-msgid "{0} liked %s's post"
-msgstr "{0} má rád příspěvek uživatele %s"
+#: ../../boot.php:2013
+msgid "Only You Can See This"
+msgstr "Toto můžete vidět jen Vy"
 
-#: ../../mod/ping.php:264
-#, php-format
-msgid "{0} disliked %s's post"
-msgstr "{0} nemá rád příspěvek uživatele %s"
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Obecné funkčnosti"
 
-#: ../../mod/ping.php:269
-#, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} se skamarádil s %s"
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr "Vícenásobné profily"
 
-#: ../../mod/ping.php:274
-msgid "{0} posted"
-msgstr "{0} zasláno"
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr "Schopnost vytvořit vícenásobné profily"
 
-#: ../../mod/ping.php:279
-#, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0} označen %s' příspěvek s #%s"
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr "Nastavení vytváření příspěvků"
 
-#: ../../mod/ping.php:285
-msgid "{0} mentioned you in a post"
-msgstr "{0} vás zmínil v příspěvku"
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr "Richtext Editor"
 
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "Chyba OpenID protokolu. Navrátilo se žádné ID."
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr "Povolit richtext editor"
 
-#: ../../mod/openid.php:53
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "Nenalezen účet a OpenID registrace na tomto serveru není dovolena."
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr "Náhled příspěvku"
 
-#: ../../mod/openid.php:93 ../../include/auth.php:112
-#: ../../include/auth.php:175
-msgid "Login failed."
-msgstr "Přihlášení se nezdařilo."
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Povolit náhledy příspěvků a komentářů před jejich zveřejněním"
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Neplatný identifikátor požadavku."
+#: ../../include/features.php:33
+msgid "Auto-mention Forums"
+msgstr "Automaticky zmíněná Fóra"
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
-msgstr "Odstranit"
+#: ../../include/features.php:33
+msgid ""
+"Add/remove mention when a fourm page is selected/deselected in ACL window."
+msgstr "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně"
 
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "Systém"
+#: ../../include/features.php:38
+msgid "Network Sidebar Widgets"
+msgstr "Síťové postranní widgety"
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:140
-msgid "Network"
-msgstr "Síť"
+#: ../../include/features.php:39
+msgid "Search by Date"
+msgstr "Vyhledávat dle Data"
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:149
-msgid "Introductions"
-msgstr "Představení"
+#: ../../include/features.php:39
+msgid "Ability to select posts by date ranges"
+msgstr "Možnost označit příspěvky dle časového intervalu"
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "Zobrazit ignorované žádosti"
+#: ../../include/features.php:40
+msgid "Group Filter"
+msgstr "Skupinový Filtr"
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Skrýt ignorované žádosti"
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny"
 
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
-msgstr "Typ oznámení: "
+#: ../../include/features.php:41
+msgid "Network Filter"
+msgstr "Síťový Filtr"
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "Návrh přátelství"
+#: ../../include/features.php:41
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě"
 
-#: ../../mod/notifications.php:152
-#, php-format
-msgid "suggested by %s"
-msgstr "navrhl %s"
+#: ../../include/features.php:42
+msgid "Save search terms for re-use"
+msgstr "Uložit kritéria vyhledávání pro znovupoužití"
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
-msgstr "Zveřejnit aktivitu nového přítele."
+#: ../../include/features.php:47
+msgid "Network Tabs"
+msgstr "Síťové záložky"
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
-msgstr "je-li použitelné"
+#: ../../include/features.php:48
+msgid "Network Personal Tab"
+msgstr "Osobní síťový záložka "
 
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
-msgstr "Vaši údajní známí: "
+#: ../../include/features.php:48
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval "
 
-#: ../../mod/notifications.php:181
-msgid "yes"
-msgstr "ano"
+#: ../../include/features.php:49
+msgid "Network New Tab"
+msgstr "Nová záložka síť"
 
-#: ../../mod/notifications.php:181
-msgid "no"
-msgstr "ne"
+#: ../../include/features.php:49
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)"
 
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
-msgstr "Schválit jako: "
+#: ../../include/features.php:50
+msgid "Network Shared Links Tab"
+msgstr "záložka Síťové sdílené odkazy "
 
-#: ../../mod/notifications.php:189
-msgid "Friend"
-msgstr "Přítel"
+#: ../../include/features.php:50
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně"
 
-#: ../../mod/notifications.php:190
-msgid "Sharer"
-msgstr "Sdílené"
+#: ../../include/features.php:55
+msgid "Post/Comment Tools"
+msgstr "Nástroje Příspěvků/Komentářů"
 
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
-msgstr "Fanoušek / obdivovatel"
+#: ../../include/features.php:56
+msgid "Multiple Deletion"
+msgstr "Násobné mazání"
 
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
-msgstr "Přítel / žádost o připojení"
+#: ../../include/features.php:56
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Označit a smazat více "
 
-#: ../../mod/notifications.php:196
-msgid "New Follower"
-msgstr "Nový následovník"
+#: ../../include/features.php:57
+msgid "Edit Sent Posts"
+msgstr "Editovat Odeslané příspěvky"
 
-#: ../../mod/notifications.php:217
-msgid "No introductions."
-msgstr "Žádné představení."
+#: ../../include/features.php:57
+msgid "Edit and correct posts and comments after sending"
+msgstr "Editovat a opravit příspěvky a komentáře po odeslání"
 
-#: ../../mod/notifications.php:220 ../../include/nav.php:150
-msgid "Notifications"
-msgstr "Upozornění"
+#: ../../include/features.php:58
+msgid "Tagging"
+msgstr "Štítkování"
 
-#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
-#: ../../mod/notifications.php:469
-#, php-format
-msgid "%s liked %s's post"
-msgstr "Uživateli %s se líbí příspěvek uživatele %s"
+#: ../../include/features.php:58
+msgid "Ability to tag existing posts"
+msgstr "Schopnost přidat štítky ke stávajícím příspvěkům"
 
-#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
-#: ../../mod/notifications.php:478
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "Uživateli %s se nelíbí příspěvek uživatele %s"
+#: ../../include/features.php:59
+msgid "Post Categories"
+msgstr "Kategorie příspěvků"
 
-#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
-#: ../../mod/notifications.php:492
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s se nyní přátelí s %s"
+#: ../../include/features.php:59
+msgid "Add categories to your posts"
+msgstr "Přidat kategorie k Vašim příspěvkům"
 
-#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
-#, php-format
-msgid "%s created a new post"
-msgstr "%s vytvořil nový příspěvek"
+#: ../../include/features.php:60 ../../include/contact_widgets.php:103
+msgid "Saved Folders"
+msgstr "Uložené složky"
 
-#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
-#: ../../mod/notifications.php:501
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s okomentoval příspěvek uživatele %s'"
+#: ../../include/features.php:60
+msgid "Ability to file posts under folders"
+msgstr "Možnost řadit příspěvky do složek"
 
-#: ../../mod/notifications.php:302
-msgid "No more network notifications."
-msgstr "Žádné další síťové upozornění."
+#: ../../include/features.php:61
+msgid "Dislike Posts"
+msgstr "Označit příspěvky jako neoblíbené"
 
-#: ../../mod/notifications.php:306
-msgid "Network Notifications"
-msgstr "Upozornění Sítě"
+#: ../../include/features.php:61
+msgid "Ability to dislike posts/comments"
+msgstr "Možnost označit příspěvky/komentáře jako neoblíbené"
 
-#: ../../mod/notifications.php:427
-msgid "No more personal notifications."
-msgstr "Žádné další osobní upozornění."
+#: ../../include/features.php:62
+msgid "Star Posts"
+msgstr "Příspěvky s hvězdou"
 
-#: ../../mod/notifications.php:431
-msgid "Personal Notifications"
-msgstr "Osobní upozornění"
+#: ../../include/features.php:62
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Možnost označit příspěvky s indikátorem hvězdy"
 
-#: ../../mod/notifications.php:508
-msgid "No more home notifications."
-msgstr "Žádné další domácí upozornění."
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "Odhlášen."
 
-#: ../../mod/notifications.php:512
-msgid "Home Notifications"
-msgstr "Domácí upozornění"
+#: ../../include/auth.php:128 ../../include/user.php:66
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Zaznamenali jsme problém s Vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. "
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "Celkový limit pozvánek byl překročen"
+#: ../../include/auth.php:128 ../../include/user.php:66
+msgid "The error message was:"
+msgstr "Chybová zpráva byla:"
 
-#: ../../mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : není platná e-mailová adresa."
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:139
+msgid "Starts:"
+msgstr "Začíná:"
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Prosím přidejte se k nám na Friendice"
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:147
+msgid "Finishes:"
+msgstr "Končí:"
 
-#: ../../mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Limit pozvánek byl překročen. Prosím kontaktujte vašeho administrátora webu."
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : Doručení zprávy se nezdařilo."
+#: ../../include/profile_advanced.php:23
+msgid "j F"
+msgstr "j F"
 
-#: ../../mod/invite.php:93
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d zpráva odeslána."
-msgstr[1] "%d zprávy odeslány."
-msgstr[2] "%d zprávy odeslány."
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "Narozeniny:"
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Nemáte k dispozici žádné další pozvánky"
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Věk:"
 
-#: ../../mod/invite.php:120
+#: ../../include/profile_advanced.php:43
 #, 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 "Navštivte %s pro seznam veřejných serverů, na kterých se můžete přidat. Členové Friendica se mohou navzájem propojovat, stejně tak jako se mohou přiopojit se členy mnoha dalších sociálních sítí."
+msgid "for %1$d %2$s"
+msgstr "pro %1$d %2$s"
 
-#: ../../mod/invite.php:122
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "K akceptaci této pozvánky prosím navštivte a registrujte se na %s nebo na kterékoliv jiném veřejném Friendica serveru."
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "Štítky:"
 
-#: ../../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 "Friendica servery jsou všechny propojené a vytváří tak rozsáhlou sociální síť s důrazem na soukromý a je pod kontrolou svých členů. Členové se mohou propojovat s mnoha dalšími tradičními sociálními sítěmi. Navštivte %s pro seznam alternativních Friendica serverů kde se můžete přidat."
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
+msgstr "Náboženství:"
 
-#: ../../mod/invite.php:126
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy."
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "Koníčky/zájmy:"
+
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "Kontaktní informace a sociální sítě:"
 
-#: ../../mod/invite.php:132
-msgid "Send invitations"
-msgstr "Poslat pozvánky"
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Hudební vkus:"
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "Zadejte e-mailové adresy, jednu na řádek:"
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Knihy, literatura:"
 
-#: ../../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 "Jste srdečně pozván se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální síť."
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "Televize:"
 
-#: ../../mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Budete muset zadat kód této pozvánky: $invite_code"
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film/tanec/kultura/zábava:"
 
-#: ../../mod/invite.php:137
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu stránku na:"
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Láska/romance"
 
-#: ../../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 "Pro více informací o Friendica projektu a o tom, proč je tak důležitý, prosím navštivte http://friendica.com"
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "Práce/zaměstnání:"
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "Správa identit a / nebo stránek"
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "Škola/vzdělávání:"
 
-#: ../../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 "Přepnutí mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí Vaše detaily účtu, nebo kterým jste přidělili oprávnění nastavovat přístupová práva."
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr "[bez předmětu]"
 
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "Vyberte identitu pro správu: "
+#: ../../include/Scrape.php:584
+msgid " on Last.fm"
+msgstr " na Last.fm"
 
-#: ../../mod/home.php:34
-#, php-format
-msgid "Welcome to %s"
-msgstr "Vítá Vás %s"
+#: ../../include/text.php:296
+msgid "newer"
+msgstr "novější"
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "Přátelé uživatele %s"
+#: ../../include/text.php:298
+msgid "older"
+msgstr "starší"
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Žádní přátelé k zobrazení"
+#: ../../include/text.php:303
+msgid "prev"
+msgstr "předchozí"
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Přidat nový kontakt"
+#: ../../include/text.php:305
+msgid "first"
+msgstr "první"
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Zadejte adresu nebo umístění webu"
+#: ../../include/text.php:337
+msgid "last"
+msgstr "poslední"
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Příklad: jan@příklad.cz, http://příklad.cz/jana"
+#: ../../include/text.php:340
+msgid "next"
+msgstr "další"
 
-#: ../../include/contact_widgets.php:23
+#: ../../include/text.php:853
+msgid "No contacts"
+msgstr "Žádné kontakty"
+
+#: ../../include/text.php:862
 #, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "Pozvánka %d k dispozici"
-msgstr[1] "Pozvánky %d k dispozici"
-msgstr[2] "Pozvánky %d k dispozici"
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d kontakt"
+msgstr[1] "%d kontaktů"
+msgstr[2] "%d kontaktů"
 
-#: ../../include/contact_widgets.php:29
-msgid "Find People"
-msgstr "Nalézt lidi"
+#: ../../include/text.php:1003
+msgid "poke"
+msgstr "šťouchnout"
 
-#: ../../include/contact_widgets.php:30
-msgid "Enter name or interest"
-msgstr "Zadejte jméno nebo zájmy"
+#: ../../include/text.php:1003 ../../include/conversation.php:211
+msgid "poked"
+msgstr "šťouchnut"
 
-#: ../../include/contact_widgets.php:31
-msgid "Connect/Follow"
-msgstr "Připojit / Následovat"
+#: ../../include/text.php:1004
+msgid "ping"
+msgstr "cinknout"
 
-#: ../../include/contact_widgets.php:32
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Příklady: Robert Morgenstein, rybaření"
+#: ../../include/text.php:1004
+msgid "pinged"
+msgstr "cinkut"
 
-#: ../../include/contact_widgets.php:36
-msgid "Random Profile"
-msgstr "Náhodný Profil"
+#: ../../include/text.php:1005
+msgid "prod"
+msgstr "pobídnout"
 
-#: ../../include/contact_widgets.php:70
-msgid "Networks"
-msgstr "Sítě"
+#: ../../include/text.php:1005
+msgid "prodded"
+msgstr "pobídnut"
 
-#: ../../include/contact_widgets.php:73
-msgid "All Networks"
-msgstr "Všechny sítě"
+#: ../../include/text.php:1006
+msgid "slap"
+msgstr "dát facku"
 
-#: ../../include/contact_widgets.php:103 ../../include/features.php:59
-msgid "Saved Folders"
-msgstr "Uložené složky"
+#: ../../include/text.php:1006
+msgid "slapped"
+msgstr "být uhozen"
 
-#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
-msgid "Everything"
-msgstr "Všechno"
+#: ../../include/text.php:1007
+msgid "finger"
+msgstr "osahávat"
 
-#: ../../include/contact_widgets.php:135
-msgid "Categories"
-msgstr "Kategorie"
+#: ../../include/text.php:1007
+msgid "fingered"
+msgstr "osaháván"
 
-#: ../../include/plugin.php:454 ../../include/plugin.php:456
-msgid "Click here to upgrade."
-msgstr "Klikněte zde pro aktualizaci."
+#: ../../include/text.php:1008
+msgid "rebuff"
+msgstr "odmítnout"
 
-#: ../../include/plugin.php:462
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Tato akce překročí limit nastavené Vaším předplatným."
+#: ../../include/text.php:1008
+msgid "rebuffed"
+msgstr "odmítnut"
 
-#: ../../include/plugin.php:467
-msgid "This action is not available under your subscription plan."
-msgstr "Tato akce není v rámci Vašeho předplatného dostupná."
+#: ../../include/text.php:1022
+msgid "happy"
+msgstr "šťasný"
 
-#: ../../include/api.php:255 ../../include/api.php:266
-#: ../../include/api.php:356
-msgid "User not found."
-msgstr "Uživatel nenalezen"
+#: ../../include/text.php:1023
+msgid "sad"
+msgstr "smutný"
 
-#: ../../include/api.php:1024
-msgid "There is no status with this id."
-msgstr "Není tu žádný status s tímto id."
+#: ../../include/text.php:1024
+msgid "mellow"
+msgstr "jemný"
 
-#: ../../include/network.php:883
-msgid "view full size"
-msgstr "zobrazit v plné velikosti"
+#: ../../include/text.php:1025
+msgid "tired"
+msgstr "unavený"
 
-#: ../../include/event.php:20 ../../include/bb2diaspora.php:399
-msgid "Starts:"
-msgstr "Začíná:"
+#: ../../include/text.php:1026
+msgid "perky"
+msgstr "emergický"
 
-#: ../../include/event.php:30 ../../include/bb2diaspora.php:407
-msgid "Finishes:"
-msgstr "Končí:"
+#: ../../include/text.php:1027
+msgid "angry"
+msgstr "nazlobený"
 
-#: ../../include/notifier.php:774 ../../include/delivery.php:457
-msgid "(no subject)"
-msgstr "(Bez předmětu)"
+#: ../../include/text.php:1028
+msgid "stupified"
+msgstr "otupen"
 
-#: ../../include/notifier.php:784 ../../include/enotify.php:28
-#: ../../include/delivery.php:468
-msgid "noreply"
-msgstr "neodpovídat"
+#: ../../include/text.php:1029
+msgid "puzzled"
+msgstr "popletený"
 
-#: ../../include/user.php:39
-msgid "An invitation is required."
-msgstr "Pozvánka je vyžadována."
+#: ../../include/text.php:1030
+msgid "interested"
+msgstr "zajímavý"
 
-#: ../../include/user.php:44
-msgid "Invitation could not be verified."
-msgstr "Pozvánka nemohla být ověřena."
+#: ../../include/text.php:1031
+msgid "bitter"
+msgstr "hořký"
 
-#: ../../include/user.php:52
-msgid "Invalid OpenID url"
-msgstr "Neplatný odkaz OpenID"
+#: ../../include/text.php:1032
+msgid "cheerful"
+msgstr "radnostný"
 
-#: ../../include/user.php:66 ../../include/auth.php:128
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "Zaznamenali jsme problém s Vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. "
+#: ../../include/text.php:1033
+msgid "alive"
+msgstr "naživu"
 
-#: ../../include/user.php:66 ../../include/auth.php:128
-msgid "The error message was:"
-msgstr "Chybová zpráva byla:"
+#: ../../include/text.php:1034
+msgid "annoyed"
+msgstr "otráven"
 
-#: ../../include/user.php:73
-msgid "Please enter the required information."
-msgstr "Zadejte prosím požadované informace."
+#: ../../include/text.php:1035
+msgid "anxious"
+msgstr "znepokojený"
 
-#: ../../include/user.php:87
-msgid "Please use a shorter name."
-msgstr "Použijte prosím kratší jméno."
+#: ../../include/text.php:1036
+msgid "cranky"
+msgstr "mrzutý"
 
-#: ../../include/user.php:89
-msgid "Name too short."
-msgstr "Jméno je příliš krátké."
+#: ../../include/text.php:1037
+msgid "disturbed"
+msgstr "vyrušen"
+
+#: ../../include/text.php:1038
+msgid "frustrated"
+msgstr "frustrovaný"
+
+#: ../../include/text.php:1039
+msgid "motivated"
+msgstr "motivovaný"
+
+#: ../../include/text.php:1040
+msgid "relaxed"
+msgstr "uvolněný"
 
-#: ../../include/user.php:104
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení)."
+#: ../../include/text.php:1041
+msgid "surprised"
+msgstr "překvapený"
 
-#: ../../include/user.php:109
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Váš e-mailová doména není na tomto serveru mezi povolenými."
+#: ../../include/text.php:1209
+msgid "Monday"
+msgstr "Pondělí"
 
-#: ../../include/user.php:112
-msgid "Not a valid email address."
-msgstr "Neplatná e-mailová adresa."
+#: ../../include/text.php:1209
+msgid "Tuesday"
+msgstr "Úterý"
 
-#: ../../include/user.php:125
-msgid "Cannot use that email."
-msgstr "Tento e-mail nelze použít."
+#: ../../include/text.php:1209
+msgid "Wednesday"
+msgstr "Středa"
 
-#: ../../include/user.php:131
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", \"-\", a \"_\", a musí začínat písmenem."
+#: ../../include/text.php:1209
+msgid "Thursday"
+msgstr "Čtvrtek"
 
-#: ../../include/user.php:137 ../../include/user.php:235
-msgid "Nickname is already registered. Please choose another."
-msgstr "Přezdívka je již registrována. Prosím vyberte jinou."
+#: ../../include/text.php:1209
+msgid "Friday"
+msgstr "Pátek"
 
-#: ../../include/user.php:147
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Tato přezdívka již zde byla použita a nemůže být využita znovu. Prosím vyberete si jinou."
+#: ../../include/text.php:1209
+msgid "Saturday"
+msgstr "Sobota"
 
-#: ../../include/user.php:163
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo."
+#: ../../include/text.php:1209
+msgid "Sunday"
+msgstr "Neděle"
 
-#: ../../include/user.php:221
-msgid "An error occurred during registration. Please try again."
-msgstr "Došlo k chybě při registraci. Zkuste to prosím znovu."
+#: ../../include/text.php:1213
+msgid "January"
+msgstr "Ledna"
 
-#: ../../include/user.php:256
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu."
+#: ../../include/text.php:1213
+msgid "February"
+msgstr "Února"
 
-#: ../../include/user.php:288 ../../include/user.php:292
-#: ../../include/profile_selectors.php:42
-msgid "Friends"
-msgstr "Přátelé"
+#: ../../include/text.php:1213
+msgid "March"
+msgstr "Března"
 
-#: ../../include/conversation.php:207
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s šťouchnul %2$s"
+#: ../../include/text.php:1213
+msgid "April"
+msgstr "Dubna"
 
-#: ../../include/conversation.php:211 ../../include/text.php:986
-msgid "poked"
-msgstr "šťouchnut"
+#: ../../include/text.php:1213
+msgid "May"
+msgstr "Května"
 
-#: ../../include/conversation.php:291
-msgid "post/item"
-msgstr "příspěvek/položka"
+#: ../../include/text.php:1213
+msgid "June"
+msgstr "Června"
 
-#: ../../include/conversation.php:292
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "uživatel %1$s označil %2$s's %3$s jako oblíbeného"
+#: ../../include/text.php:1213
+msgid "July"
+msgstr "Července"
 
-#: ../../include/conversation.php:767
-msgid "remove"
-msgstr "odstranit"
+#: ../../include/text.php:1213
+msgid "August"
+msgstr "Srpna"
 
-#: ../../include/conversation.php:771
-msgid "Delete Selected Items"
-msgstr "Smazat vybrané položky"
+#: ../../include/text.php:1213
+msgid "September"
+msgstr "Září"
 
-#: ../../include/conversation.php:870
-msgid "Follow Thread"
-msgstr "Následovat vlákno"
+#: ../../include/text.php:1213
+msgid "October"
+msgstr "Října"
 
-#: ../../include/conversation.php:871 ../../include/Contact.php:229
-msgid "View Status"
-msgstr "Zobrazit Status"
+#: ../../include/text.php:1213
+msgid "November"
+msgstr "Listopadu"
 
-#: ../../include/conversation.php:872 ../../include/Contact.php:230
-msgid "View Profile"
-msgstr "Zobrazit Profil"
+#: ../../include/text.php:1213
+msgid "December"
+msgstr "Prosinec"
 
-#: ../../include/conversation.php:873 ../../include/Contact.php:231
-msgid "View Photos"
-msgstr "Zobrazit Fotky"
+#: ../../include/text.php:1432
+msgid "bytes"
+msgstr "bytů"
 
-#: ../../include/conversation.php:874 ../../include/Contact.php:232
-#: ../../include/Contact.php:255
-msgid "Network Posts"
-msgstr "Zobrazit Příspěvky sítě"
+#: ../../include/text.php:1456 ../../include/text.php:1468
+msgid "Click to open/close"
+msgstr "Klikněte pro otevření/zavření"
 
-#: ../../include/conversation.php:875 ../../include/Contact.php:233
-#: ../../include/Contact.php:255
-msgid "Edit Contact"
-msgstr "Editovat Kontakty"
+#: ../../include/text.php:1689 ../../include/user.php:246
+msgid "default"
+msgstr "standardní"
 
-#: ../../include/conversation.php:876 ../../include/Contact.php:235
-#: ../../include/Contact.php:255
-msgid "Send PM"
-msgstr "Poslat soukromou zprávu"
+#: ../../include/text.php:1701
+msgid "Select an alternate language"
+msgstr "Vyběr alternativního jazyka"
 
-#: ../../include/conversation.php:877 ../../include/Contact.php:228
-msgid "Poke"
-msgstr "Šťouchnout"
+#: ../../include/text.php:1957
+msgid "activity"
+msgstr "aktivita"
 
-#: ../../include/conversation.php:939
-#, php-format
-msgid "%s likes this."
-msgstr "%s se to líbí."
+#: ../../include/text.php:1960
+msgid "post"
+msgstr "příspěvek"
 
-#: ../../include/conversation.php:939
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s se to nelíbí."
+#: ../../include/text.php:2128
+msgid "Item filed"
+msgstr "Položka vyplněna"
 
-#: ../../include/conversation.php:944
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d lidem</span> se to líbí"
+#: ../../include/api.php:263 ../../include/api.php:274
+#: ../../include/api.php:375
+msgid "User not found."
+msgstr "Uživatel nenalezen"
 
-#: ../../include/conversation.php:947
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d lidem</span> se to nelíbí"
+#: ../../include/api.php:1123
+msgid "There is no status with this id."
+msgstr "Není tu žádný status s tímto id."
 
-#: ../../include/conversation.php:961
-msgid "and"
-msgstr "a"
+#: ../../include/api.php:1193
+msgid "There is no conversation with this id."
+msgstr "Nemáme žádnou konverzaci s tímto id."
 
-#: ../../include/conversation.php:967
+#: ../../include/dba.php:51 ../../include/dba_pdo.php:72
 #, php-format
-msgid ", and %d other people"
-msgstr ", a %d dalších lidí"
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Nelze nalézt záznam v DNS pro databázový server '%s'"
 
-#: ../../include/conversation.php:969
+#: ../../include/items.php:1981 ../../include/datetime.php:472
 #, php-format
-msgid "%s like this."
-msgstr "%s se to líbí."
+msgid "%s's birthday"
+msgstr "%s má narozeniny"
 
-#: ../../include/conversation.php:969
+#: ../../include/items.php:1982 ../../include/datetime.php:473
 #, php-format
-msgid "%s don't like this."
-msgstr "%s se to nelíbí."
-
-#: ../../include/conversation.php:996 ../../include/conversation.php:1014
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Viditelné pro <strong>všechny</strong>"
-
-#: ../../include/conversation.php:998 ../../include/conversation.php:1016
-msgid "Please enter a video link/URL:"
-msgstr "Prosím zadejte URL adresu videa:"
-
-#: ../../include/conversation.php:999 ../../include/conversation.php:1017
-msgid "Please enter an audio link/URL:"
-msgstr "Prosím zadejte URL adresu zvukového záznamu:"
-
-#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
-msgid "Tag term:"
-msgstr "Štítek:"
+msgid "Happy Birthday %s"
+msgstr "Veselé narozeniny %s"
 
-#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
-msgid "Where are you right now?"
-msgstr "Kde právě jste?"
+#: ../../include/items.php:3710
+msgid "A new person is sharing with you at "
+msgstr "Nový člověk si s vámi sdílí na"
 
-#: ../../include/conversation.php:1003
-msgid "Delete item(s)?"
-msgstr "Smazat položku(y)?"
+#: ../../include/items.php:3710
+msgid "You have a new follower at "
+msgstr "Máte nového následovníka na"
 
-#: ../../include/conversation.php:1045
-msgid "Post to Email"
-msgstr "Poslat příspěvek na e-mail"
+#: ../../include/items.php:4233
+msgid "Do you really want to delete this item?"
+msgstr "Opravdu chcete smazat tuto položku?"
 
-#: ../../include/conversation.php:1101
-msgid "permissions"
-msgstr "oprávnění"
+#: ../../include/items.php:4460
+msgid "Archives"
+msgstr "Archív"
 
-#: ../../include/conversation.php:1125
-msgid "Post to Groups"
-msgstr "Zveřejnit na Groups"
+#: ../../include/delivery.php:456 ../../include/notifier.php:774
+msgid "(no subject)"
+msgstr "(Bez předmětu)"
 
-#: ../../include/conversation.php:1126
-msgid "Post to Contacts"
-msgstr "Zveřejnit na Groups"
+#: ../../include/delivery.php:467 ../../include/notifier.php:784
+#: ../../include/enotify.php:28
+msgid "noreply"
+msgstr "neodpovídat"
 
-#: ../../include/conversation.php:1127
-msgid "Private post"
-msgstr "Soukromý příspěvek"
+#: ../../include/diaspora.php:703
+msgid "Sharing notification from Diaspora network"
+msgstr "Sdílení oznámení ze sítě Diaspora"
 
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "Odhlášen."
+#: ../../include/diaspora.php:2299
+msgid "Attachments:"
+msgstr "Přílohy:"
 
-#: ../../include/uimport.php:94
-msgid "Error decoding account file"
-msgstr "Chyba dekódování uživatelského účtu"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "Chybí URL adresa."
 
-#: ../../include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?"
+#: ../../include/follow.php:59
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi."
 
-#: ../../include/uimport.php:116 ../../include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr "Chyba! Nelze ověřit přezdívku"
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Nenalezen žádný kompatibilní komunikační protokol nebo kanál."
 
-#: ../../include/uimport.php:120 ../../include/uimport.php:131
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "Uživatel '%s' již na tomto serveru existuje!"
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "Uvedená adresa profilu neposkytuje dostatečné informace."
 
-#: ../../include/uimport.php:153
-msgid "User creation error"
-msgstr "Chyba vytváření uživatele"
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "Autor nebo jméno nenalezeno"
 
-#: ../../include/uimport.php:171
-msgid "User profile creation error"
-msgstr "Chyba vytváření uživatelského účtu"
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
+msgstr "Této adrese neodpovídá žádné URL prohlížeče."
 
-#: ../../include/uimport.php:220
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d kontakt nenaimporován"
-msgstr[1] "%d kontaktů nenaimporováno"
-msgstr[2] "%d kontakty nenaimporovány"
+#: ../../include/follow.php:86
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem."
 
-#: ../../include/uimport.php:290
-msgid "Done. You can now login with your username and password"
-msgstr "Hotovo. Nyní  se můžete přihlásit se svými uživatelským účtem a heslem"
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
+msgstr "Použite mailo: před adresou k vynucení emailové kontroly."
 
-#: ../../include/text.php:300
-msgid "newer"
-msgstr "novější"
+#: ../../include/follow.php:93
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "Zadaná adresa profilu patří do sítě, která  byla na tomto serveru zakázána."
 
-#: ../../include/text.php:302
-msgid "older"
-msgstr "starší"
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé / osobní sdělení."
 
-#: ../../include/text.php:307
-msgid "prev"
-msgstr "předchozí"
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "Nepodařilo se získat kontaktní informace."
 
-#: ../../include/text.php:309
-msgid "first"
-msgstr "první"
+#: ../../include/follow.php:259
+msgid "following"
+msgstr "následující"
 
-#: ../../include/text.php:341
-msgid "last"
-msgstr "poslední"
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Vítejte "
 
-#: ../../include/text.php:344
-msgid "next"
-msgstr "další"
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Prosím nahrejte profilovou fotografii"
 
-#: ../../include/text.php:836
-msgid "No contacts"
-msgstr "Žádné kontakty"
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Vítejte zpět "
 
-#: ../../include/text.php:845
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d kontakt"
-msgstr[1] "%d kontaktů"
-msgstr[2] "%d kontaktů"
+#: ../../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 "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním."
 
-#: ../../include/text.php:986
-msgid "poke"
-msgstr "šťouchnout"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Muž"
 
-#: ../../include/text.php:987
-msgid "ping"
-msgstr "cinknout"
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Žena"
 
-#: ../../include/text.php:987
-msgid "pinged"
-msgstr "cinkut"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "V současné době muž"
 
-#: ../../include/text.php:988
-msgid "prod"
-msgstr "pobídnout"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "V současné době žena"
 
-#: ../../include/text.php:988
-msgid "prodded"
-msgstr "pobídnut"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Většinou muž"
 
-#: ../../include/text.php:989
-msgid "slap"
-msgstr "dát facku"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Většinou žena"
 
-#: ../../include/text.php:989
-msgid "slapped"
-msgstr "být uhozen"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgender"
 
-#: ../../include/text.php:990
-msgid "finger"
-msgstr "osahávat"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Intersex"
 
-#: ../../include/text.php:990
-msgid "fingered"
-msgstr "osaháván"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transexuál"
 
-#: ../../include/text.php:991
-msgid "rebuff"
-msgstr "odmítnout"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermafrodit"
 
-#: ../../include/text.php:991
-msgid "rebuffed"
-msgstr "odmítnut"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Neutrál"
 
-#: ../../include/text.php:1005
-msgid "happy"
-msgstr "šťasný"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Nespecifikováno"
 
-#: ../../include/text.php:1006
-msgid "sad"
-msgstr "smutný"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Jiné"
 
-#: ../../include/text.php:1007
-msgid "mellow"
-msgstr "jemný"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Nerozhodnuto"
 
-#: ../../include/text.php:1008
-msgid "tired"
-msgstr "unavený"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Muži"
 
-#: ../../include/text.php:1009
-msgid "perky"
-msgstr "emergický"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Ženy"
 
-#: ../../include/text.php:1010
-msgid "angry"
-msgstr "nazlobený"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Gay"
 
-#: ../../include/text.php:1011
-msgid "stupified"
-msgstr "otupen"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbička"
 
-#: ../../include/text.php:1012
-msgid "puzzled"
-msgstr "popletený"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Bez preferencí"
 
-#: ../../include/text.php:1013
-msgid "interested"
-msgstr "zajímavý"
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bisexuál"
 
-#: ../../include/text.php:1014
-msgid "bitter"
-msgstr "hořký"
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autosexuál"
 
-#: ../../include/text.php:1015
-msgid "cheerful"
-msgstr "radnostný"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Abstinent"
 
-#: ../../include/text.php:1016
-msgid "alive"
-msgstr "naživu"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "panic/panna"
 
-#: ../../include/text.php:1017
-msgid "annoyed"
-msgstr "otráven"
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Deviant"
 
-#: ../../include/text.php:1018
-msgid "anxious"
-msgstr "znepokojený"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetišista"
 
-#: ../../include/text.php:1019
-msgid "cranky"
-msgstr "mrzutý"
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Hodně"
 
-#: ../../include/text.php:1020
-msgid "disturbed"
-msgstr "vyrušen"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Nesexuální"
 
-#: ../../include/text.php:1021
-msgid "frustrated"
-msgstr "frustrovaný"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Svobodný"
 
-#: ../../include/text.php:1022
-msgid "motivated"
-msgstr "motivovaný"
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Osamnělý"
 
-#: ../../include/text.php:1023
-msgid "relaxed"
-msgstr "uvolněný"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Dostupný"
 
-#: ../../include/text.php:1024
-msgid "surprised"
-msgstr "překvapený"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Nedostupný"
 
-#: ../../include/text.php:1192
-msgid "Monday"
-msgstr "Pondělí"
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "Zamilovaný"
 
-#: ../../include/text.php:1192
-msgid "Tuesday"
-msgstr "Úterý"
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "Zabouchnutý"
 
-#: ../../include/text.php:1192
-msgid "Wednesday"
-msgstr "Středa"
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Seznamující se"
 
-#: ../../include/text.php:1192
-msgid "Thursday"
-msgstr "Čtvrtek"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Nevěrný"
 
-#: ../../include/text.php:1192
-msgid "Friday"
-msgstr "Pátek"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Závislý na sexu"
 
-#: ../../include/text.php:1192
-msgid "Saturday"
-msgstr "Sobota"
+#: ../../include/profile_selectors.php:42 ../../include/user.php:288
+#: ../../include/user.php:292
+msgid "Friends"
+msgstr "Přátelé"
 
-#: ../../include/text.php:1192
-msgid "Sunday"
-msgstr "Neděle"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Přátelé / výhody"
 
-#: ../../include/text.php:1196
-msgid "January"
-msgstr "Ledna"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Ležérní"
 
-#: ../../include/text.php:1196
-msgid "February"
-msgstr "Února"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Zadaný"
 
-#: ../../include/text.php:1196
-msgid "March"
-msgstr "Března"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Ženatý/vdaná"
 
-#: ../../include/text.php:1196
-msgid "April"
-msgstr "Dubna"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "Pomyslně ženatý/vdaná"
 
-#: ../../include/text.php:1196
-msgid "May"
-msgstr "Května"
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partneři"
 
-#: ../../include/text.php:1196
-msgid "June"
-msgstr "Června"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "Žijící ve společné domácnosti"
 
-#: ../../include/text.php:1196
-msgid "July"
-msgstr "Července"
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "Zvykové právo"
 
-#: ../../include/text.php:1196
-msgid "August"
-msgstr "Srpna"
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Šťastný"
 
-#: ../../include/text.php:1196
-msgid "September"
-msgstr "Září"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Nehledající"
 
-#: ../../include/text.php:1196
-msgid "October"
-msgstr "Října"
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Swinger"
 
-#: ../../include/text.php:1196
-msgid "November"
-msgstr "Listopadu"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Zrazen"
 
-#: ../../include/text.php:1196
-msgid "December"
-msgstr "Prosinec"
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Odloučený"
 
-#: ../../include/text.php:1415
-msgid "bytes"
-msgstr "bytů"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Nestálý"
 
-#: ../../include/text.php:1439 ../../include/text.php:1451
-msgid "Click to open/close"
-msgstr "Klikněte pro otevření/zavření"
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Rozvedený(á)"
 
-#: ../../include/text.php:1670
-msgid "Select an alternate language"
-msgstr "Vyběr alternativního jazyka"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "Pomyslně rozvedený"
 
-#: ../../include/text.php:1926
-msgid "activity"
-msgstr "aktivita"
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Ovdovělý(á)"
 
-#: ../../include/text.php:1929
-msgid "post"
-msgstr "příspěvek"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Nejistý"
 
-#: ../../include/text.php:2084
-msgid "Item filed"
-msgstr "Položka vyplněna"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "Je to složité"
 
-#: ../../include/enotify.php:16
-msgid "Friendica Notification"
-msgstr "Friendica Notifikace"
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Nezajímá"
 
-#: ../../include/enotify.php:19
-msgid "Thank You,"
-msgstr "Děkujeme, "
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Zeptej se mě"
 
-#: ../../include/enotify.php:21
-#, php-format
-msgid "%s Administrator"
-msgstr "%s Administrátor"
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
+msgstr "Chyba dekódování uživatelského účtu"
 
-#: ../../include/enotify.php:40
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: ../../include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?"
 
-#: ../../include/enotify.php:44
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Upozornění] Obdržena nová zpráva na %s"
+#: ../../include/uimport.php:116 ../../include/uimport.php:127
+msgid "Error! Cannot check nickname"
+msgstr "Chyba! Nelze ověřit přezdívku"
 
-#: ../../include/enotify.php:46
+#: ../../include/uimport.php:120 ../../include/uimport.php:131
 #, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s Vám poslal novou soukromou zprávu na %2$s."
+msgid "User '%s' already exists on this server!"
+msgstr "Uživatel '%s' již na tomto serveru existuje!"
 
-#: ../../include/enotify.php:47
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s Vám poslal %2$s."
+#: ../../include/uimport.php:153
+msgid "User creation error"
+msgstr "Chyba vytváření uživatele"
 
-#: ../../include/enotify.php:47
-msgid "a private message"
-msgstr "soukromá zpráva"
+#: ../../include/uimport.php:171
+msgid "User profile creation error"
+msgstr "Chyba vytváření uživatelského účtu"
 
-#: ../../include/enotify.php:48
+#: ../../include/uimport.php:220
 #, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Prosím navštivte %s pro zobrazení Vašich soukromých zpráv a možnost na ně odpovědět."
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d kontakt nenaimporován"
+msgstr[1] "%d kontaktů nenaimporováno"
+msgstr[2] "%d kontakty nenaimporovány"
 
-#: ../../include/enotify.php:90
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s okomentoval na [url=%2$s]%3$s[/url]"
+#: ../../include/uimport.php:290
+msgid "Done. You can now login with your username and password"
+msgstr "Hotovo. Nyní  se můžete přihlásit se svými uživatelským účtem a heslem"
 
-#: ../../include/enotify.php:97
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s okomentoval na [url=%2$s]%3$s's %4$s[/url]"
+#: ../../include/plugin.php:455 ../../include/plugin.php:457
+msgid "Click here to upgrade."
+msgstr "Klikněte zde pro aktualizaci."
 
-#: ../../include/enotify.php:105
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s okomentoval na [url=%2$s]Váš %3$s[/url]"
+#: ../../include/plugin.php:463
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Tato akce překročí limit nastavené Vaším předplatným."
 
-#: ../../include/enotify.php:115
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica:Upozornění] Komentář ke konverzaci #%1$d od %2$s"
+#: ../../include/plugin.php:468
+msgid "This action is not available under your subscription plan."
+msgstr "Tato akce není v rámci Vašeho předplatného dostupná."
 
-#: ../../include/enotify.php:116
+#: ../../include/conversation.php:207
 #, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "Uživatel %s okomentoval vámi sledovanou položku/konverzaci."
+msgid "%1$s poked %2$s"
+msgstr "%1$s šťouchnul %2$s"
 
-#: ../../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 "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět."
+#: ../../include/conversation.php:291
+msgid "post/item"
+msgstr "příspěvek/položka"
 
-#: ../../include/enotify.php:126
+#: ../../include/conversation.php:292
 #, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď"
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "uživatel %1$s označil %2$s's %3$s jako oblíbeného"
 
-#: ../../include/enotify.php:128
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s přidal příspěvek na Vaši profilovou zeď na %2$s"
+#: ../../include/conversation.php:770
+msgid "remove"
+msgstr "odstranit"
 
-#: ../../include/enotify.php:130
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s napřidáno na [url=%2$s]na Vaši zeď[/url]"
+#: ../../include/conversation.php:774
+msgid "Delete Selected Items"
+msgstr "Smazat vybrané položky"
 
-#: ../../include/enotify.php:141
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Upozornění] %s Vás označil"
+#: ../../include/conversation.php:873
+msgid "Follow Thread"
+msgstr "Následovat vlákno"
 
-#: ../../include/enotify.php:142
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s Vás označil na %2$s"
+#: ../../include/conversation.php:874 ../../include/Contact.php:229
+msgid "View Status"
+msgstr "Zobrazit Status"
 
-#: ../../include/enotify.php:143
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]Vás označil[/url]."
+#: ../../include/conversation.php:875 ../../include/Contact.php:230
+msgid "View Profile"
+msgstr "Zobrazit Profil"
 
-#: ../../include/enotify.php:155
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Upozornění] %1$s Vás šťouchnul"
+#: ../../include/conversation.php:876 ../../include/Contact.php:231
+msgid "View Photos"
+msgstr "Zobrazit Fotky"
 
-#: ../../include/enotify.php:156
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s Vás šťouchnul na %2$s"
+#: ../../include/conversation.php:877 ../../include/Contact.php:232
+#: ../../include/Contact.php:255
+msgid "Network Posts"
+msgstr "Zobrazit Příspěvky sítě"
 
-#: ../../include/enotify.php:157
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "Uživatel %1$s [url=%2$s]Vás šťouchnul[/url]."
+#: ../../include/conversation.php:878 ../../include/Contact.php:233
+#: ../../include/Contact.php:255
+msgid "Edit Contact"
+msgstr "Editovat Kontakty"
 
-#: ../../include/enotify.php:172
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Upozornění] %s označil Váš příspěvek"
+#: ../../include/conversation.php:879 ../../include/Contact.php:235
+#: ../../include/Contact.php:255
+msgid "Send PM"
+msgstr "Poslat soukromou zprávu"
 
-#: ../../include/enotify.php:173
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s označil Váš příspěvek na %2$s"
+#: ../../include/conversation.php:880 ../../include/Contact.php:228
+msgid "Poke"
+msgstr "Šťouchnout"
 
-#: ../../include/enotify.php:174
+#: ../../include/conversation.php:942
 #, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s označil [url=%2$s]Váš příspěvek[/url]"
-
-#: ../../include/enotify.php:185
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Upozornění] Obdrženo přestavení"
+msgid "%s likes this."
+msgstr "%s se to líbí."
 
-#: ../../include/enotify.php:186
+#: ../../include/conversation.php:942
 #, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Obdržel jste žádost o spojení od '%1$s' na %2$s"
+msgid "%s doesn't like this."
+msgstr "%s se to nelíbí."
 
-#: ../../include/enotify.php:187
+#: ../../include/conversation.php:947
 #, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Obdržel jste [url=%1$s]žádost o spojení[/url] od %2$s."
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d lidem</span> se to líbí"
 
-#: ../../include/enotify.php:190 ../../include/enotify.php:208
+#: ../../include/conversation.php:950
 #, php-format
-msgid "You may visit their profile at %s"
-msgstr "Můžete navštívit jejich profil na %s"
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d lidem</span> se to nelíbí"
 
-#: ../../include/enotify.php:192
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Prosím navštivte %s pro schválení či zamítnutí představení."
+#: ../../include/conversation.php:964
+msgid "and"
+msgstr "a"
 
-#: ../../include/enotify.php:199
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica:Upozornění] Obdržen návrh na přátelství"
+#: ../../include/conversation.php:970
+#, php-format
+msgid ", and %d other people"
+msgstr ", a %d dalších lidí"
 
-#: ../../include/enotify.php:200
+#: ../../include/conversation.php:972
 #, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Obdržel jste návrh přátelství od '%1$s' na %2$s"
+msgid "%s like this."
+msgstr "%s se to líbí."
 
-#: ../../include/enotify.php:201
+#: ../../include/conversation.php:972
 #, php-format
-msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "Obdržel jste [url=%1$s]návrh přátelství[/url] s %2$s from %3$s."
+msgid "%s don't like this."
+msgstr "%s se to nelíbí."
 
-#: ../../include/enotify.php:206
-msgid "Name:"
-msgstr "Jméno:"
+#: ../../include/conversation.php:999 ../../include/conversation.php:1017
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Viditelné pro <strong>všechny</strong>"
 
-#: ../../include/enotify.php:207
-msgid "Photo:"
-msgstr "Foto:"
+#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
+msgid "Please enter a video link/URL:"
+msgstr "Prosím zadejte URL adresu videa:"
 
-#: ../../include/enotify.php:210
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Prosím navštivte %s pro schválení či zamítnutí doporučení."
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
+msgid "Please enter an audio link/URL:"
+msgstr "Prosím zadejte URL adresu zvukového záznamu:"
 
-#: ../../include/Scrape.php:583
-msgid " on Last.fm"
-msgstr " na Last.fm"
+#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
+msgid "Tag term:"
+msgstr "Štítek:"
 
-#: ../../include/group.php:25
-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 "Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění <strong>může</ strong> ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěli, vytvořte, prosím,  další skupinu s jiným názvem."
+#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
+msgid "Where are you right now?"
+msgstr "Kde právě jste?"
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr "Defaultní soukromá skrupina pro nové kontakty."
+#: ../../include/conversation.php:1006
+msgid "Delete item(s)?"
+msgstr "Smazat položku(y)?"
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "Všichni"
+#: ../../include/conversation.php:1049
+msgid "Post to Email"
+msgstr "Poslat příspěvek na e-mail"
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "editovat"
+#: ../../include/conversation.php:1054
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "Kontektory deaktivovány, od \"%s\" je aktivován."
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "Editovat skupinu"
+#: ../../include/conversation.php:1109
+msgid "permissions"
+msgstr "oprávnění"
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "Vytvořit novou skupinu"
+#: ../../include/conversation.php:1133
+msgid "Post to Groups"
+msgstr "Zveřejnit na Groups"
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
-msgstr "Kontakty, které nejsou v žádné skupině"
+#: ../../include/conversation.php:1134
+msgid "Post to Contacts"
+msgstr "Zveřejnit na Groups"
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr "Chybí URL adresa."
+#: ../../include/conversation.php:1135
+msgid "Private post"
+msgstr "Soukromý příspěvek"
 
-#: ../../include/follow.php:59
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi."
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Přidat nový kontakt"
 
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Nenalezen žádný kompatibilní komunikační protokol nebo kanál."
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Zadejte adresu nebo umístění webu"
 
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr "Uvedená adresa profilu neposkytuje dostatečné informace."
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Příklad: jan@příklad.cz, http://příklad.cz/jana"
 
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr "Autor nebo jméno nenalezeno"
+#: ../../include/contact_widgets.php:23
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "Pozvánka %d k dispozici"
+msgstr[1] "Pozvánky %d k dispozici"
+msgstr[2] "Pozvánky %d k dispozici"
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "Této adrese neodpovídá žádné URL prohlížeče."
+#: ../../include/contact_widgets.php:29
+msgid "Find People"
+msgstr "Nalézt lidi"
 
-#: ../../include/follow.php:86
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem."
+#: ../../include/contact_widgets.php:30
+msgid "Enter name or interest"
+msgstr "Zadejte jméno nebo zájmy"
 
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr "Použite mailo: před adresou k vynucení emailové kontroly."
+#: ../../include/contact_widgets.php:31
+msgid "Connect/Follow"
+msgstr "Připojit / Následovat"
 
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "Zadaná adresa profilu patří do sítě, která  byla na tomto serveru zakázána."
+#: ../../include/contact_widgets.php:32
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Příklady: Robert Morgenstein, rybaření"
 
-#: ../../include/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé / osobní sdělení."
+#: ../../include/contact_widgets.php:36
+msgid "Random Profile"
+msgstr "Náhodný Profil"
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "Nepodařilo se získat kontaktní informace."
+#: ../../include/contact_widgets.php:70
+msgid "Networks"
+msgstr "Sítě"
 
-#: ../../include/follow.php:259
-msgid "following"
-msgstr "následující"
+#: ../../include/contact_widgets.php:73
+msgid "All Networks"
+msgstr "Všechny sítě"
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr "[bez předmětu]"
+#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
+msgid "Everything"
+msgstr "Všechno"
+
+#: ../../include/contact_widgets.php:135
+msgid "Categories"
+msgstr "Kategorie"
 
 #: ../../include/nav.php:73
 msgid "End this session"
@@ -6573,158 +6786,81 @@ msgstr "Adresář"
 msgid "People directory"
 msgstr "Adresář"
 
-#: ../../include/nav.php:140
+#: ../../include/nav.php:132
+msgid "Information"
+msgstr "Informace"
+
+#: ../../include/nav.php:132
+msgid "Information about this friendica instance"
+msgstr "Informace o této instanci Friendica"
+
+#: ../../include/nav.php:142
 msgid "Conversations from your friends"
 msgstr "Konverzace od Vašich přátel"
 
-#: ../../include/nav.php:141
+#: ../../include/nav.php:143
 msgid "Network Reset"
 msgstr "Síťový Reset"
 
-#: ../../include/nav.php:141
+#: ../../include/nav.php:143
 msgid "Load Network page with no filters"
 msgstr "Načíst stránku Síť bez filtrů"
 
-#: ../../include/nav.php:149
-msgid "Friend Requests"
-msgstr "Žádosti přátel"
-
-#: ../../include/nav.php:151
-msgid "See all notifications"
-msgstr "Zobrazit všechny upozornění"
-
-#: ../../include/nav.php:152
-msgid "Mark all system notifications seen"
-msgstr "Označit všechny upozornění systému jako přečtené"
-
-#: ../../include/nav.php:156
-msgid "Private mail"
-msgstr "Soukromá pošta"
-
-#: ../../include/nav.php:157
-msgid "Inbox"
-msgstr "Doručená pošta"
-
-#: ../../include/nav.php:158
-msgid "Outbox"
-msgstr "Odeslaná pošta"
-
-#: ../../include/nav.php:162
-msgid "Manage"
-msgstr "Spravovat"
-
-#: ../../include/nav.php:162
-msgid "Manage other pages"
-msgstr "Spravovat jiné stránky"
-
-#: ../../include/nav.php:165
-msgid "Delegations"
-msgstr "Delegace"
-
-#: ../../include/nav.php:169
-msgid "Manage/Edit Profiles"
-msgstr "Spravovat/Editovat Profily"
-
-#: ../../include/nav.php:171
-msgid "Manage/edit friends and contacts"
-msgstr "Spravovat/upravit přátelé a kontakty"
-
-#: ../../include/nav.php:178
-msgid "Site setup and configuration"
-msgstr "Nastavení webu a konfigurace"
-
-#: ../../include/nav.php:182
-msgid "Navigation"
-msgstr "Navigace"
-
-#: ../../include/nav.php:182
-msgid "Site map"
-msgstr "Mapa webu"
-
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "j F, Y"
-
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "j F"
-
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "Narozeniny:"
-
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Věk:"
-
-#: ../../include/profile_advanced.php:43
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "pro %1$d %2$s"
-
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Štítky:"
-
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Náboženství:"
+#: ../../include/nav.php:151
+msgid "Friend Requests"
+msgstr "Žádosti přátel"
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Koníčky/zájmy:"
+#: ../../include/nav.php:153
+msgid "See all notifications"
+msgstr "Zobrazit všechny upozornění"
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Kontaktní informace a sociální sítě:"
+#: ../../include/nav.php:154
+msgid "Mark all system notifications seen"
+msgstr "Označit všechny upozornění systému jako přečtené"
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Hudební vkus:"
+#: ../../include/nav.php:158
+msgid "Private mail"
+msgstr "Soukromá pošta"
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Knihy, literatura:"
+#: ../../include/nav.php:159
+msgid "Inbox"
+msgstr "Doručená pošta"
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Televize:"
+#: ../../include/nav.php:160
+msgid "Outbox"
+msgstr "Odeslaná pošta"
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Film/tanec/kultura/zábava:"
+#: ../../include/nav.php:164
+msgid "Manage"
+msgstr "Spravovat"
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Láska/romance"
+#: ../../include/nav.php:164
+msgid "Manage other pages"
+msgstr "Spravovat jiné stránky"
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Práce/zaměstnání:"
+#: ../../include/nav.php:169
+msgid "Account settings"
+msgstr "Nastavení účtu"
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "Škola/vzdělávání:"
+#: ../../include/nav.php:171
+msgid "Manage/Edit Profiles"
+msgstr "Spravovat/Editovat Profily"
 
-#: ../../include/bbcode.php:215 ../../include/bbcode.php:620
-#: ../../include/bbcode.php:621
-msgid "Image/photo"
-msgstr "Obrázek/fotografie"
+#: ../../include/nav.php:173
+msgid "Manage/edit friends and contacts"
+msgstr "Spravovat/upravit přátelé a kontakty"
 
-#: ../../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> napsal následující  <a href=\"%s\" target=\"external-link\">příspěvek</a>"
+#: ../../include/nav.php:180
+msgid "Site setup and configuration"
+msgstr "Nastavení webu a konfigurace"
 
-#: ../../include/bbcode.php:584 ../../include/bbcode.php:604
-msgid "$1 wrote:"
-msgstr "$1 napsal:"
+#: ../../include/nav.php:184
+msgid "Navigation"
+msgstr "Navigace"
 
-#: ../../include/bbcode.php:631 ../../include/bbcode.php:632
-msgid "Encrypted content"
-msgstr "Šifrovaný obsah"
+#: ../../include/nav.php:184
+msgid "Site map"
+msgstr "Mapa webu"
 
 #: ../../include/contact_selectors.php:32
 msgid "Unknown | Not categorised"
@@ -6794,528 +6930,432 @@ msgstr "pump.io"
 msgid "Twitter"
 msgstr "Twitter"
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Různé"
-
-#: ../../include/datetime.php:153 ../../include/datetime.php:285
-msgid "year"
-msgstr "rok"
-
-#: ../../include/datetime.php:158 ../../include/datetime.php:286
-msgid "month"
-msgstr "měsíc"
-
-#: ../../include/datetime.php:163 ../../include/datetime.php:288
-msgid "day"
-msgstr "den"
-
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "nikdy"
-
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "méně než před sekundou"
-
-#: ../../include/datetime.php:285
-msgid "years"
-msgstr "let"
-
-#: ../../include/datetime.php:286
-msgid "months"
-msgstr "měsíců"
-
-#: ../../include/datetime.php:287
-msgid "week"
-msgstr "týdnem"
-
-#: ../../include/datetime.php:287
-msgid "weeks"
-msgstr "týdny"
-
-#: ../../include/datetime.php:288
-msgid "days"
-msgstr "dnů"
-
-#: ../../include/datetime.php:289
-msgid "hour"
-msgstr "hodina"
-
-#: ../../include/datetime.php:289
-msgid "hours"
-msgstr "hodin"
-
-#: ../../include/datetime.php:290
-msgid "minute"
-msgstr "minuta"
+#: ../../include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Diaspora konektor"
 
-#: ../../include/datetime.php:290
-msgid "minutes"
-msgstr "minut"
+#: ../../include/contact_selectors.php:91
+msgid "Statusnet"
+msgstr "Statusnet"
 
-#: ../../include/datetime.php:291
-msgid "second"
-msgstr "sekunda"
+#: ../../include/enotify.php:16
+msgid "Friendica Notification"
+msgstr "Friendica Notifikace"
 
-#: ../../include/datetime.php:291
-msgid "seconds"
-msgstr "sekund"
+#: ../../include/enotify.php:19
+msgid "Thank You,"
+msgstr "Děkujeme, "
 
-#: ../../include/datetime.php:300
+#: ../../include/enotify.php:21
 #, php-format
-msgid "%1$d %2$s ago"
-msgstr "před %1$d %2$s"
+msgid "%s Administrator"
+msgstr "%s Administrátor"
 
-#: ../../include/datetime.php:472 ../../include/items.php:1829
+#: ../../include/enotify.php:40
 #, php-format
-msgid "%s's birthday"
-msgstr "%s má narozeniny"
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: ../../include/datetime.php:473 ../../include/items.php:1830
+#: ../../include/enotify.php:44
 #, php-format
-msgid "Happy Birthday %s"
-msgstr "Veselé narozeniny %s"
-
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "Obecné funkčnosti"
-
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr "Vícenásobné profily"
-
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr "Schopnost vytvořit vícenásobné profily"
-
-#: ../../include/features.php:30
-msgid "Post Composition Features"
-msgstr "Nastavení vytváření příspěvků"
-
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr "Richtext Editor"
-
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
-msgstr "Povolit richtext editor"
-
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr "Náhled příspěvku"
-
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Povolit náhledy příspěvků a komentářů před jejich zveřejněním"
-
-#: ../../include/features.php:37
-msgid "Network Sidebar Widgets"
-msgstr "Síťové postranní widgety"
-
-#: ../../include/features.php:38
-msgid "Search by Date"
-msgstr "Vyhledávat dle Data"
-
-#: ../../include/features.php:38
-msgid "Ability to select posts by date ranges"
-msgstr "Možnost označit příspěvky dle časového intervalu"
-
-#: ../../include/features.php:39
-msgid "Group Filter"
-msgstr "Skupinový Filtr"
-
-#: ../../include/features.php:39
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny"
-
-#: ../../include/features.php:40
-msgid "Network Filter"
-msgstr "Síťový Filtr"
-
-#: ../../include/features.php:40
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě"
-
-#: ../../include/features.php:41
-msgid "Save search terms for re-use"
-msgstr "Uložit kritéria vyhledávání pro znovupoužití"
-
-#: ../../include/features.php:46
-msgid "Network Tabs"
-msgstr "Síťové záložky"
-
-#: ../../include/features.php:47
-msgid "Network Personal Tab"
-msgstr "Osobní síťový záložka "
-
-#: ../../include/features.php:47
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval "
-
-#: ../../include/features.php:48
-msgid "Network New Tab"
-msgstr "Nová záložka síť"
-
-#: ../../include/features.php:48
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)"
-
-#: ../../include/features.php:49
-msgid "Network Shared Links Tab"
-msgstr "záložka Síťové sdílené odkazy "
-
-#: ../../include/features.php:49
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně"
-
-#: ../../include/features.php:54
-msgid "Post/Comment Tools"
-msgstr "Nástroje Příspěvků/Komentářů"
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Upozornění] Obdržena nová zpráva na %s"
 
-#: ../../include/features.php:55
-msgid "Multiple Deletion"
-msgstr "Násobné mazání"
+#: ../../include/enotify.php:46
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s Vám poslal novou soukromou zprávu na %2$s."
 
-#: ../../include/features.php:55
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Označit a smazat více "
+#: ../../include/enotify.php:47
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s Vám poslal %2$s."
 
-#: ../../include/features.php:56
-msgid "Edit Sent Posts"
-msgstr "Editovat Odeslané příspěvky"
+#: ../../include/enotify.php:47
+msgid "a private message"
+msgstr "soukromá zpráva"
 
-#: ../../include/features.php:56
-msgid "Edit and correct posts and comments after sending"
-msgstr "Editovat a opravit příspěvky a komentáře po odeslání"
+#: ../../include/enotify.php:48
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Prosím navštivte %s pro zobrazení Vašich soukromých zpráv a možnost na ně odpovědět."
 
-#: ../../include/features.php:57
-msgid "Tagging"
-msgstr "Štítkování"
+#: ../../include/enotify.php:91
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s okomentoval na [url=%2$s]%3$s[/url]"
 
-#: ../../include/features.php:57
-msgid "Ability to tag existing posts"
-msgstr "Schopnost přidat štítky ke stávajícím příspvěkům"
+#: ../../include/enotify.php:98
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s okomentoval na [url=%2$s]%3$s's %4$s[/url]"
 
-#: ../../include/features.php:58
-msgid "Post Categories"
-msgstr "Kategorie příspěvků"
+#: ../../include/enotify.php:106
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s okomentoval na [url=%2$s]Váš %3$s[/url]"
 
-#: ../../include/features.php:58
-msgid "Add categories to your posts"
-msgstr "Přidat kategorie k Vašim příspěvkům"
+#: ../../include/enotify.php:116
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica:Upozornění] Komentář ke konverzaci #%1$d od %2$s"
 
-#: ../../include/features.php:59
-msgid "Ability to file posts under folders"
-msgstr "Možnost řadit příspěvky do složek"
+#: ../../include/enotify.php:117
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr "Uživatel %s okomentoval vámi sledovanou položku/konverzaci."
 
-#: ../../include/features.php:60
-msgid "Dislike Posts"
-msgstr "Označit příspěvky jako neoblíbené"
+#: ../../include/enotify.php:120 ../../include/enotify.php:135
+#: ../../include/enotify.php:148 ../../include/enotify.php:161
+#: ../../include/enotify.php:179 ../../include/enotify.php:192
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět."
 
-#: ../../include/features.php:60
-msgid "Ability to dislike posts/comments"
-msgstr "Možnost označit příspěvky/komentáře jako neoblíbené"
+#: ../../include/enotify.php:127
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď"
 
-#: ../../include/features.php:61
-msgid "Star Posts"
-msgstr "Příspěvky s hvězdou"
+#: ../../include/enotify.php:129
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s přidal příspěvek na Vaši profilovou zeď na %2$s"
 
-#: ../../include/features.php:61
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Možnost označit příspěvky s indikátorem hvězdy"
+#: ../../include/enotify.php:131
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s napřidáno na [url=%2$s]na Vaši zeď[/url]"
 
-#: ../../include/diaspora.php:704
-msgid "Sharing notification from Diaspora network"
-msgstr "Sdílení oznámení ze sítě Diaspora"
+#: ../../include/enotify.php:142
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Upozornění] %s Vás označil"
 
-#: ../../include/diaspora.php:2269
-msgid "Attachments:"
-msgstr "Přílohy:"
+#: ../../include/enotify.php:143
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s Vás označil na %2$s"
 
-#: ../../include/acl_selectors.php:325
-msgid "Visible to everybody"
-msgstr "Viditelné pro všechny"
+#: ../../include/enotify.php:144
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]Vás označil[/url]."
 
-#: ../../include/items.php:3539
-msgid "A new person is sharing with you at "
-msgstr "Nový člověk si s vámi sdílí na"
+#: ../../include/enotify.php:155
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica:Notify] %s nasdílel nový příspěvek"
 
-#: ../../include/items.php:3539
-msgid "You have a new follower at "
-msgstr "Máte nového následovníka na"
+#: ../../include/enotify.php:156
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s nasdílel nový příspěvek na %2$s"
 
-#: ../../include/items.php:4062
-msgid "Do you really want to delete this item?"
-msgstr "Opravdu chcete smazat tuto položku?"
+#: ../../include/enotify.php:157
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]nasdílel příspěvek[/url]."
 
-#: ../../include/items.php:4285
-msgid "Archives"
-msgstr "Archív"
+#: ../../include/enotify.php:169
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Upozornění] %1$s Vás šťouchnul"
 
-#: ../../include/oembed.php:140
-msgid "Embedded content"
-msgstr "vložený obsah"
+#: ../../include/enotify.php:170
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s Vás šťouchnul na %2$s"
 
-#: ../../include/oembed.php:149
-msgid "Embedding disabled"
-msgstr "Vkládání zakázáno"
+#: ../../include/enotify.php:171
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "Uživatel %1$s [url=%2$s]Vás šťouchnul[/url]."
 
-#: ../../include/security.php:22
-msgid "Welcome "
-msgstr "Vítejte "
+#: ../../include/enotify.php:186
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Upozornění] %s označil Váš příspěvek"
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Prosím nahrejte profilovou fotografii"
+#: ../../include/enotify.php:187
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s označil Váš příspěvek na %2$s"
 
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "Vítejte zpět "
+#: ../../include/enotify.php:188
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s označil [url=%2$s]Váš příspěvek[/url]"
 
-#: ../../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 "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním."
+#: ../../include/enotify.php:199
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Upozornění] Obdrženo přestavení"
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Muž"
+#: ../../include/enotify.php:200
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Obdržel jste žádost o spojení od '%1$s' na %2$s"
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Žena"
+#: ../../include/enotify.php:201
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Obdržel jste [url=%1$s]žádost o spojení[/url] od %2$s."
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "V současné době muž"
+#: ../../include/enotify.php:204 ../../include/enotify.php:222
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Můžete navštívit jejich profil na %s"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "V současné době žena"
+#: ../../include/enotify.php:206
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Prosím navštivte %s pro schválení či zamítnutí představení."
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Většinou muž"
+#: ../../include/enotify.php:213
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Upozornění] Obdržen návrh na přátelství"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Většinou žena"
+#: ../../include/enotify.php:214
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Obdržel jste návrh přátelství od '%1$s' na %2$s"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgender"
+#: ../../include/enotify.php:215
+#, php-format
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "Obdržel jste [url=%1$s]návrh přátelství[/url] s %2$s from %3$s."
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Intersex"
+#: ../../include/enotify.php:220
+msgid "Name:"
+msgstr "Jméno:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transexuál"
+#: ../../include/enotify.php:221
+msgid "Photo:"
+msgstr "Foto:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermafrodit"
+#: ../../include/enotify.php:224
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Prosím navštivte %s pro schválení či zamítnutí doporučení."
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Neutrál"
+#: ../../include/user.php:39
+msgid "An invitation is required."
+msgstr "Pozvánka je vyžadována."
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Nespecifikováno"
+#: ../../include/user.php:44
+msgid "Invitation could not be verified."
+msgstr "Pozvánka nemohla být ověřena."
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Jiné"
+#: ../../include/user.php:52
+msgid "Invalid OpenID url"
+msgstr "Neplatný odkaz OpenID"
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Nerozhodnuto"
+#: ../../include/user.php:73
+msgid "Please enter the required information."
+msgstr "Zadejte prosím požadované informace."
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Muži"
+#: ../../include/user.php:87
+msgid "Please use a shorter name."
+msgstr "Použijte prosím kratší jméno."
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Ženy"
+#: ../../include/user.php:89
+msgid "Name too short."
+msgstr "Jméno je příliš krátké."
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Gay"
+#: ../../include/user.php:104
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení)."
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbička"
+#: ../../include/user.php:109
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Váš e-mailová doména není na tomto serveru mezi povolenými."
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Bez preferencí"
+#: ../../include/user.php:112
+msgid "Not a valid email address."
+msgstr "Neplatná e-mailová adresa."
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bisexuál"
+#: ../../include/user.php:125
+msgid "Cannot use that email."
+msgstr "Tento e-mail nelze použít."
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autosexuál"
+#: ../../include/user.php:131
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
+msgstr "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", \"-\", a \"_\", a musí začínat písmenem."
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Abstinent"
+#: ../../include/user.php:137 ../../include/user.php:235
+msgid "Nickname is already registered. Please choose another."
+msgstr "Přezdívka je již registrována. Prosím vyberte jinou."
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "panic/panna"
+#: ../../include/user.php:147
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Tato přezdívka již zde byla použita a nemůže být využita znovu. Prosím vyberete si jinou."
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Deviant"
+#: ../../include/user.php:163
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo."
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetišista"
+#: ../../include/user.php:221
+msgid "An error occurred during registration. Please try again."
+msgstr "Došlo k chybě při registraci. Zkuste to prosím znovu."
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Hodně"
+#: ../../include/user.php:256
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu."
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Nesexuální"
+#: ../../include/acl_selectors.php:326
+msgid "Visible to everybody"
+msgstr "Viditelné pro všechny"
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Svobodný"
+#: ../../include/bbcode.php:287 ../../include/bbcode.php:920
+#: ../../include/bbcode.php:921
+msgid "Image/photo"
+msgstr "Obrázek/fotografie"
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Osamnělý"
+#: ../../include/bbcode.php:357
+#, php-format
+msgid ""
+"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"_blank\">post</a>"
+msgstr "<span><a href=\"%s\" target=\"_blank\">%s</a> napsal následující <a href=\"%s\" target=\"_blank\">příspěvek</a>"
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Dostupný"
+#: ../../include/bbcode.php:458
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Nedostupný"
+#: ../../include/bbcode.php:884 ../../include/bbcode.php:904
+msgid "$1 wrote:"
+msgstr "$1 napsal:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "Zamilovaný"
+#: ../../include/bbcode.php:935 ../../include/bbcode.php:936
+msgid "Encrypted content"
+msgstr "Šifrovaný obsah"
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "Zabouchnutý"
+#: ../../include/oembed.php:174
+msgid "Embedded content"
+msgstr "vložený obsah"
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Seznamující se"
+#: ../../include/oembed.php:183
+msgid "Embedding disabled"
+msgstr "Vkládání zakázáno"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Nevěrný"
+#: ../../include/group.php:25
+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 "Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění <strong>může</ strong> ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěli, vytvořte, prosím,  další skupinu s jiným názvem."
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Závislý na sexu"
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr "Defaultní soukromá skrupina pro nové kontakty."
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Přátelé / výhody"
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Všichni"
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Ležérní"
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "editovat"
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Zadaný"
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Editovat skupinu"
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Ženatý/vdaná"
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Vytvořit novou skupinu"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "Pomyslně ženatý/vdaná"
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
+msgstr "Kontakty, které nejsou v žádné skupině"
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partneři"
+#: ../../include/Contact.php:115
+msgid "stopped following"
+msgstr "následování zastaveno"
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "Žijící ve společné domácnosti"
+#: ../../include/Contact.php:234
+msgid "Drop Contact"
+msgstr "Odstranit kontakt"
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr "Zvykové právo"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Různé"
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Šťastný"
+#: ../../include/datetime.php:153 ../../include/datetime.php:285
+msgid "year"
+msgstr "rok"
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Nehledající"
+#: ../../include/datetime.php:158 ../../include/datetime.php:286
+msgid "month"
+msgstr "měsíc"
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: ../../include/datetime.php:163 ../../include/datetime.php:288
+msgid "day"
+msgstr "den"
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Zrazen"
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "nikdy"
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Odloučený"
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "méně než před sekundou"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Nestálý"
+#: ../../include/datetime.php:285
+msgid "years"
+msgstr "let"
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Rozvedený(á)"
+#: ../../include/datetime.php:286
+msgid "months"
+msgstr "měsíců"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "Pomyslně rozvedený"
+#: ../../include/datetime.php:287
+msgid "week"
+msgstr "týdnem"
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Ovdovělý(á)"
+#: ../../include/datetime.php:287
+msgid "weeks"
+msgstr "týdny"
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Nejistý"
+#: ../../include/datetime.php:288
+msgid "days"
+msgstr "dnů"
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "Je to složité"
+#: ../../include/datetime.php:289
+msgid "hour"
+msgstr "hodina"
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Nezajímá"
+#: ../../include/datetime.php:289
+msgid "hours"
+msgstr "hodin"
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Zeptej se mě"
+#: ../../include/datetime.php:290
+msgid "minute"
+msgstr "minuta"
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr "následování zastaveno"
+#: ../../include/datetime.php:290
+msgid "minutes"
+msgstr "minut"
 
-#: ../../include/Contact.php:234
-msgid "Drop Contact"
-msgstr "Odstranit kontakt"
+#: ../../include/datetime.php:291
+msgid "second"
+msgstr "sekunda"
+
+#: ../../include/datetime.php:291
+msgid "seconds"
+msgstr "sekund"
 
-#: ../../include/dba.php:44
+#: ../../include/datetime.php:300
 #, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Nelze nalézt záznam v DNS pro databázový server '%s'"
+msgid "%1$d %2$s ago"
+msgstr "před %1$d %2$s"
+
+#: ../../include/network.php:886
+msgid "view full size"
+msgstr "zobrazit v plné velikosti"
diff --git a/view/cs/smarty3/register_adminadd_eml.tpl b/view/cs/smarty3/register_adminadd_eml.tpl
new file mode 100644 (file)
index 0000000..63efc71
--- /dev/null
@@ -0,0 +1,32 @@
+Drahý {{$username}},
+       administrátor webu {{$sitename}} pro Vás vytvořil uživatelský účet.
+
+Vaše přihlašovací údaje jsou tyto:
+
+
+Adresa webu:   {{$siteurl}}
+Uživatelské jméno:  {{$email}}
+Heslo: {{$password}}
+
+Vaše heslo si můžete po přihlášení změnit na stránce  
+.
+
+Prosím věnujte chvíli k revizi ostatních nastavení svého účtu.
+
+Můžete také přidat některé základní informace do Vašeho defaultního profilu 
+ (na stránce "Profily"), čímž umožníte jiným lidem Vás snadněji nalézt.
+
+Doporučujeme nastavit celé jméno, přidat profilové foto
+, přidat nějaká profilová "klíčová slova" (což je velmi užitečné pro hledání nových přátel) a 
+ zemi, ve které žijete. Nemusíte zadávat víc 
+informací.
+
+Plně respektujeme Vaše právo na soukromí a žádná z výše uvedených položek není povinná. 
+Pokud jste nový a neznáte na tomto webu nikoho jiného, zadáním těchto 
+položek můžete získat nové a zajímavé přátele.  
+
+
+Díky a vítejte na {{$sitename}}.
+
+S pozdravem,
+       {{$sitename}} administrátor
\ No newline at end of file
index 235ac1ef104dd3bfc93ecd516deee7d847952592..65e95dd1f3e93d401da5c8c69cb55ce04a11e95d 100644 (file)
@@ -60,340 +60,126 @@ $a->strings["Page not found."] = "Stránka nenalezena";
 $a->strings["Permission denied"] = "Nedostatečné oprávnění";
 $a->strings["Permission denied."] = "Přístup odmítnut.";
 $a->strings["toggle mobile"] = "přepnout mobil";
-$a->strings["Home"] = "Domů";
-$a->strings["Your posts and conversations"] = "Vaše příspěvky a konverzace";
-$a->strings["Profile"] = "Profil";
-$a->strings["Your profile page"] = "Vaše profilová stránka";
-$a->strings["Photos"] = "Fotografie";
-$a->strings["Your photos"] = "Vaše fotky";
-$a->strings["Events"] = "Události";
-$a->strings["Your events"] = "Vaše události";
-$a->strings["Personal notes"] = "Osobní poznámky";
-$a->strings["Your personal photos"] = "Vaše osobní fotky";
-$a->strings["Community"] = "Komunita";
-$a->strings["don't show"] = "nikdy nezobrazit";
-$a->strings["show"] = "zobrazit";
-$a->strings["Theme settings"] = "Nastavení téma";
-$a->strings["Set font-size for posts and comments"] = "Nastav velikost písma pro přízpěvky a komentáře.";
-$a->strings["Set line-height for posts and comments"] = "Nastav výšku řádku  pro přízpěvky a komentáře.";
-$a->strings["Set resolution for middle column"] = "Nastav rozlišení pro prostřední sloupec";
-$a->strings["Contacts"] = "Kontakty";
-$a->strings["Your contacts"] = "Vaše kontakty";
-$a->strings["Community Pages"] = "Komunitní stránky";
-$a->strings["Community Profiles"] = "Komunitní profily";
-$a->strings["Last users"] = "Poslední uživatelé";
-$a->strings["Last likes"] = "Poslední líbí/nelíbí";
-$a->strings["event"] = "událost";
-$a->strings["status"] = "Stav";
-$a->strings["photo"] = "fotografie";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s má rád %2\$s' na %3\$s";
-$a->strings["Last photos"] = "Poslední fotografie";
-$a->strings["Contact Photos"] = "Fotogalerie kontaktu";
-$a->strings["Profile Photos"] = "Profilové fotografie";
-$a->strings["Find Friends"] = "Nalézt Přátele";
-$a->strings["Local Directory"] = "Lokální Adresář";
-$a->strings["Global Directory"] = "Globální adresář";
-$a->strings["Similar Interests"] = "Podobné zájmy";
-$a->strings["Friend Suggestions"] = "Návrhy přátel";
-$a->strings["Invite Friends"] = "Pozvat přátele";
-$a->strings["Settings"] = "Nastavení";
-$a->strings["Earth Layers"] = "Earth Layers";
-$a->strings["Set zoomfactor for Earth Layers"] = "Nastavit faktor přiblížení pro Earth Layers";
-$a->strings["Set longitude (X) for Earth Layers"] = "Nastavit zeměpistnou délku (X) pro Earth Layers";
-$a->strings["Set latitude (Y) for Earth Layers"] = "Nastavit zeměpistnou šířku (X) pro Earth Layers";
-$a->strings["Help or @NewHere ?"] = "Pomoc nebo @ProNováčky ?";
-$a->strings["Connect Services"] = "Propojené služby";
-$a->strings["Show/hide boxes at right-hand column:"] = "Zobrazit/skrýt boxy na pravém sloupci:";
-$a->strings["Set color scheme"] = "Nastavení barevného schematu";
-$a->strings["Set zoomfactor for Earth Layer"] = "Nastavit přiblížení pro Earth Layer";
-$a->strings["Alignment"] = "Zarovnání";
-$a->strings["Left"] = "Vlevo";
-$a->strings["Center"] = "Uprostřed";
-$a->strings["Color scheme"] = "Barevné schéma";
-$a->strings["Posts font size"] = "Velikost písma u příspěvků";
-$a->strings["Textareas font size"] = "Velikost písma textů";
-$a->strings["Set colour scheme"] = "Nastavit barevné schéma";
-$a->strings["default"] = "standardní";
-$a->strings["Background Image"] = "Obrázek pozadí";
-$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = "URL odkaz na obrázek (např. z Vašeho foto alba), který bude použit jako obrázek na pozadí.";
-$a->strings["Background Color"] = "Barva pozadí";
-$a->strings["HEX value for the background color. Don't include the #"] = "HEXadecimální hodnota barvy pozadí. Nevkládejte znak #";
-$a->strings["font size"] = "velikost fondu";
-$a->strings["base font size for your interface"] = "základní velikost fontu";
-$a->strings["Set resize level for images in posts and comments (width and height)"] = "Nastavit velikost fotek v přízpěvcích a komentářích (šířka a výška)";
-$a->strings["Set theme width"] = "Nastavení šířku grafické šablony";
-$a->strings["Delete this item?"] = "Odstranit tuto položku?";
-$a->strings["show fewer"] = "zobrazit méně";
-$a->strings["Update %s failed. See error logs."] = "Aktualizace %s selhala. Zkontrolujte protokol chyb.";
-$a->strings["Update Error at %s"] = "Chyba aktualizace na %s";
-$a->strings["Create a New Account"] = "Vytvořit nový účet";
-$a->strings["Register"] = "Registrovat";
-$a->strings["Logout"] = "Odhlásit se";
-$a->strings["Login"] = "Přihlásit se";
-$a->strings["Nickname or Email address: "] = "Přezdívka nebo e-mailová adresa:";
-$a->strings["Password: "] = "Heslo: ";
-$a->strings["Remember me"] = "Pamatuj si mne";
-$a->strings["Or login using OpenID: "] = "Nebo přihlášení pomocí OpenID: ";
-$a->strings["Forgot your password?"] = "Zapomněli jste své heslo?";
-$a->strings["Password Reset"] = "Obnovení hesla";
-$a->strings["Website Terms of Service"] = "Podmínky použití serveru";
-$a->strings["terms of service"] = "podmínky použití";
-$a->strings["Website Privacy Policy"] = "Pravidla ochrany soukromí serveru";
-$a->strings["privacy policy"] = "Ochrana soukromí";
-$a->strings["Requested account is not available."] = "Požadovaný účet není dostupný.";
-$a->strings["Requested profile is not available."] = "Požadovaný profil není k dispozici.";
-$a->strings["Edit profile"] = "Upravit profil";
-$a->strings["Connect"] = "Spojit";
-$a->strings["Message"] = "Zpráva";
-$a->strings["Profiles"] = "Profily";
-$a->strings["Manage/edit profiles"] = "Spravovat/upravit profily";
-$a->strings["Change profile photo"] = "Změnit profilovou fotografii";
-$a->strings["Create New Profile"] = "Vytvořit nový profil";
-$a->strings["Profile Image"] = "Profilový obrázek";
-$a->strings["visible to everybody"] = "viditelné pro všechny";
-$a->strings["Edit visibility"] = "Upravit viditelnost";
-$a->strings["Location:"] = "Místo:";
-$a->strings["Gender:"] = "Pohlaví:";
-$a->strings["Status:"] = "Status:";
-$a->strings["Homepage:"] = "Domácí stránka:";
-$a->strings["g A l F d"] = "g A l F d";
-$a->strings["F d"] = "d. F";
-$a->strings["[today]"] = "[Dnes]";
-$a->strings["Birthday Reminders"] = "Připomínka narozenin";
-$a->strings["Birthdays this week:"] = "Narozeniny tento týden:";
-$a->strings["[No description]"] = "[Žádný popis]";
-$a->strings["Event Reminders"] = "Připomenutí událostí";
-$a->strings["Events this week:"] = "Události tohoto týdne:";
-$a->strings["Status"] = "Stav";
-$a->strings["Status Messages and Posts"] = "Statusové zprávy a příspěvky ";
-$a->strings["Profile Details"] = "Detaily profilu";
-$a->strings["Photo Albums"] = "Fotoalba";
-$a->strings["Videos"] = "Videa";
-$a->strings["Events and Calendar"] = "Události a kalendář";
-$a->strings["Personal Notes"] = "Osobní poznámky";
-$a->strings["Only You Can See This"] = "Toto můžete vidět jen Vy";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s je právě %2\$s";
-$a->strings["Mood"] = "Nálada";
-$a->strings["Set your current mood and tell your friends"] = "Nastavte svou aktuální náladu a řekněte to Vašim přátelům";
-$a->strings["Public access denied."] = "Veřejný přístup odepřen.";
-$a->strings["Item not found."] = "Položka nenalezena.";
-$a->strings["Access to this profile has been restricted."] = "Přístup na tento profil byl omezen.";
-$a->strings["Item has been removed."] = "Položka byla odstraněna.";
-$a->strings["Access denied."] = "Přístup odmítnut";
-$a->strings["This is Friendica, version"] = "Toto je Friendica, verze";
-$a->strings["running at web location"] = "běžící na webu";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Pro získání dalších informací o projektu Friendica navštivte prosím <a href=\"http://friendica.com\">Friendica.com</a>.";
-$a->strings["Bug reports and issues: please visit"] = "Pro hlášení chyb a námětů na změny navštivte:";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Návrhy, chválu, dary, apod. - prosím piště na \"info\" na Friendica - tečka com";
-$a->strings["Installed plugins/addons/apps:"] = "Instalované pluginy/doplňky/aplikace:";
-$a->strings["No installed plugins/addons/apps"] = "Nejsou žádné nainstalované doplňky/aplikace";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s vítá %2\$s";
-$a->strings["Registration details for %s"] = "Registrační údaje pro %s";
-$a->strings["Registration successful. Please check your email for further instructions."] = "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce.";
-$a->strings["Failed to send email message. Here is the message that failed."] = "Nepodařilo se odeslat zprávu na e-mail. Zde je zpráva, která nebyla odeslána.";
-$a->strings["Your registration can not be processed."] = "Vaši registraci nelze zpracovat.";
-$a->strings["Registration request at %s"] = "Žádost o registraci na %s";
-$a->strings["Your registration is pending approval by the site owner."] = "Vaše registrace čeká na schválení vlastníkem serveru.";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to  zítra znovu.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknutete na tlačítko 'Zaregistrovat'.";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky.";
-$a->strings["Your OpenID (optional): "] = "Vaše OpenID (nepovinné): ";
-$a->strings["Include your profile in member directory?"] = "Toto je Váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu.";
-$a->strings["Yes"] = "Ano";
-$a->strings["No"] = "Ne";
-$a->strings["Membership on this site is by invitation only."] = "Členství na tomto webu je pouze na pozvání.";
-$a->strings["Your invitation ID: "] = "Vaše pozvání ID:";
-$a->strings["Registration"] = "Registrace";
-$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vaše celé jméno (např. Jan Novák):";
-$a->strings["Your Email Address: "] = "Vaše e-mailová adresa:";
-$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>'."] = "Vyberte přezdívku k profilu. Ta musí začít s textovým znakem. Vaše profilová adresa na tomto webu pak bude \"<strong>přezdívka@\$sitename</strong>\".";
-$a->strings["Choose a nickname: "] = "Vyberte přezdívku:";
-$a->strings["Import"] = "Import";
-$a->strings["Import your profile to this friendica instance"] = "Import Vašeho profilu do této friendica instance";
-$a->strings["Profile not found."] = "Profil nenalezen";
+$a->strings["[Embedded content - reload page to view]"] = "[Vložený obsah - obnovení stránky pro zobrazení]";
 $a->strings["Contact not found."] = "Kontakt nenalezen.";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "To se může občas stát pokud kontakt byl zažádán oběma osobami a již byl schválen.";
-$a->strings["Response from remote site was not understood."] = "Odpověď ze vzdáleného serveru nebyla srozumitelná.";
-$a->strings["Unexpected response from remote site: "] = "Neočekávaná odpověď od vzdáleného serveru:";
-$a->strings["Confirmation completed successfully."] = "Potvrzení úspěšně dokončena.";
-$a->strings["Remote site reported: "] = "Vzdálený server oznámil:";
-$a->strings["Temporary failure. Please wait and try again."] = "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu.";
-$a->strings["Introduction failed or was revoked."] = "Žádost o propojení selhala nebo byla zrušena.";
-$a->strings["Unable to set contact photo."] = "Nelze nastavit fotografii kontaktu.";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s je nyní přítel s %2\$s";
-$a->strings["No user record found for '%s' "] = "Pro '%s' nenalezen žádný uživatelský záznam ";
-$a->strings["Our site encryption key is apparently messed up."] = "Náš šifrovací klíč zřejmě přestal správně fungovat.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Byla poskytnuta prázdná URL adresa nebo se nepodařilo URL adresu dešifrovat.";
-$a->strings["Contact record was not found for you on our site."] = "Kontakt záznam nebyl nalezen pro vás na našich stránkách.";
-$a->strings["Site public key not available in contact record for URL %s."] = "V adresáři není k dispozici veřejný klíč pro URL %s.";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Váš systém poskytl duplicitní ID vůči našemu systému. Pokuste se akci zopakovat.";
-$a->strings["Unable to set your contact credentials on our system."] = "Nelze nastavit Vaše přihlašovací údaje v našem systému.";
-$a->strings["Unable to update your contact profile details on our system"] = "Nelze aktualizovat Váš profil v našem systému";
-$a->strings["Connection accepted at %s"] = "Připojení přijato na %s";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s se připojil k %2\$s";
-$a->strings["Authorize application connection"] = "Povolit připojení aplikacím";
-$a->strings["Return to your app and insert this Securty Code:"] = "Vraťte se do vaší aplikace a zadejte tento bezpečnostní kód:";
-$a->strings["Please login to continue."] = "Pro pokračování se prosím přihlaste.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?";
-$a->strings["No valid account found."] = "Nenalezen žádný platný účet.";
-$a->strings["Password reset request issued. Check your email."] = "Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku.";
-$a->strings["Password reset requested at %s"] = "Na %s bylo zažádáno o resetování hesla";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Žádost nemohla být ověřena. (Možná jste ji odeslali již dříve.) Obnovení hesla se nezdařilo.";
-$a->strings["Your password has been reset as requested."] = "Vaše heslo bylo na Vaše přání resetováno.";
-$a->strings["Your new password is"] = "Někdo Vám napsal na Vaši profilovou stránku";
-$a->strings["Save or copy your new password - and then"] = "Uložte si nebo zkopírujte nové heslo - a pak";
-$a->strings["click here to login"] = "klikněte zde pro přihlášení";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení).";
-$a->strings["Your password has been changed at %s"] = "Vaše heslo bylo změněno na %s";
-$a->strings["Forgot your Password?"] = "Zapomněli jste heslo?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Zadejte svůj e-mailovou adresu a odešlete žádost o zaslání Vašeho nového hesla. Poté zkontrolujte svůj e-mail pro další instrukce.";
-$a->strings["Nickname or Email: "] = "Přezdívka nebo e-mail: ";
-$a->strings["Reset"] = "Reset";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena.";
-$a->strings["No recipient selected."] = "Nevybrán příjemce.";
-$a->strings["Unable to check your home location."] = "Nebylo možné zjistit Vaši domácí lokaci.";
-$a->strings["Message could not be sent."] = "Zprávu se nepodařilo odeslat.";
-$a->strings["Message collection failure."] = "Sběr zpráv selhal.";
-$a->strings["Message sent."] = "Zpráva odeslána.";
-$a->strings["No recipient."] = "Žádný příjemce.";
-$a->strings["Please enter a link URL:"] = "Zadejte prosím URL odkaz:";
-$a->strings["Send Private Message"] = "Odeslat soukromou zprávu";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů.";
-$a->strings["To:"] = "Adresát:";
-$a->strings["Subject:"] = "Předmět:";
-$a->strings["Your message:"] = "Vaše zpráva:";
-$a->strings["Upload photo"] = "Nahrát fotografii";
-$a->strings["Insert web link"] = "Vložit webový odkaz";
-$a->strings["Welcome to Friendica"] = "Vítejte na Friendica";
-$a->strings["New Member Checklist"] = "Seznam doporučení pro nového člena";
-$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."] = "Rádi bychom vám nabídli několik tipů a odkazů pro začátek. Klikněte na jakoukoliv položku pro zobrazení relevantní stránky. Odkaz na tuto stránku bude viditelný z Vaší domovské stránky po dobu dvou týdnů od Vaší první registrace.";
-$a->strings["Getting Started"] = "Začínáme";
-$a->strings["Friendica Walk-Through"] = "Prohlídka Friendica ";
-$a->strings["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."] = "Na Vaší stránce <em>Rychlý Start</em> - naleznete stručné představení k Vašemu profilu a záložce Síť, k vytvoření spojení s novými kontakty a nalezení skupin, ke kterým se můžete připojit.";
-$a->strings["Go to Your Settings"] = "Navštivte své nastavení";
-$a->strings["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."] = "Na Vaší stránce <em>Nastavení</em> - si změňte Vaše první heslo.\nVěnujte také svou pozornost k adrese identity. Vypadá jako emailová adresa a bude Vám užitečná pro navazování přátelství na svobodné sociální síti.";
-$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši potenciální přátelé věděli, jak vás přesně najít.";
-$a->strings["Upload Profile Photo"] = "Nahrát profilovou fotografii";
-$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Nahrajte si svou profilovou fotku, pokud jste tak již neučinili. Studie ukázaly, že lidé se skutečnými fotografiemi mají desetkrát častěji přátele než lidé, kteří nemají.";
-$a->strings["Edit Your Profile"] = "Editujte Váš profil";
-$a->strings["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."] = "Upravit <strong>výchozí</strong> profil podle vašich představ. Prověřte nastavení pro skrytí Vašeho  seznamu přátel a skrytí profilu před neznámými návštěvníky.";
-$a->strings["Profile Keywords"] = "Profilová klíčová slova";
-$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."] = "Nastavte si nějaká veřejné klíčová slova pro výchozí profil, která popisují Vaše zájmy. Friendika Vám může nalézt další lidi s podobnými zájmy a navrhnout přátelství.";
-$a->strings["Connecting"] = "Probíhá pokus o připojení";
-$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."] = "Jestliže máte účet na Facebooku, povolte konektor na Facebook a bude možné (na přání) importovat všechny Vaš přátele na Facebooku a všechny Vaše konverzace.";
-$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Pokud</em> je toto Váš soukromý server, instalací Facebok doplňku můžete zjednodušit Váš přechod na svobodný sociální web.";
-$a->strings["Importing Emails"] = "Importování emaiů";
-$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Pokud chcete importovat své přátele nebo mailové skupiny a komunikovat s nimi, zadejte na Vaší stránce Nastavení kontektoru své přístupové údaje do svého emailového účtu";
-$a->strings["Go to Your Contacts Page"] = "Navštivte Vaši stránku s kontakty";
-$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Vaše stránka Kontakty je Vaše brána k nastavování přátelství a propojení s přáteli z dalších sítí. Typicky zadáte jejich emailovou adresu nebo URL adresu jejich serveru prostřednictvím dialogu <em>Přidat nový kontakt</em>.";
-$a->strings["Go to Your Site's Directory"] = "Navštivte lokální adresář Friendica";
-$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."] = "Stránka Adresář Vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Prostřednictvím odkazů <em>Připojení</em> nebo <em>Následovat</em> si prohlédněte jejich profilovou stránku. Uveďte svou vlastní adresu identity, je-li požadována.";
-$a->strings["Finding New People"] = "Nalezení nových lidí";
-$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."] = "Na bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin.";
-$a->strings["Groups"] = "Skupiny";
-$a->strings["Group Your Contacts"] = "Seskupte si své 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."] = "Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu Vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť.";
-$a->strings["Why Aren't My Posts Public?"] = "Proč nejsou mé příspěvky veřejné?";
-$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektuje Vaše soukromí. Defaultně  jsou Vaše příspěvky viditelné pouze lidem, které označíte jako Vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu";
-$a->strings["Getting Help"] = "Získání nápovědy";
-$a->strings["Go to the Help Section"] = "Navštivte sekci nápovědy";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Na stránkách <strong>Nápověda</strong> naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací.";
-$a->strings["Do you really want to delete this suggestion?"] = "Opravdu chcete smazat tento návrh?";
-$a->strings["Cancel"] = "Zrušit";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin.";
-$a->strings["Ignore/Hide"] = "Ignorovat / skrýt";
-$a->strings["Search Results For:"] = "Výsledky hledání pro:";
-$a->strings["Remove term"] = "Odstranit termín";
-$a->strings["Saved Searches"] = "Uložená hledání";
-$a->strings["add"] = "přidat";
-$a->strings["Commented Order"] = "Dle komentářů";
-$a->strings["Sort by Comment Date"] = "Řadit podle data komentáře";
-$a->strings["Posted Order"] = "Dle data";
-$a->strings["Sort by Post Date"] = "Řadit podle data příspěvku";
-$a->strings["Personal"] = "Osobní";
-$a->strings["Posts that mention or involve you"] = "Příspěvky, které Vás zmiňují nebo zahrnují";
-$a->strings["New"] = "Nové";
-$a->strings["Activity Stream - by date"] = "Proud aktivit - dle data";
-$a->strings["Shared Links"] = "Sdílené odkazy";
-$a->strings["Interesting Links"] = "Zajímavé odkazy";
-$a->strings["Starred"] = "S hvězdičkou";
-$a->strings["Favourite Posts"] = "Oblíbené přízpěvky";
-$a->strings["Warning: This group contains %s member from an insecure network."] = array(
-       0 => "Upozornění: Tato skupina obsahuje %s člena z nezabezpečené sítě.",
-       1 => "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě.",
-       2 => "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě.",
+$a->strings["Friend suggestion sent."] = "Návrhy přátelství odeslány ";
+$a->strings["Suggest Friends"] = "Navrhněte přátelé";
+$a->strings["Suggest a friend for %s"] = "Navrhněte přátelé pro uživatele %s";
+$a->strings["This introduction has already been accepted."] = "Toto pozvání již bylo přijato.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "Adresa profilu není platná nebo neobsahuje profilové informace";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka";
+$a->strings["Warning: profile location has no profile photo."] = "Varování: umístění profilu nemá žádnou profilovou fotografii.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "%d požadovaný parametr nebyl nalezen na daném místě",
+       1 => "%d požadované parametry nebyly nalezeny na daném místě",
+       2 => "%d požadované parametry nebyly nalezeny na daném místě",
 );
-$a->strings["Private messages to this group are at risk of public disclosure."] = "Soukromé zprávy této skupině jsou vystaveny riziku prozrazení.";
-$a->strings["No such group"] = "Žádná taková skupina";
-$a->strings["Group is empty"] = "Skupina je prázdná";
-$a->strings["Group: "] = "Skupina: ";
-$a->strings["Contact: "] = "Kontakt: ";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení.";
-$a->strings["Invalid contact."] = "Neplatný kontakt.";
-$a->strings["Friendica Communications Server - Setup"] = "Friendica Komunikační server - Nastavení";
-$a->strings["Could not connect to database."] = "Nelze se připojit k databázi.";
-$a->strings["Could not create table."] = "Nelze vytvořit tabulku.";
-$a->strings["Your Friendica site database has been installed."] = "Vaše databáze Friendica  byla nainstalována.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do Vašeho adresáře - i když Vy můžete.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Přečtěte si prosím informace v souboru \"INSTALL.txt\".";
-$a->strings["System check"] = "Testování systému";
-$a->strings["Next"] = "Dále";
-$a->strings["Check again"] = "Otestovat znovu";
-$a->strings["Database connection"] = "Databázové spojení";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru, ";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním.";
-$a->strings["Database Server Name"] = "Jméno databázového serveru";
-$a->strings["Database Login Name"] = "Přihlašovací jméno k databázi";
-$a->strings["Database Login Password"] = "Heslo k databázovému účtu ";
-$a->strings["Database Name"] = "Jméno databáze";
-$a->strings["Site administrator email address"] = "Emailová adresa administrátora webu";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Vaše emailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní.";
-$a->strings["Please select a default timezone for your website"] = "Prosím, vyberte výchozí časové pásmo pro váš server";
-$a->strings["Site settings"] = "Nastavení webu";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru.";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Pokud na serveru nemáte nainstalovánu verzi PHP spustitelnou z příkazového řádku, nebudete moci spouštět na pozadí synchronizaci zpráv prostřednictvím cronu. Přečtěte si <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>\n\n    podrobnosti\n    návrhy\n    historie\n\n\t\nThe following url is either missing from the translation or has been translated: 'http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
-$a->strings["PHP executable path"] = "Cesta k \"PHP executable\"";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Zadejte plnou cestu k spustitelnému souboru php. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci.";
-$a->strings["Command line PHP"] = "Příkazový řádek PHP";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP executable není php cli binary (může být verze cgi-fgci)";
-$a->strings["Found PHP version: "] = "Nalezena PHP verze:";
-$a->strings["PHP cli binary"] = "PHP cli binary";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu.";
-$a->strings["This is required for message delivery to work."] = "Toto je nutné pro fungování doručování zpráv.";
-$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Pokud systém běží na Windows, seznamte se s \"http://www.php.net/manual/en/openssl.installation.php\".";
-$a->strings["Generate encryption keys"] = "Generovat kriptovací klíče";
-$a->strings["libCurl PHP module"] = "libCurl PHP modul";
-$a->strings["GD graphics PHP module"] = "GD graphics PHP modul";
-$a->strings["OpenSSL PHP module"] = "OpenSSL PHP modul";
-$a->strings["mysqli PHP module"] = "mysqli PHP modul";
-$a->strings["mb_string PHP module"] = "mb_string PHP modul";
-$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite modul";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Chyba: požadovaný libcurl PHP modul není nainstalován.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Chyba: požadovaný GD graphics PHP modul není nainstalován.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Chyba: požadovaný openssl PHP modul není nainstalován.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Chyba: požadovaný mysqli PHP modul není nainstalován.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Chyba: PHP modul mb_string  je vyžadován, ale není nainstalován.";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři vašeho webového serveru ale nyní mu to není umožněno.";
-$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když Vy můžete.";
-$a->strings["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."] = "Na konci této procedury obd nás obdržíte text k uložení v souboru pojmenovaném .htconfig.php ve Vašem Friendica kořenovém adresáři.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor \"INSTALL.txt\" pro další instrukce.";
-$a->strings[".htconfig.php is writable"] = ".htconfig.php je editovatelné";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování.";
-$a->strings["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."] = "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře";
-$a->strings["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."] = "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 je nastaven pro zápis";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Url rewrite v .htconfig nefunguje. Prověřte prosím Vaše nastavení serveru.";
-$a->strings["Url rewrite is working"] = "Url rewrite je funkční.";
-$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Databázový konfigurační soubor \".htconfig.php\" nemohl být uložen. Prosím, použijte přiložený text k vytvoření konfiguračního souboru ve vašem kořenovém adresáři webového serveru.";
-$a->strings["Errors encountered creating database tables."] = "Při vytváření databázových tabulek došlo k chybám.";
-$a->strings["<h1>What next</h1>"] = "<h1>Co dál<h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři Vašeho webového serveru ale nyní mu to není umožněno.";
+$a->strings["Introduction complete."] = "Představení dokončeno.";
+$a->strings["Unrecoverable protocol error."] = "Neopravitelná chyba protokolu";
+$a->strings["Profile unavailable."] = "Profil není k dispozici.";
+$a->strings["%s has received too many connection requests today."] = "%s dnes obdržel příliš mnoho požadavků na připojení.";
+$a->strings["Spam protection measures have been invoked."] = "Ochrana proti spamu byla aktivována";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Přátelům se doporučuje to zkusit znovu za 24 hodin.";
+$a->strings["Invalid locator"] = "Neplatný odkaz";
+$a->strings["Invalid email address."] = "Neplatná emailová adresa";
+$a->strings["This account has not been configured for email. Request failed."] = "Tento účet nebyl nastaven pro email. Požadavek nesplněn.";
+$a->strings["Unable to resolve your name at the provided location."] = "Nepodařilo se zjistit Vaše jméno na zadané adrese.";
+$a->strings["You have already introduced yourself here."] = "Již jste se zde zavedli.";
+$a->strings["Apparently you are already friends with %s."] = "Zřejmě jste již přátelé se %s.";
+$a->strings["Invalid profile URL."] = "Neplatné URL profilu.";
+$a->strings["Disallowed profile URL."] = "Nepovolené URL profilu.";
+$a->strings["Failed to update contact record."] = "Nepodařilo se aktualizovat kontakt.";
+$a->strings["Your introduction has been sent."] = "Vaše žádost o propojení byla odeslána.";
+$a->strings["Please login to confirm introduction."] = "Prosím přihlašte se k potvrzení žádosti o propojení.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Jste přihlášeni pod nesprávnou identitou  Prosím, přihlaste se do <strong>tohoto</strong> profilu.";
+$a->strings["Hide this contact"] = "Skrýt tento kontakt";
+$a->strings["Welcome home %s."] = "Vítejte doma %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Prosím potvrďte Vaši žádost o propojení %s.";
+$a->strings["Confirm"] = "Potvrdit";
+$a->strings["[Name Withheld]"] = "[Jméno odepřeno]";
+$a->strings["Public access denied."] = "Veřejný přístup odepřen.";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Prosím zadejte Vaši adresu identity jedné z následujících podporovaných komunikačních sítí:";
+$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Připojte se jako emailový následovník</strike> (Již brzy)";
+$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>."] = "Pokud ještě nejste členem svobodné sociální sítě, <a href=\"http://dir.friendica.com/siteinfo\">následujte tento odkaz k nalezení veřejného Friendica serveru a přidejte se k nám ještě dnes</a>.";
+$a->strings["Friend/Connection Request"] = "Požadavek o přátelství / kontaktování";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Odpovězte, prosím, následující:";
+$a->strings["Does %s know you?"] = "Zná Vás uživatel %s ?";
+$a->strings["Yes"] = "Ano";
+$a->strings["No"] = "Ne";
+$a->strings["Add a personal note:"] = "Přidat osobní poznámku:";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet / Federativní Sociální Web";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - prosím nepoužívejte tento formulář.  Místo toho zadejte %s do Vašeho Diaspora vyhledávacího pole.";
+$a->strings["Your Identity Address:"] = "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\".";
+$a->strings["Submit Request"] = "Odeslat žádost";
+$a->strings["Cancel"] = "Zrušit";
+$a->strings["View Video"] = "Zobrazit video";
+$a->strings["Requested profile is not available."] = "Požadovaný profil není k dispozici.";
+$a->strings["Access to this profile has been restricted."] = "Přístup na tento profil byl omezen.";
+$a->strings["Tips for New Members"] = "Tipy pro nové členy";
+$a->strings["Invalid request identifier."] = "Neplatný identifikátor požadavku.";
+$a->strings["Discard"] = "Odstranit";
+$a->strings["Ignore"] = "Ignorovat";
+$a->strings["System"] = "Systém";
+$a->strings["Network"] = "Síť";
+$a->strings["Personal"] = "Osobní";
+$a->strings["Home"] = "Domů";
+$a->strings["Introductions"] = "Představení";
+$a->strings["Messages"] = "Zprávy";
+$a->strings["Show Ignored Requests"] = "Zobrazit ignorované žádosti";
+$a->strings["Hide Ignored Requests"] = "Skrýt ignorované žádosti";
+$a->strings["Notification type: "] = "Typ oznámení: ";
+$a->strings["Friend Suggestion"] = "Návrh přátelství";
+$a->strings["suggested by %s"] = "navrhl %s";
+$a->strings["Hide this contact from others"] = "Skrýt tento kontakt před ostatními";
+$a->strings["Post a new friend activity"] = "Zveřejnit aktivitu nového přítele.";
+$a->strings["if applicable"] = "je-li použitelné";
+$a->strings["Approve"] = "Schválit";
+$a->strings["Claims to be known to you: "] = "Vaši údajní známí: ";
+$a->strings["yes"] = "ano";
+$a->strings["no"] = "ne";
+$a->strings["Approve as: "] = "Schválit jako: ";
+$a->strings["Friend"] = "Přítel";
+$a->strings["Sharer"] = "Sdílené";
+$a->strings["Fan/Admirer"] = "Fanoušek / obdivovatel";
+$a->strings["Friend/Connect Request"] = "Přítel / žádost o připojení";
+$a->strings["New Follower"] = "Nový následovník";
+$a->strings["No introductions."] = "Žádné představení.";
+$a->strings["Notifications"] = "Upozornění";
+$a->strings["%s liked %s's post"] = "Uživateli %s se líbí příspěvek uživatele %s";
+$a->strings["%s disliked %s's post"] = "Uživateli %s se nelíbí příspěvek uživatele %s";
+$a->strings["%s is now friends with %s"] = "%s se nyní přátelí s %s";
+$a->strings["%s created a new post"] = "%s vytvořil nový příspěvek";
+$a->strings["%s commented on %s's post"] = "%s okomentoval příspěvek uživatele %s'";
+$a->strings["No more network notifications."] = "Žádné další síťové upozornění.";
+$a->strings["Network Notifications"] = "Upozornění Sítě";
+$a->strings["No more system notifications."] = "Žádné další systémová upozornění.";
+$a->strings["System Notifications"] = "Systémová upozornění";
+$a->strings["No more personal notifications."] = "Žádné další osobní upozornění.";
+$a->strings["Personal Notifications"] = "Osobní upozornění";
+$a->strings["No more home notifications."] = "Žádné další domácí upozornění.";
+$a->strings["Home Notifications"] = "Domácí upozornění";
+$a->strings["photo"] = "fotografie";
+$a->strings["status"] = "Stav";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s má rád %2\$s' na %3\$s";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s nemá rád %2\$s na %3\$s";
+$a->strings["OpenID protocol error. No ID returned."] = "Chyba OpenID protokolu. Navrátilo se žádné ID.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nenalezen účet a OpenID registrace na tomto serveru není dovolena.";
+$a->strings["Login failed."] = "Přihlášení se nezdařilo.";
+$a->strings["Source (bbcode) text:"] = "Zdrojový text (bbcode):";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Zdrojový (Diaspora) text k převedení do BB kódování:";
+$a->strings["Source input: "] = "Zdrojový vstup: ";
+$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): "] = "Vstupní data (ve formátu Diaspora): ";
+$a->strings["diaspora2bb: "] = "diaspora2bb: ";
 $a->strings["Theme settings updated."] = "Nastavení téma zobrazení bylo aktualizováno.";
 $a->strings["Site"] = "Web";
 $a->strings["Users"] = "Uživatelé";
@@ -404,6 +190,7 @@ $a->strings["Logs"] = "Logy";
 $a->strings["Admin"] = "Administrace";
 $a->strings["Plugin Features"] = "Funkčnosti rozšíření";
 $a->strings["User registrations waiting for confirmation"] = "Registrace uživatele čeká na potvrzení";
+$a->strings["Item not found."] = "Položka nenalezena.";
 $a->strings["Normal Account"] = "Normální účet";
 $a->strings["Soapbox Account"] = "Soapbox účet";
 $a->strings["Community/Celebrity Account"] = "Komunitní účet / Účet celebrity";
@@ -421,6 +208,7 @@ $a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] =
 $a->strings["Site settings updated."] = "Nastavení webu aktualizováno.";
 $a->strings["No special theme for mobile devices"] = "žádné speciální téma pro mobilní zařízení";
 $a->strings["Never"] = "Nikdy";
+$a->strings["At post arrival"] = "Při obdržení příspěvku";
 $a->strings["Frequently"] = "Často";
 $a->strings["Hourly"] = "každou hodinu";
 $a->strings["Twice daily"] = "Dvakrát denně";
@@ -433,6 +221,7 @@ $a->strings["No SSL policy, links will track page SSL state"] = "Žádná SSL po
 $a->strings["Force all links to use SSL"] = "Vyžadovat u všech odkazů použití SSL";
 $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certifikát podepsaný sám sebou, použít SSL pouze pro lokální odkazy (nedoporučeno)";
 $a->strings["Save Settings"] = "Uložit Nastavení";
+$a->strings["Registration"] = "Registrace";
 $a->strings["File upload"] = "Nahrání souborů";
 $a->strings["Policies"] = "Politiky";
 $a->strings["Advanced"] = "Pokročilé";
@@ -501,7 +290,7 @@ $a->strings["Use PHP UTF8 regular expressions"] = "Použít PHP UTF8 regulární
 $a->strings["Show Community Page"] = "Zobrazit stránku komunity";
 $a->strings["Display a Community page showing all recent public postings on this site."] = "Zobrazit Komunitní stránku zobrazující všechny veřejné příspěvky napsané na této stránce.";
 $a->strings["Enable OStatus support"] = "Zapnout podporu 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."] = "Poskytnout zabudouvanou kompatibilitu s OStatus (identi.ca, status.net, etc.). Veškerá komunikace s OStatus je veřejná, proto bude občas zobrazeno upozornění.";
+$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Poskytnout zabudouvanou kompatibilitu s OStatus (StatusNet, GNU Social apod.). Veškerá komunikace s OStatus je veřejná, proto bude občas zobrazeno upozornění.";
 $a->strings["OStatus conversation completion interval"] = "Interval dokončení konverzace OStatus";
 $a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Jak často by mělo probíhat ověřování pro nové přísvěvky v konverzacích OStatus? Toto může být velmi výkonově náročný úkol.";
 $a->strings["Enable Diaspora support"] = "Povolit podporu Diaspora";
@@ -541,6 +330,7 @@ $a->strings["Failed Updates"] = "Neúspěšné aktualizace";
 $a->strings["This does not include updates prior to 1139, which did not return a status."] = "To nezahrnuje aktualizace do verze 1139, které nevracejí žádný status.";
 $a->strings["Mark success (if update was manually applied)"] = "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)";
 $a->strings["Attempt to execute this update step automatically"] = "Pokusit se provést tuto aktualizaci automaticky.";
+$a->strings["Registration details for %s"] = "Registrační údaje pro %s";
 $a->strings["Registration successful. Email send to user"] = "Registrace úspěšná. Email zaslán uživateli";
 $a->strings["%s user blocked/unblocked"] = array(
        0 => "%s uživatel blokován/odblokován",
@@ -563,7 +353,6 @@ $a->strings["Request date"] = "Datum žádosti";
 $a->strings["Name"] = "Jméno";
 $a->strings["Email"] = "E-mail";
 $a->strings["No registrations."] = "Žádné registrace.";
-$a->strings["Approve"] = "Schválit";
 $a->strings["Deny"] = "Odmítnout";
 $a->strings["Block"] = "Blokovat";
 $a->strings["Unblock"] = "Odblokovat";
@@ -586,6 +375,7 @@ $a->strings["Plugin %s enabled."] = "Plugin %s povolen.";
 $a->strings["Disable"] = "Zakázat";
 $a->strings["Enable"] = "Povolit";
 $a->strings["Toggle"] = "Přepnout";
+$a->strings["Settings"] = "Nastavení";
 $a->strings["Author: "] = "Autor: ";
 $a->strings["Maintainer: "] = "Správce: ";
 $a->strings["No themes found."] = "Nenalezeny žádná témata.";
@@ -604,11 +394,37 @@ $a->strings["FTP Host"] = "Hostitel FTP";
 $a->strings["FTP Path"] = "Cesta FTP";
 $a->strings["FTP User"] = "FTP uživatel";
 $a->strings["FTP Password"] = "FTP heslo";
-$a->strings["Search"] = "Vyhledávání";
-$a->strings["No results."] = "Žádné výsledky.";
-$a->strings["Tips for New Members"] = "Tipy pro nové členy";
-$a->strings["link"] = "odkaz";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s označen uživatelem %2\$s %3\$s s %4\$s";
+$a->strings["New Message"] = "Nová zpráva";
+$a->strings["No recipient selected."] = "Nevybrán příjemce.";
+$a->strings["Unable to locate contact information."] = "Nepodařilo se najít kontaktní informace.";
+$a->strings["Message could not be sent."] = "Zprávu se nepodařilo odeslat.";
+$a->strings["Message collection failure."] = "Sběr zpráv selhal.";
+$a->strings["Message sent."] = "Zpráva odeslána.";
+$a->strings["Do you really want to delete this message?"] = "Opravdu chcete smazat tuto zprávu?";
+$a->strings["Message deleted."] = "Zpráva odstraněna.";
+$a->strings["Conversation removed."] = "Konverzace odstraněna.";
+$a->strings["Please enter a link URL:"] = "Zadejte prosím URL odkaz:";
+$a->strings["Send Private Message"] = "Odeslat soukromou zprávu";
+$a->strings["To:"] = "Adresát:";
+$a->strings["Subject:"] = "Předmět:";
+$a->strings["Your message:"] = "Vaše zpráva:";
+$a->strings["Upload photo"] = "Nahrát fotografii";
+$a->strings["Insert web link"] = "Vložit webový odkaz";
+$a->strings["No messages."] = "Žádné zprávy.";
+$a->strings["Unknown sender - %s"] = "Neznámý odesilatel - %s";
+$a->strings["You and %s"] = "Vy a %s";
+$a->strings["%s and You"] = "%s a Vy";
+$a->strings["Delete conversation"] = "Odstranit konverzaci";
+$a->strings["D, d M Y - g:i A"] = "D M R - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d zpráva",
+       1 => "%d zprávy",
+       2 => "%d zpráv",
+);
+$a->strings["Message not available."] = "Zpráva není k dispozici.";
+$a->strings["Delete message"] = "Smazat zprávu";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Není k dispozici zabezpečená komunikace. <strong>Možná</strong> budete schopni reagovat z odesilatelovy profilové stránky.";
+$a->strings["Send Reply"] = "Poslat odpověď";
 $a->strings["Item not found"] = "Položka nenalezena";
 $a->strings["Edit post"] = "Upravit příspěvek";
 $a->strings["upload photo"] = "nahrát fotky";
@@ -629,96 +445,169 @@ $a->strings["Public post"] = "Veřejný příspěvek";
 $a->strings["Set title"] = "Nastavit titulek";
 $a->strings["Categories (comma-separated list)"] = "Kategorie (čárkou oddělený seznam)";
 $a->strings["Example: bob@example.com, mary@example.com"] = "Příklad: bob@example.com, mary@example.com";
+$a->strings["Profile not found."] = "Profil nenalezen";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "To se může občas stát pokud kontakt byl zažádán oběma osobami a již byl schválen.";
+$a->strings["Response from remote site was not understood."] = "Odpověď ze vzdáleného serveru nebyla srozumitelná.";
+$a->strings["Unexpected response from remote site: "] = "Neočekávaná odpověď od vzdáleného serveru:";
+$a->strings["Confirmation completed successfully."] = "Potvrzení úspěšně dokončena.";
+$a->strings["Remote site reported: "] = "Vzdálený server oznámil:";
+$a->strings["Temporary failure. Please wait and try again."] = "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu.";
+$a->strings["Introduction failed or was revoked."] = "Žádost o propojení selhala nebo byla zrušena.";
+$a->strings["Unable to set contact photo."] = "Nelze nastavit fotografii kontaktu.";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s je nyní přítel s %2\$s";
+$a->strings["No user record found for '%s' "] = "Pro '%s' nenalezen žádný uživatelský záznam ";
+$a->strings["Our site encryption key is apparently messed up."] = "Náš šifrovací klíč zřejmě přestal správně fungovat.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Byla poskytnuta prázdná URL adresa nebo se nepodařilo URL adresu dešifrovat.";
+$a->strings["Contact record was not found for you on our site."] = "Kontakt záznam nebyl nalezen pro vás na našich stránkách.";
+$a->strings["Site public key not available in contact record for URL %s."] = "V adresáři není k dispozici veřejný klíč pro URL %s.";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Váš systém poskytl duplicitní ID vůči našemu systému. Pokuste se akci zopakovat.";
+$a->strings["Unable to set your contact credentials on our system."] = "Nelze nastavit Vaše přihlašovací údaje v našem systému.";
+$a->strings["Unable to update your contact profile details on our system"] = "Nelze aktualizovat Váš profil v našem systému";
+$a->strings["Connection accepted at %s"] = "Připojení přijato na %s";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s se připojil k %2\$s";
+$a->strings["Event title and start time are required."] = "Název události a datum začátku jsou vyžadovány.";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Editovat událost";
+$a->strings["link to source"] = "odkaz na zdroj";
+$a->strings["Events"] = "Události";
+$a->strings["Create New Event"] = "Vytvořit novou událost";
+$a->strings["Previous"] = "Předchozí";
+$a->strings["Next"] = "Dále";
+$a->strings["hour:minute"] = "hodina:minuta";
+$a->strings["Event details"] = "Detaily události";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "Formát je %s %s. Datum začátku a Název jsou vyžadovány.";
+$a->strings["Event Starts:"] = "Událost začíná:";
+$a->strings["Required"] = "Vyžadováno";
+$a->strings["Finish date/time is not known or not relevant"] = "Datum/čas konce není zadán nebo není relevantní";
+$a->strings["Event Finishes:"] = "Akce končí:";
+$a->strings["Adjust for viewer timezone"] = "Nastavit časové pásmo pro uživatele s právem pro čtení";
+$a->strings["Description:"] = "Popis:";
+$a->strings["Location:"] = "Místo:";
+$a->strings["Title:"] = "Název:";
+$a->strings["Share this event"] = "Sdílet tuto událost";
+$a->strings["Photos"] = "Fotografie";
+$a->strings["Files"] = "Soubory";
+$a->strings["Welcome to %s"] = "Vítá Vás %s";
+$a->strings["Remote privacy information not available."] = "Vzdálené soukromé informace nejsou k dispozici.";
+$a->strings["Visible to:"] = "Viditelné pro:";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena.";
+$a->strings["Unable to check your home location."] = "Nebylo možné zjistit Vaši domácí lokaci.";
+$a->strings["No recipient."] = "Žádný příjemce.";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů.";
+$a->strings["Visit %s's profile [%s]"] = "Navštivte profil uživatele %s [%s]";
+$a->strings["Edit contact"] = "Editovat kontakt";
+$a->strings["Contacts who are not members of a group"] = "Kontakty, které nejsou členy skupiny";
+$a->strings["This is Friendica, version"] = "Toto je Friendica, verze";
+$a->strings["running at web location"] = "běžící na webu";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Pro získání dalších informací o projektu Friendica navštivte prosím <a href=\"http://friendica.com\">Friendica.com</a>.";
+$a->strings["Bug reports and issues: please visit"] = "Pro hlášení chyb a námětů na změny navštivte:";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Návrhy, chválu, dary, apod. - prosím piště na \"info\" na Friendica - tečka com";
+$a->strings["Installed plugins/addons/apps:"] = "Instalované pluginy/doplňky/aplikace:";
+$a->strings["No installed plugins/addons/apps"] = "Nejsou žádné nainstalované doplňky/aplikace";
+$a->strings["Remove My Account"] = "Odstranit můj účet";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit.";
+$a->strings["Please enter your password for verification:"] = "Prosím, zadejte své heslo pro ověření:";
+$a->strings["Image exceeds size limit of %d"] = "Obrázek překročil limit velikosti %d";
+$a->strings["Unable to process image."] = "Obrázek není možné zprocesovat";
+$a->strings["Wall Photos"] = "Fotografie na zdi";
+$a->strings["Image upload failed."] = "Nahrání obrázku selhalo.";
+$a->strings["Authorize application connection"] = "Povolit připojení aplikacím";
+$a->strings["Return to your app and insert this Securty Code:"] = "Vraťte se do vaší aplikace a zadejte tento bezpečnostní kód:";
+$a->strings["Please login to continue."] = "Pro pokračování se prosím přihlaste.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s označen uživatelem %2\$s %3\$s s %4\$s";
+$a->strings["Photo Albums"] = "Fotoalba";
+$a->strings["Contact Photos"] = "Fotogalerie kontaktu";
+$a->strings["Upload New Photos"] = "Nahrát nové fotografie";
+$a->strings["everybody"] = "Žádost o připojení selhala nebo byla zrušena.";
+$a->strings["Contact information unavailable"] = "Kontakt byl zablokován";
+$a->strings["Profile Photos"] = "Profilové fotografie";
+$a->strings["Album not found."] = "Album nenalezeno.";
+$a->strings["Delete Album"] = "Smazat album";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Opravdu chcete smazat toto foto album a všechny jeho fotografie?";
+$a->strings["Delete Photo"] = "Smazat fotografii";
+$a->strings["Do you really want to delete this photo?"] = "Opravdu chcete smazat tuto fotografii?";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s byl označen v %2\$s uživatelem %3\$s";
+$a->strings["a photo"] = "fotografie";
+$a->strings["Image exceeds size limit of "] = "Velikost obrázku překračuje limit velikosti";
+$a->strings["Image file is empty."] = "Soubor obrázku je prázdný.";
+$a->strings["No photos selected"] = "Není vybrána žádná fotografie";
+$a->strings["Access to this item is restricted."] = "Přístup k této položce je omezen.";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Použil jste %1$.2f Mbajtů z %2$.2f Mbajtů úložiště fotografií.";
+$a->strings["Upload Photos"] = "Nahrání fotografií ";
+$a->strings["New album name: "] = "Název nového alba: ";
+$a->strings["or existing album name: "] = "nebo stávající název alba: ";
+$a->strings["Do not show a status post for this upload"] = "Nezobrazovat stav pro tento upload";
+$a->strings["Permissions"] = "Oprávnění:";
+$a->strings["Show to Groups"] = "Zobrazit ve Skupinách";
+$a->strings["Show to Contacts"] = "Zobrazit v Kontaktech";
+$a->strings["Private Photo"] = "Soukromé Fotografie";
+$a->strings["Public Photo"] = "Veřejné Fotografie";
+$a->strings["Edit Album"] = "Edituj album";
+$a->strings["Show Newest First"] = "Zobrazit nejprve nejnovější:";
+$a->strings["Show Oldest First"] = "Zobrazit nejprve nejstarší:";
+$a->strings["View Photo"] = "Zobraz fotografii";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen.";
+$a->strings["Photo not available"] = "Fotografie není k dispozici";
+$a->strings["View photo"] = "Zobrazit obrázek";
+$a->strings["Edit photo"] = "Editovat fotografii";
+$a->strings["Use as profile photo"] = "Použít jako profilovou fotografii";
+$a->strings["View Full Size"] = "Zobrazit v plné velikosti";
+$a->strings["Tags: "] = "Štítky: ";
+$a->strings["[Remove any tag]"] = "[Odstranit všechny štítky]";
+$a->strings["Rotate CW (right)"] = "Rotovat po směru hodinových ručiček (doprava)";
+$a->strings["Rotate CCW (left)"] = "Rotovat proti směru hodinových ručiček (doleva)";
+$a->strings["New album name"] = "Nové jméno alba";
+$a->strings["Caption"] = "Titulek";
+$a->strings["Add a Tag"] = "Přidat štítek";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
+$a->strings["Private photo"] = "Soukromé fotografie";
+$a->strings["Public photo"] = "Veřejné fotografie";
+$a->strings["Share"] = "Sdílet";
+$a->strings["View Album"] = "Zobrazit album";
+$a->strings["Recent Photos"] = "Aktuální fotografie";
+$a->strings["No profile"] = "Žádný profil";
+$a->strings["Registration successful. Please check your email for further instructions."] = "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce.";
+$a->strings["Failed to send email message. Here is the message that failed."] = "Nepodařilo se odeslat zprávu na e-mail. Zde je zpráva, která nebyla odeslána.";
+$a->strings["Your registration can not be processed."] = "Vaši registraci nelze zpracovat.";
+$a->strings["Registration request at %s"] = "Žádost o registraci na %s";
+$a->strings["Your registration is pending approval by the site owner."] = "Vaše registrace čeká na schválení vlastníkem serveru.";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to  zítra znovu.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknutete na tlačítko 'Zaregistrovat'.";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky.";
+$a->strings["Your OpenID (optional): "] = "Vaše OpenID (nepovinné): ";
+$a->strings["Include your profile in member directory?"] = "Toto je Váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu.";
+$a->strings["Membership on this site is by invitation only."] = "Členství na tomto webu je pouze na pozvání.";
+$a->strings["Your invitation ID: "] = "Vaše pozvání ID:";
+$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vaše celé jméno (např. Jan Novák):";
+$a->strings["Your Email Address: "] = "Vaše e-mailová adresa:";
+$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>'."] = "Vyberte přezdívku k profilu. Ta musí začít s textovým znakem. Vaše profilová adresa na tomto webu pak bude \"<strong>přezdívka@\$sitename</strong>\".";
+$a->strings["Choose a nickname: "] = "Vyberte přezdívku:";
+$a->strings["Register"] = "Registrovat";
+$a->strings["Import"] = "Import";
+$a->strings["Import your profile to this friendica instance"] = "Import Vašeho profilu do této friendica instance";
+$a->strings["No valid account found."] = "Nenalezen žádný platný účet.";
+$a->strings["Password reset request issued. Check your email."] = "Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku.";
+$a->strings["Password reset requested at %s"] = "Na %s bylo zažádáno o resetování hesla";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Žádost nemohla být ověřena. (Možná jste ji odeslali již dříve.) Obnovení hesla se nezdařilo.";
+$a->strings["Password Reset"] = "Obnovení hesla";
+$a->strings["Your password has been reset as requested."] = "Vaše heslo bylo na Vaše přání resetováno.";
+$a->strings["Your new password is"] = "Někdo Vám napsal na Vaši profilovou stránku";
+$a->strings["Save or copy your new password - and then"] = "Uložte si nebo zkopírujte nové heslo - a pak";
+$a->strings["click here to login"] = "klikněte zde pro přihlášení";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení).";
+$a->strings["Your password has been changed at %s"] = "Vaše heslo bylo změněno na %s";
+$a->strings["Forgot your Password?"] = "Zapomněli jste heslo?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Zadejte svůj e-mailovou adresu a odešlete žádost o zaslání Vašeho nového hesla. Poté zkontrolujte svůj e-mail pro další instrukce.";
+$a->strings["Nickname or Email: "] = "Přezdívka nebo e-mail: ";
+$a->strings["Reset"] = "Reset";
+$a->strings["System down for maintenance"] = "Systém vypnut z důvodů údržby";
 $a->strings["Item not available."] = "Položka není k dispozici.";
 $a->strings["Item was not found."] = "Položka nebyla nalezena.";
-$a->strings["Account approved."] = "Účet schválen.";
-$a->strings["Registration revoked for %s"] = "Registrace zrušena pro %s";
-$a->strings["Please login."] = "Přihlaste se, prosím.";
-$a->strings["Find on this site"] = "Nalézt na tomto webu";
-$a->strings["Finding: "] = "Zjištění: ";
-$a->strings["Site Directory"] = "Adresář serveru";
-$a->strings["Find"] = "Najít";
-$a->strings["Age: "] = "Věk: ";
-$a->strings["Gender: "] = "Pohlaví: ";
-$a->strings["About:"] = "O mě:";
-$a->strings["No entries (some entries may be hidden)."] = "Žádné záznamy (některé položky mohou být skryty).";
-$a->strings["Contact settings applied."] = "Nastavení kontaktu změněno";
-$a->strings["Contact update failed."] = "Aktualizace kontaktu selhala.";
-$a->strings["Repair Contact Settings"] = "Opravit nastavení kontaktu";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>Varování: Toto je velmi pokročilé</strong> a pokud zadáte nesprávné informace, Vaše komunikace s tímto kontaktem může přestat fungovat.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Prosím použijte <strong>ihned</strong> v prohlížeči tlačítko \"zpět\" pokud si nejste jistí co dělat na této stránce.";
-$a->strings["Return to contact editor"] = "Návrat k editoru kontaktu";
-$a->strings["Account Nickname"] = "Přezdívka účtu";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - upřednostněno před Jménem/Přezdívkou";
-$a->strings["Account URL"] = "URL adresa účtu";
-$a->strings["Friend Request URL"] = "Žádost o přátelství URL";
-$a->strings["Friend Confirm URL"] = "URL adresa potvrzení přátelství";
-$a->strings["Notification Endpoint URL"] = "Notifikační URL adresa";
-$a->strings["Poll/Feed URL"] = "Poll/Feed URL adresa";
-$a->strings["New photo from this URL"] = "Nové foto z této URL adresy";
-$a->strings["Remote Self"] = "Remote Self";
-$a->strings["Mirror postings from this contact"] = "Zrcadlení správ od tohoto kontaktu";
-$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu.";
-$a->strings["Move account"] = "Přesunout účet";
-$a->strings["You can import an account from another Friendica server."] = "Můžete importovat účet z jiného Friendica serveru.";
-$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."] = "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali.";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Tato funkčnost je experimentální. Nemůžeme importovat kontakty z OSStatus sítí (statusnet/identi.ca) nebo z Diaspory";
-$a->strings["Account file"] = "Soubor s účtem";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\"";
-$a->strings["Remote privacy information not available."] = "Vzdálené soukromé informace nejsou k dispozici.";
-$a->strings["Visible to:"] = "Viditelné pro:";
-$a->strings["Save"] = "Uložit";
+$a->strings["Applications"] = "Aplikace";
+$a->strings["No installed applications."] = "Žádné nainstalované aplikace.";
 $a->strings["Help:"] = "Nápověda:";
 $a->strings["Help"] = "Nápověda";
-$a->strings["No profile"] = "Žádný profil";
-$a->strings["This introduction has already been accepted."] = "Toto pozvání již bylo přijato.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "Adresa profilu není platná nebo neobsahuje profilové informace";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka";
-$a->strings["Warning: profile location has no profile photo."] = "Varování: umístění profilu nemá žádnou profilovou fotografii.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "%d požadovaný parametr nebyl nalezen na daném místě",
-       1 => "%d požadované parametry nebyly nalezeny na daném místě",
-       2 => "%d požadované parametry nebyly nalezeny na daném místě",
-);
-$a->strings["Introduction complete."] = "Představení dokončeno.";
-$a->strings["Unrecoverable protocol error."] = "Neopravitelná chyba protokolu";
-$a->strings["Profile unavailable."] = "Profil není k dispozici.";
-$a->strings["%s has received too many connection requests today."] = "%s dnes obdržel příliš mnoho požadavků na připojení.";
-$a->strings["Spam protection measures have been invoked."] = "Ochrana proti spamu byla aktivována";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Přátelům se doporučuje to zkusit znovu za 24 hodin.";
-$a->strings["Invalid locator"] = "Neplatný odkaz";
-$a->strings["Invalid email address."] = "Neplatná emailová adresa";
-$a->strings["This account has not been configured for email. Request failed."] = "Tento účet nebyl nastaven pro email. Požadavek nesplněn.";
-$a->strings["Unable to resolve your name at the provided location."] = "Nepodařilo se zjistit Vaše jméno na zadané adrese.";
-$a->strings["You have already introduced yourself here."] = "Již jste se zde zavedli.";
-$a->strings["Apparently you are already friends with %s."] = "Zřejmě jste již přátelé se %s.";
-$a->strings["Invalid profile URL."] = "Neplatné URL profilu.";
-$a->strings["Disallowed profile URL."] = "Nepovolené URL profilu.";
-$a->strings["Failed to update contact record."] = "Nepodařilo se aktualizovat kontakt.";
-$a->strings["Your introduction has been sent."] = "Vaše žádost o propojení byla odeslána.";
-$a->strings["Please login to confirm introduction."] = "Prosím přihlašte se k potvrzení žádosti o propojení.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Jste přihlášeni pod nesprávnou identitou  Prosím, přihlaste se do <strong>tohoto</strong> profilu.";
-$a->strings["Hide this contact"] = "Skrýt tento kontakt";
-$a->strings["Welcome home %s."] = "Vítejte doma %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Prosím potvrďte Vaši žádost o propojení %s.";
-$a->strings["Confirm"] = "Potvrdit";
-$a->strings["[Name Withheld]"] = "[Jméno odepřeno]";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Prosím zadejte Vaši adresu identity jedné z následujících podporovaných komunikačních sítí:";
-$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Připojte se jako emailový následovník</strike> (Již brzy)";
-$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>."] = "Pokud ještě nejste členem svobodné sociální sítě, <a href=\"http://dir.friendica.com/siteinfo\">následujte tento odkaz k nalezení veřejného Friendica serveru a přidejte se k nám ještě dnes</a>.";
-$a->strings["Friend/Connection Request"] = "Požadavek o přátelství / kontaktování";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Odpovězte, prosím, následující:";
-$a->strings["Does %s know you?"] = "Zná Vás uživatel %s ?";
-$a->strings["Add a personal note:"] = "Přidat osobní poznámku:";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet / Federativní Sociální Web";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - prosím nepoužívejte tento formulář.  Místo toho zadejte %s do Vašeho Diaspora vyhledávacího pole.";
-$a->strings["Your Identity Address:"] = "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\".";
-$a->strings["Submit Request"] = "Odeslat žádost";
-$a->strings["[Embedded content - reload page to view]"] = "[Vložený obsah - obnovení stránky pro zobrazení]";
-$a->strings["View in context"] = "Pohled v kontextu";
 $a->strings["%d contact edited."] = array(
        0 => "%d kontakt upraven.",
        1 => "%d kontakty upraveny",
@@ -751,7 +640,6 @@ $a->strings["%d contact in common"] = array(
 $a->strings["View all contacts"] = "Zobrazit všechny kontakty";
 $a->strings["Toggle Blocked status"] = "Přepnout stav Blokováno";
 $a->strings["Unignore"] = "Přestat ignorovat";
-$a->strings["Ignore"] = "Ignorovat";
 $a->strings["Toggle Ignored status"] = "Přepnout stav Ignorováno";
 $a->strings["Unarchive"] = "Vrátit z archívu";
 $a->strings["Archive"] = "Archivovat";
@@ -764,7 +652,6 @@ $a->strings["Profile Visibility"] = "Viditelnost profilu";
 $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu.";
 $a->strings["Contact Information / Notes"] = "Kontaktní informace / poznámky";
 $a->strings["Edit contact notes"] = "Editovat poznámky kontaktu";
-$a->strings["Visit %s's profile [%s]"] = "Navštivte profil uživatele %s [%s]";
 $a->strings["Block/Unblock contact"] = "Blokovat / Odblokovat kontakt";
 $a->strings["Ignore contact"] = "Ignorovat kontakt";
 $a->strings["Repair URL settings"] = "Opravit nastavení adresy URL ";
@@ -775,8 +662,10 @@ $a->strings["Update public posts"] = "Aktualizovat veřejné příspěvky";
 $a->strings["Currently blocked"] = "V současnosti zablokováno";
 $a->strings["Currently ignored"] = "V současnosti ignorováno";
 $a->strings["Currently archived"] = "Aktuálně archivován";
-$a->strings["Hide this contact from others"] = "Skrýt tento kontakt před ostatními";
 $a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Odpovědi/Libí se na Vaše veřejné příspěvky <strong>mohou být</strong> stále viditelné";
+$a->strings["Notification for new posts"] = "Upozornění na nové příspěvky";
+$a->strings["Send a notification of every new post of this contact"] = "Poslat upozornění při každém novém příspěvku tohoto kontaktu";
+$a->strings["Fetch further information for feeds"] = "Načíst další informace pro kanál";
 $a->strings["Suggestions"] = "Doporučení";
 $a->strings["Suggest potential friends"] = "Navrhnout potenciální přátele";
 $a->strings["All Contacts"] = "Všechny kontakty";
@@ -794,15 +683,95 @@ $a->strings["Only show hidden contacts"] = "Zobrazit pouze skryté kontakty";
 $a->strings["Mutual Friendship"] = "Vzájemné přátelství";
 $a->strings["is a fan of yours"] = "je Váš fanoušek";
 $a->strings["you are a fan of"] = "jste fanouškem";
-$a->strings["Edit contact"] = "Editovat kontakt";
+$a->strings["Contacts"] = "Kontakty";
 $a->strings["Search your contacts"] = "Prohledat Vaše kontakty";
+$a->strings["Finding: "] = "Zjištění: ";
+$a->strings["Find"] = "Najít";
 $a->strings["Update"] = "Aktualizace";
-$a->strings["everybody"] = "Žádost o připojení selhala nebo byla zrušena.";
-$a->strings["Account settings"] = "Nastavení účtu";
+$a->strings["No videos selected"] = "Není vybráno žádné video";
+$a->strings["Recent Videos"] = "Aktuální Videa";
+$a->strings["Upload New Videos"] = "Nahrát nová videa";
+$a->strings["Common Friends"] = "Společní přátelé";
+$a->strings["No contacts in common."] = "Žádné společné kontakty.";
+$a->strings["Contact added"] = "Kontakt přidán";
+$a->strings["Move account"] = "Přesunout účet";
+$a->strings["You can import an account from another Friendica server."] = "Můžete importovat účet z jiného Friendica serveru.";
+$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."] = "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Tato funkčnost je experimentální. Nemůžeme importovat kontakty z OSStatus sítí (statusnet/identi.ca) nebo z Diaspory";
+$a->strings["Account file"] = "Soubor s účtem";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\"";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s následuje %3\$s uživatele %2\$s";
+$a->strings["Friends of %s"] = "Přátelé uživatele %s";
+$a->strings["No friends to display."] = "Žádní přátelé k zobrazení";
+$a->strings["Tag removed"] = "Štítek odstraněn";
+$a->strings["Remove Item Tag"] = "Odebrat štítek položky";
+$a->strings["Select a tag to remove: "] = "Vyberte štítek k odebrání: ";
+$a->strings["Remove"] = "Odstranit";
+$a->strings["Welcome to Friendica"] = "Vítejte na Friendica";
+$a->strings["New Member Checklist"] = "Seznam doporučení pro nového člena";
+$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."] = "Rádi bychom vám nabídli několik tipů a odkazů pro začátek. Klikněte na jakoukoliv položku pro zobrazení relevantní stránky. Odkaz na tuto stránku bude viditelný z Vaší domovské stránky po dobu dvou týdnů od Vaší první registrace.";
+$a->strings["Getting Started"] = "Začínáme";
+$a->strings["Friendica Walk-Through"] = "Prohlídka Friendica ";
+$a->strings["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."] = "Na Vaší stránce <em>Rychlý Start</em> - naleznete stručné představení k Vašemu profilu a záložce Síť, k vytvoření spojení s novými kontakty a nalezení skupin, ke kterým se můžete připojit.";
+$a->strings["Go to Your Settings"] = "Navštivte své nastavení";
+$a->strings["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."] = "Na Vaší stránce <em>Nastavení</em> - si změňte Vaše první heslo.\nVěnujte také svou pozornost k adrese identity. Vypadá jako emailová adresa a bude Vám užitečná pro navazování přátelství na svobodné sociální síti.";
+$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši potenciální přátelé věděli, jak vás přesně najít.";
+$a->strings["Profile"] = "Profil";
+$a->strings["Upload Profile Photo"] = "Nahrát profilovou fotografii";
+$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Nahrajte si svou profilovou fotku, pokud jste tak již neučinili. Studie ukázaly, že lidé se skutečnými fotografiemi mají desetkrát častěji přátele než lidé, kteří nemají.";
+$a->strings["Edit Your Profile"] = "Editujte Váš profil";
+$a->strings["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."] = "Upravit <strong>výchozí</strong> profil podle vašich představ. Prověřte nastavení pro skrytí Vašeho  seznamu přátel a skrytí profilu před neznámými návštěvníky.";
+$a->strings["Profile Keywords"] = "Profilová klíčová slova";
+$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."] = "Nastavte si nějaká veřejné klíčová slova pro výchozí profil, která popisují Vaše zájmy. Friendika Vám může nalézt další lidi s podobnými zájmy a navrhnout přátelství.";
+$a->strings["Connecting"] = "Probíhá pokus o připojení";
+$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."] = "Jestliže máte účet na Facebooku, povolte konektor na Facebook a bude možné (na přání) importovat všechny Vaš přátele na Facebooku a všechny Vaše konverzace.";
+$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Pokud</em> je toto Váš soukromý server, instalací Facebok doplňku můžete zjednodušit Váš přechod na svobodný sociální web.";
+$a->strings["Importing Emails"] = "Importování emaiů";
+$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Pokud chcete importovat své přátele nebo mailové skupiny a komunikovat s nimi, zadejte na Vaší stránce Nastavení kontektoru své přístupové údaje do svého emailového účtu";
+$a->strings["Go to Your Contacts Page"] = "Navštivte Vaši stránku s kontakty";
+$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Vaše stránka Kontakty je Vaše brána k nastavování přátelství a propojení s přáteli z dalších sítí. Typicky zadáte jejich emailovou adresu nebo URL adresu jejich serveru prostřednictvím dialogu <em>Přidat nový kontakt</em>.";
+$a->strings["Go to Your Site's Directory"] = "Navštivte lokální adresář Friendica";
+$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."] = "Stránka Adresář Vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Prostřednictvím odkazů <em>Připojení</em> nebo <em>Následovat</em> si prohlédněte jejich profilovou stránku. Uveďte svou vlastní adresu identity, je-li požadována.";
+$a->strings["Finding New People"] = "Nalezení nových lidí";
+$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."] = "Na bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin.";
+$a->strings["Groups"] = "Skupiny";
+$a->strings["Group Your Contacts"] = "Seskupte si své 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."] = "Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu Vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť.";
+$a->strings["Why Aren't My Posts Public?"] = "Proč nejsou mé příspěvky veřejné?";
+$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektuje Vaše soukromí. Defaultně  jsou Vaše příspěvky viditelné pouze lidem, které označíte jako Vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu";
+$a->strings["Getting Help"] = "Získání nápovědy";
+$a->strings["Go to the Help Section"] = "Navštivte sekci nápovědy";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Na stránkách <strong>Nápověda</strong> naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací.";
+$a->strings["Remove term"] = "Odstranit termín";
+$a->strings["Saved Searches"] = "Uložená hledání";
+$a->strings["Search"] = "Vyhledávání";
+$a->strings["No results."] = "Žádné výsledky.";
+$a->strings["Total invitation limit exceeded."] = "Celkový limit pozvánek byl překročen";
+$a->strings["%s : Not a valid email address."] = "%s : není platná e-mailová adresa.";
+$a->strings["Please join us on Friendica"] = "Prosím přidejte se k nám na Friendice";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit pozvánek byl překročen. Prosím kontaktujte vašeho administrátora webu.";
+$a->strings["%s : Message delivery failed."] = "%s : Doručení zprávy se nezdařilo.";
+$a->strings["%d message sent."] = array(
+       0 => "%d zpráva odeslána.",
+       1 => "%d zprávy odeslány.",
+       2 => "%d zprávy odeslány.",
+);
+$a->strings["You have no more invitations available"] = "Nemáte k dispozici žádné další pozvánky";
+$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."] = "Navštivte %s pro seznam veřejných serverů, na kterých se můžete přidat. Členové Friendica se mohou navzájem propojovat, stejně tak jako se mohou přiopojit se členy mnoha dalších sociálních sítí.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "K akceptaci této pozvánky prosím navštivte a registrujte se na %s nebo na kterékoliv jiném veřejném Friendica serveru.";
+$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."] = "Friendica servery jsou všechny propojené a vytváří tak rozsáhlou sociální síť s důrazem na soukromý a je pod kontrolou svých členů. Členové se mohou propojovat s mnoha dalšími tradičními sociálními sítěmi. Navštivte %s pro seznam alternativních Friendica serverů kde se můžete přidat.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy.";
+$a->strings["Send invitations"] = "Poslat pozvánky";
+$a->strings["Enter email addresses, one per line:"] = "Zadejte e-mailové adresy, jednu na řádek:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Jste srdečně pozván se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální síť.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Budete muset zadat kód této pozvánky: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu stránku na:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pro více informací o Friendica projektu a o tom, proč je tak důležitý, prosím navštivte http://friendica.com";
 $a->strings["Additional features"] = "Další funkčnosti";
-$a->strings["Display settings"] = "Nastavení zobrazení";
-$a->strings["Connector settings"] = "Nastavení konektoru";
-$a->strings["Plugin settings"] = "Nastavení pluginu";
+$a->strings["Display"] = "Zobrazení";
+$a->strings["Social Networks"] = "Sociální sítě";
+$a->strings["Delegations"] = "Delegace";
 $a->strings["Connected apps"] = "Propojené aplikace";
 $a->strings["Export personal data"] = "Export osobních údajů";
 $a->strings["Remove account"] = "Odstranit účet";
@@ -844,7 +813,6 @@ $a->strings["enabled"] = "povoleno";
 $a->strings["disabled"] = "zakázáno";
 $a->strings["StatusNet"] = "StatusNet";
 $a->strings["Email access is disabled on this site."] = "Přístup k elektronické poště je na tomto serveru zakázán.";
-$a->strings["Connector Settings"] = "Nastavení konektoru";
 $a->strings["Email/Mailbox Setup"] = "Nastavení e-mailu";
 $a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Pokud chcete komunikovat pomocí této služby s Vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce.";
 $a->strings["Last successful email check:"] = "Poslední úspěšná kontrola e-mailu:";
@@ -869,7 +837,10 @@ $a->strings["Number of items to display per page:"] = "Počet položek zobrazen
 $a->strings["Maximum of 100 items"] = "Maximum 100 položek";
 $a->strings["Number of items to display per page when viewed from mobile device:"] = "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:";
 $a->strings["Don't show emoticons"] = "Nezobrazovat emotikony";
+$a->strings["Don't show notices"] = "Nezobrazovat oznámění";
 $a->strings["Infinite scroll"] = "Nekonečné posouvání";
+$a->strings["User Types"] = "Uživatelské typy";
+$a->strings["Community Types"] = "Komunitní typy";
 $a->strings["Normal Account Page"] = "Normální stránka účtu";
 $a->strings["This account is a normal personal profile"] = "Tento účet je běžný osobní profil";
 $a->strings["Soapbox Page"] = "Stránka \"Soapbox\"";
@@ -921,8 +892,6 @@ $a->strings["Maximum Friend Requests/Day:"] = "Maximální počet žádostí o p
 $a->strings["(to prevent spam abuse)"] = "(Aby se zabránilo spamu)";
 $a->strings["Default Post Permissions"] = "Výchozí oprávnění pro příspěvek";
 $a->strings["(click to open/close)"] = "(Klikněte pro otevření/zavření)";
-$a->strings["Show to Groups"] = "Zobrazit ve Skupinách";
-$a->strings["Show to Contacts"] = "Zobrazit v Kontaktech";
 $a->strings["Default Private Post"] = "Výchozí Soukromý příspěvek";
 $a->strings["Default Public Post"] = "Výchozí Veřejný příspěvek";
 $a->strings["Default Permissions for New Posts"] = "Výchozí oprávnění pro nové příspěvky";
@@ -946,6 +915,9 @@ $a->strings["Change the behaviour of this account for special situations"] = "Zm
 $a->strings["Relocate"] = "Změna umístění";
 $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."] = "Pokud jste přemístil tento profil z jiného serveru a nějaký z vašich kontaktů nedostává Vaše aktualizace, zkuste stisknout toto tlačítko.";
 $a->strings["Resend relocate message to contacts"] = "Znovu odeslat správu o změně umístění Vašim kontaktům";
+$a->strings["Item has been removed."] = "Položka byla odstraněna.";
+$a->strings["People Search"] = "Vyhledávání lidí";
+$a->strings["No matches"] = "Žádné shody";
 $a->strings["Profile deleted."] = "Profil smazán.";
 $a->strings["Profile-"] = "Profil-";
 $a->strings["New profile created."] = "Nový profil vytvořen.";
@@ -1014,141 +986,87 @@ $a->strings["Love/romance"] = "Láska/romantika";
 $a->strings["Work/employment"] = "Práce/zaměstnání";
 $a->strings["School/education"] = "Škola/vzdělání";
 $a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Toto je váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu.";
+$a->strings["Age: "] = "Věk: ";
 $a->strings["Edit/Manage Profiles"] = "Upravit / Spravovat profily";
-$a->strings["Group created."] = "Skupina vytvořena.";
-$a->strings["Could not create group."] = "Nelze vytvořit skupinu.";
-$a->strings["Group not found."] = "Skupina nenalezena.";
-$a->strings["Group name changed."] = "Název skupiny byl změněn.";
-$a->strings["Save Group"] = "Uložit Skupinu";
-$a->strings["Create a group of contacts/friends."] = "Vytvořit skupinu kontaktů / přátel.";
-$a->strings["Group Name: "] = "Název skupiny: ";
-$a->strings["Group removed."] = "Skupina odstraněna. ";
-$a->strings["Unable to remove group."] = "Nelze odstranit skupinu.";
-$a->strings["Group Editor"] = "Editor skupin";
-$a->strings["Members"] = "Členové";
-$a->strings["Click on a contact to add or remove."] = "Klikněte na kontakt pro přidání nebo odebrání";
-$a->strings["Source (bbcode) text:"] = "Zdrojový text (bbcode):";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Zdrojový (Diaspora) text k převedení do BB kódování:";
-$a->strings["Source input: "] = "Zdrojový vstup: ";
-$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): "] = "Vstupní data (ve formátu Diaspora): ";
-$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["Change profile photo"] = "Změnit profilovou fotografii";
+$a->strings["Create New Profile"] = "Vytvořit nový profil";
+$a->strings["Profile Image"] = "Profilový obrázek";
+$a->strings["visible to everybody"] = "viditelné pro všechny";
+$a->strings["Edit visibility"] = "Upravit viditelnost";
+$a->strings["link"] = "odkaz";
+$a->strings["Export account"] = "Exportovat účet";
+$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."] = "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření  zálohy svého účtu a/nebo k přesunu na jiný server.";
+$a->strings["Export all"] = "Exportovat vše";
+$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)"] = "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)";
+$a->strings["{0} wants to be your friend"] = "{0} chce být Vaším přítelem";
+$a->strings["{0} sent you a message"] = "{0} vám poslal zprávu";
+$a->strings["{0} requested registration"] = "{0} požaduje registraci";
+$a->strings["{0} commented %s's post"] = "{0} komentoval příspěvek uživatele %s";
+$a->strings["{0} liked %s's post"] = "{0} má rád příspěvek uživatele %s";
+$a->strings["{0} disliked %s's post"] = "{0} nemá rád příspěvek uživatele %s";
+$a->strings["{0} is now friends with %s"] = "{0} se skamarádil s %s";
+$a->strings["{0} posted"] = "{0} zasláno";
+$a->strings["{0} tagged %s's post with #%s"] = "{0} označen %s' příspěvek s #%s";
+$a->strings["{0} mentioned you in a post"] = "{0} vás zmínil v příspěvku";
+$a->strings["Nothing new here"] = "Zde není nic nového";
+$a->strings["Clear notifications"] = "Smazat notifikace";
 $a->strings["Not available."] = "Není k dispozici.";
-$a->strings["Contact added"] = "Kontakt přidán";
-$a->strings["No more system notifications."] = "Žádné další systémová upozornění.";
-$a->strings["System Notifications"] = "Systémová upozornění";
-$a->strings["New Message"] = "Nová zpráva";
-$a->strings["Unable to locate contact information."] = "Nepodařilo se najít kontaktní informace.";
-$a->strings["Messages"] = "Zprávy";
-$a->strings["Do you really want to delete this message?"] = "Opravdu chcete smazat tuto zprávu?";
-$a->strings["Message deleted."] = "Zpráva odstraněna.";
-$a->strings["Conversation removed."] = "Konverzace odstraněna.";
-$a->strings["No messages."] = "Žádné zprávy.";
-$a->strings["Unknown sender - %s"] = "Neznámý odesilatel - %s";
-$a->strings["You and %s"] = "Vy a %s";
-$a->strings["%s and You"] = "%s a Vy";
-$a->strings["Delete conversation"] = "Odstranit konverzaci";
-$a->strings["D, d M Y - g:i A"] = "D M R - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d zpráva",
-       1 => "%d zprávy",
-       2 => "%d zpráv",
-);
-$a->strings["Message not available."] = "Zpráva není k dispozici.";
-$a->strings["Delete message"] = "Smazat zprávu";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Není k dispozici zabezpečená komunikace. <strong>Možná</strong> budete schopni reagovat z odesilatelovy profilové stránky.";
-$a->strings["Send Reply"] = "Poslat odpověď";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s nemá rád %2\$s na %3\$s";
-$a->strings["Post successful."] = "Příspěvek úspěšně odeslán";
-$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
-$a->strings["Time Conversion"] = "Časová konverze";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica poskytuje tuto službu pro sdílení událostí s ostatními sítěmi a přáteli v neznámých časových zónách";
-$a->strings["UTC time: %s"] = "UTC čas: %s";
-$a->strings["Current timezone: %s"] = "Aktuální časové pásmo: %s";
-$a->strings["Converted localtime: %s"] = "Převedený lokální čas : %s";
-$a->strings["Please select your timezone:"] = "Prosím, vyberte své časové pásmo:";
+$a->strings["Community"] = "Komunita";
 $a->strings["Save to Folder:"] = "Uložit do složky:";
 $a->strings["- select -"] = "- vyber -";
+$a->strings["Save"] = "Uložit";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP";
+$a->strings["Or - did you try to upload an empty file?"] = "Nebo - nenahrával jste prázdný soubor?";
+$a->strings["File exceeds size limit of %d"] = "Velikost souboru přesáhla limit %d";
+$a->strings["File upload failed."] = "Nahrání souboru se nezdařilo.";
 $a->strings["Invalid profile identifier."] = "Neplatný identifikátor profilu.";
 $a->strings["Profile Visibility Editor"] = "Editor viditelnosti profilu ";
+$a->strings["Click on a contact to add or remove."] = "Klikněte na kontakt pro přidání nebo odebrání";
 $a->strings["Visible To"] = "Viditelný pro";
 $a->strings["All Contacts (with secure profile access)"] = "Všechny kontakty (se zabezpečeným přístupovým profilem )";
+$a->strings["Do you really want to delete this suggestion?"] = "Opravdu chcete smazat tento návrh?";
+$a->strings["Friend Suggestions"] = "Návrhy přátel";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin.";
+$a->strings["Connect"] = "Spojit";
+$a->strings["Ignore/Hide"] = "Ignorovat / skrýt";
+$a->strings["Access denied."] = "Přístup odmítnut";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s vítá %2\$s";
+$a->strings["Manage Identities and/or Pages"] = "Správa identit a / nebo stránek";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Přepnutí mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí Vaše detaily účtu, nebo kterým jste přidělili oprávnění nastavovat přístupová práva.";
+$a->strings["Select an identity to manage: "] = "Vyberte identitu pro správu: ";
+$a->strings["No potential page delegates located."] = "Žádní potenciální delegáti stránky nenalezeni.";
+$a->strings["Delegate Page Management"] = "Správa delegátů stránky";
+$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."] = "Delegáti jsou schopni řídit všechny aspekty tohoto účtu / stránky, kromě základních nastavení účtu. Prosím, nepředávejte svůj osobní účet nikomu, komu úplně nevěříte..";
+$a->strings["Existing Page Managers"] = "Stávající správci stránky";
+$a->strings["Existing Page Delegates"] = "Stávající delegáti stránky ";
+$a->strings["Potential Delegates"] = "Potenciální delegáti";
+$a->strings["Add"] = "Přidat";
+$a->strings["No entries."] = "Žádné záznamy.";
 $a->strings["No contacts."] = "Žádné kontakty.";
 $a->strings["View Contacts"] = "Zobrazit kontakty";
-$a->strings["People Search"] = "Vyhledávání lidí";
-$a->strings["No matches"] = "Žádné shody";
-$a->strings["Upload New Photos"] = "Nahrát nové fotografie";
-$a->strings["Contact information unavailable"] = "Kontakt byl zablokován";
-$a->strings["Album not found."] = "Album nenalezeno.";
-$a->strings["Delete Album"] = "Smazat album";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Opravdu chcete smazat toto foto album a všechny jeho fotografie?";
-$a->strings["Delete Photo"] = "Smazat fotografii";
-$a->strings["Do you really want to delete this photo?"] = "Opravdu chcete smazat tuto fotografii?";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s byl označen v %2\$s uživatelem %3\$s";
-$a->strings["a photo"] = "fotografie";
-$a->strings["Image exceeds size limit of "] = "Velikost obrázku překračuje limit velikosti";
-$a->strings["Image file is empty."] = "Soubor obrázku je prázdný.";
-$a->strings["Unable to process image."] = "Obrázek není možné zprocesovat";
-$a->strings["Image upload failed."] = "Nahrání obrázku selhalo.";
-$a->strings["No photos selected"] = "Není vybrána žádná fotografie";
-$a->strings["Access to this item is restricted."] = "Přístup k této položce je omezen.";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Použil jste %1$.2f Mbajtů z %2$.2f Mbajtů úložiště fotografií.";
-$a->strings["Upload Photos"] = "Nahrání fotografií ";
-$a->strings["New album name: "] = "Název nového alba: ";
-$a->strings["or existing album name: "] = "nebo stávající název alba: ";
-$a->strings["Do not show a status post for this upload"] = "Nezobrazovat stav pro tento upload";
-$a->strings["Permissions"] = "Oprávnění:";
-$a->strings["Private Photo"] = "Soukromé Fotografie";
-$a->strings["Public Photo"] = "Veřejné Fotografie";
-$a->strings["Edit Album"] = "Edituj album";
-$a->strings["Show Newest First"] = "Zobrazit nejprve nejnovější:";
-$a->strings["Show Oldest First"] = "Zobrazit nejprve nejstarší:";
-$a->strings["View Photo"] = "Zobraz fotografii";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen.";
-$a->strings["Photo not available"] = "Fotografie není k dispozici";
-$a->strings["View photo"] = "Zobrazit obrázek";
-$a->strings["Edit photo"] = "Editovat fotografii";
-$a->strings["Use as profile photo"] = "Použít jako profilovou fotografii";
-$a->strings["View Full Size"] = "Zobrazit v plné velikosti";
-$a->strings["Tags: "] = "Štítky: ";
-$a->strings["[Remove any tag]"] = "[Odstranit všechny štítky]";
-$a->strings["Rotate CW (right)"] = "Rotovat po směru hodinových ručiček (doprava)";
-$a->strings["Rotate CCW (left)"] = "Rotovat proti směru hodinových ručiček (doleva)";
-$a->strings["New album name"] = "Nové jméno alba";
-$a->strings["Caption"] = "Titulek";
-$a->strings["Add a Tag"] = "Přidat štítek";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
-$a->strings["Private photo"] = "Soukromé fotografie";
-$a->strings["Public photo"] = "Veřejné fotografie";
-$a->strings["Share"] = "Sdílet";
-$a->strings["View Album"] = "Zobrazit album";
-$a->strings["Recent Photos"] = "Aktuální fotografie";
-$a->strings["File exceeds size limit of %d"] = "Velikost souboru přesáhla limit %d";
-$a->strings["File upload failed."] = "Nahrání souboru se nezdařilo.";
-$a->strings["No videos selected"] = "Není vybráno žádné video";
-$a->strings["View Video"] = "Zobrazit video";
-$a->strings["Recent Videos"] = "Aktuální Videa";
-$a->strings["Upload New Videos"] = "Nahrát nová videa";
+$a->strings["Personal Notes"] = "Osobní poznámky";
 $a->strings["Poke/Prod"] = "Šťouchanec";
 $a->strings["poke, prod or do other things to somebody"] = "někoho šťouchnout nebo mu provést  jinou věc";
 $a->strings["Recipient"] = "Příjemce";
 $a->strings["Choose what you wish to do to recipient"] = "Vyberte, co si přejete příjemci udělat";
 $a->strings["Make this post private"] = "Změnit tento příspěvek na soukromý";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s následuje %3\$s uživatele %2\$s";
-$a->strings["Export account"] = "Exportovat účet";
-$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."] = "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření  zálohy svého účtu a/nebo k přesunu na jiný server.";
-$a->strings["Export all"] = "Exportovat vše";
-$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)"] = "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)";
-$a->strings["Common Friends"] = "Společní přátelé";
-$a->strings["No contacts in common."] = "Žádné společné kontakty.";
-$a->strings["Image exceeds size limit of %d"] = "Obrázek překročil limit velikosti %d";
-$a->strings["Wall Photos"] = "Fotografie na zdi";
+$a->strings["Global Directory"] = "Globální adresář";
+$a->strings["Find on this site"] = "Nalézt na tomto webu";
+$a->strings["Site Directory"] = "Adresář serveru";
+$a->strings["Gender: "] = "Pohlaví: ";
+$a->strings["Gender:"] = "Pohlaví:";
+$a->strings["Status:"] = "Status:";
+$a->strings["Homepage:"] = "Domácí stránka:";
+$a->strings["About:"] = "O mě:";
+$a->strings["No entries (some entries may be hidden)."] = "Žádné záznamy (některé položky mohou být skryty).";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
+$a->strings["Time Conversion"] = "Časová konverze";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica poskytuje tuto službu pro sdílení událostí s ostatními sítěmi a přáteli v neznámých časových zónách";
+$a->strings["UTC time: %s"] = "UTC čas: %s";
+$a->strings["Current timezone: %s"] = "Aktuální časové pásmo: %s";
+$a->strings["Converted localtime: %s"] = "Převedený lokální čas : %s";
+$a->strings["Please select your timezone:"] = "Prosím, vyberte své časové pásmo:";
+$a->strings["Post successful."] = "Příspěvek úspěšně odeslán";
 $a->strings["Image uploaded but image cropping failed."] = "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo.";
 $a->strings["Image size reduction [%s] failed."] = "Nepodařilo se snížit velikost obrázku [%s].";
 $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nové fotografie nezobrazí okamžitě.";
@@ -1162,51 +1080,89 @@ $a->strings["Crop Image"] = "Oříznout obrázek";
 $a->strings["Please adjust the image cropping for optimum viewing."] = "Prosím, ořízněte tento obrázek pro optimální zobrazení.";
 $a->strings["Done Editing"] = "Editace dokončena";
 $a->strings["Image uploaded successfully."] = "Obrázek byl úspěšně nahrán.";
-$a->strings["Applications"] = "Aplikace";
-$a->strings["No installed applications."] = "Žádné nainstalované aplikace.";
-$a->strings["Nothing new here"] = "Zde není nic nového";
-$a->strings["Clear notifications"] = "Smazat notifikace";
-$a->strings["Profile Match"] = "Shoda profilu";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do Vašeho výchozího profilu.";
-$a->strings["is interested in:"] = "zajímá se o:";
-$a->strings["Tag removed"] = "Štítek odstraněn";
-$a->strings["Remove Item Tag"] = "Odebrat štítek položky";
-$a->strings["Select a tag to remove: "] = "Vyberte štítek k odebrání: ";
-$a->strings["Remove"] = "Odstranit";
-$a->strings["Event title and start time are required."] = "Název události a datum začátku jsou vyžadovány.";
-$a->strings["l, F j"] = "l, F j";
-$a->strings["Edit event"] = "Editovat událost";
-$a->strings["link to source"] = "odkaz na zdroj";
-$a->strings["Create New Event"] = "Vytvořit novou událost";
-$a->strings["Previous"] = "Předchozí";
-$a->strings["hour:minute"] = "hodina:minuta";
-$a->strings["Event details"] = "Detaily události";
-$a->strings["Format is %s %s. Starting date and Title are required."] = "Formát je %s %s. Datum začátku a Název jsou vyžadovány.";
-$a->strings["Event Starts:"] = "Událost začíná:";
-$a->strings["Required"] = "Vyžadováno";
-$a->strings["Finish date/time is not known or not relevant"] = "Datum/čas konce není zadán nebo není relevantní";
-$a->strings["Event Finishes:"] = "Akce končí:";
-$a->strings["Adjust for viewer timezone"] = "Nastavit časové pásmo pro uživatele s právem pro čtení";
-$a->strings["Description:"] = "Popis:";
-$a->strings["Title:"] = "Název:";
-$a->strings["Share this event"] = "Sdílet tuto událost";
-$a->strings["No potential page delegates located."] = "Žádní potenciální delegáti stránky nenalezeni.";
-$a->strings["Delegate Page Management"] = "Správa delegátů stránky";
-$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."] = "Delegáti jsou schopni řídit všechny aspekty tohoto účtu / stránky, kromě základních nastavení účtu. Prosím, nepředávejte svůj osobní účet nikomu, komu úplně nevěříte..";
-$a->strings["Existing Page Managers"] = "Stávající správci stránky";
-$a->strings["Existing Page Delegates"] = "Stávající delegáti stránky ";
-$a->strings["Potential Delegates"] = "Potenciální delegáti";
-$a->strings["Add"] = "Přidat";
-$a->strings["No entries."] = "Žádné záznamy.";
-$a->strings["Contacts who are not members of a group"] = "Kontakty, které nejsou členy skupiny";
-$a->strings["Files"] = "Soubory";
-$a->strings["System down for maintenance"] = "Systém vypnut z důvodů údržby";
-$a->strings["Remove My Account"] = "Odstranit můj účet";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit.";
-$a->strings["Please enter your password for verification:"] = "Prosím, zadejte své heslo pro ověření:";
-$a->strings["Friend suggestion sent."] = "Návrhy přátelství odeslány ";
-$a->strings["Suggest Friends"] = "Navrhněte přátelé";
-$a->strings["Suggest a friend for %s"] = "Navrhněte přátelé pro uživatele %s";
+$a->strings["Friendica Communications Server - Setup"] = "Friendica Komunikační server - Nastavení";
+$a->strings["Could not connect to database."] = "Nelze se připojit k databázi.";
+$a->strings["Could not create table."] = "Nelze vytvořit tabulku.";
+$a->strings["Your Friendica site database has been installed."] = "Vaše databáze Friendica  byla nainstalována.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do Vašeho adresáře - i když Vy můžete.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Přečtěte si prosím informace v souboru \"INSTALL.txt\".";
+$a->strings["System check"] = "Testování systému";
+$a->strings["Check again"] = "Otestovat znovu";
+$a->strings["Database connection"] = "Databázové spojení";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru, ";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním.";
+$a->strings["Database Server Name"] = "Jméno databázového serveru";
+$a->strings["Database Login Name"] = "Přihlašovací jméno k databázi";
+$a->strings["Database Login Password"] = "Heslo k databázovému účtu ";
+$a->strings["Database Name"] = "Jméno databáze";
+$a->strings["Site administrator email address"] = "Emailová adresa administrátora webu";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Vaše emailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní.";
+$a->strings["Please select a default timezone for your website"] = "Prosím, vyberte výchozí časové pásmo pro váš server";
+$a->strings["Site settings"] = "Nastavení webu";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru.";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Pokud na serveru nemáte nainstalovánu verzi PHP spustitelnou z příkazového řádku, nebudete moci spouštět na pozadí synchronizaci zpráv prostřednictvím cronu. Přečtěte si <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>\n\n    podrobnosti\n    návrhy\n    historie\n\n\t\nThe following url is either missing from the translation or has been translated: 'http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
+$a->strings["PHP executable path"] = "Cesta k \"PHP executable\"";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Zadejte plnou cestu k spustitelnému souboru php. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci.";
+$a->strings["Command line PHP"] = "Příkazový řádek PHP";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP executable není php cli binary (může být verze cgi-fgci)";
+$a->strings["Found PHP version: "] = "Nalezena PHP verze:";
+$a->strings["PHP cli binary"] = "PHP cli binary";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu.";
+$a->strings["This is required for message delivery to work."] = "Toto je nutné pro fungování doručování zpráv.";
+$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Pokud systém běží na Windows, seznamte se s \"http://www.php.net/manual/en/openssl.installation.php\".";
+$a->strings["Generate encryption keys"] = "Generovat kriptovací klíče";
+$a->strings["libCurl PHP module"] = "libCurl PHP modul";
+$a->strings["GD graphics PHP module"] = "GD graphics PHP modul";
+$a->strings["OpenSSL PHP module"] = "OpenSSL PHP modul";
+$a->strings["mysqli PHP module"] = "mysqli PHP modul";
+$a->strings["mb_string PHP module"] = "mb_string PHP modul";
+$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite modul";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Chyba: požadovaný libcurl PHP modul není nainstalován.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Chyba: požadovaný GD graphics PHP modul není nainstalován.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Chyba: požadovaný openssl PHP modul není nainstalován.";
+$a->strings["Error: mysqli PHP module required but not installed."] = "Chyba: požadovaný mysqli PHP modul není nainstalován.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Chyba: PHP modul mb_string  je vyžadován, ale není nainstalován.";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři vašeho webového serveru ale nyní mu to není umožněno.";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když Vy můžete.";
+$a->strings["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."] = "Na konci této procedury obd nás obdržíte text k uložení v souboru pojmenovaném .htconfig.php ve Vašem Friendica kořenovém adresáři.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor \"INSTALL.txt\" pro další instrukce.";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php je editovatelné";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování.";
+$a->strings["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."] = "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře";
+$a->strings["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."] = "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 je nastaven pro zápis";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Url rewrite v .htconfig nefunguje. Prověřte prosím Vaše nastavení serveru.";
+$a->strings["Url rewrite is working"] = "Url rewrite je funkční.";
+$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Databázový konfigurační soubor \".htconfig.php\" nemohl být uložen. Prosím, použijte přiložený text k vytvoření konfiguračního souboru ve vašem kořenovém adresáři webového serveru.";
+$a->strings["Errors encountered creating database tables."] = "Při vytváření databázových tabulek došlo k chybám.";
+$a->strings["<h1>What next</h1>"] = "<h1>Co dál<h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři Vašeho webového serveru ale nyní mu to není umožněno.";
+$a->strings["Group created."] = "Skupina vytvořena.";
+$a->strings["Could not create group."] = "Nelze vytvořit skupinu.";
+$a->strings["Group not found."] = "Skupina nenalezena.";
+$a->strings["Group name changed."] = "Název skupiny byl změněn.";
+$a->strings["Save Group"] = "Uložit Skupinu";
+$a->strings["Create a group of contacts/friends."] = "Vytvořit skupinu kontaktů / přátel.";
+$a->strings["Group Name: "] = "Název skupiny: ";
+$a->strings["Group removed."] = "Skupina odstraněna. ";
+$a->strings["Unable to remove group."] = "Nelze odstranit skupinu.";
+$a->strings["Group Editor"] = "Editor skupin";
+$a->strings["Members"] = "Členové";
+$a->strings["No such group"] = "Žádná taková skupina";
+$a->strings["Group is empty"] = "Skupina je prázdná";
+$a->strings["Group: "] = "Skupina: ";
+$a->strings["View in context"] = "Pohled v kontextu";
+$a->strings["Account approved."] = "Účet schválen.";
+$a->strings["Registration revoked for %s"] = "Registrace zrušena pro %s";
+$a->strings["Please login."] = "Přihlaste se, prosím.";
+$a->strings["Profile Match"] = "Shoda profilu";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do Vašeho výchozího profilu.";
+$a->strings["is interested in:"] = "zajímá se o:";
 $a->strings["Unable to locate original post."] = "Nelze nalézt původní příspěvek.";
 $a->strings["Empty post discarded."] = "Prázdný příspěvek odstraněn.";
 $a->strings["System error. Post not saved."] = "Chyba systému. Příspěvek nebyl uložen.";
@@ -1214,173 +1170,188 @@ $a->strings["This message was sent to you by %s, a member of the Friendica socia
 $a->strings["You may visit them online at %s"] = "Můžete je navštívit online na adrese %s";
 $a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam.";
 $a->strings["%s posted an update."] = "%s poslal aktualizaci.";
-$a->strings["{0} wants to be your friend"] = "{0} chce být Vaším přítelem";
-$a->strings["{0} sent you a message"] = "{0} vám poslal zprávu";
-$a->strings["{0} requested registration"] = "{0} požaduje registraci";
-$a->strings["{0} commented %s's post"] = "{0} komentoval příspěvek uživatele %s";
-$a->strings["{0} liked %s's post"] = "{0} má rád příspěvek uživatele %s";
-$a->strings["{0} disliked %s's post"] = "{0} nemá rád příspěvek uživatele %s";
-$a->strings["{0} is now friends with %s"] = "{0} se skamarádil s %s";
-$a->strings["{0} posted"] = "{0} zasláno";
-$a->strings["{0} tagged %s's post with #%s"] = "{0} označen %s' příspěvek s #%s";
-$a->strings["{0} mentioned you in a post"] = "{0} vás zmínil v příspěvku";
-$a->strings["OpenID protocol error. No ID returned."] = "Chyba OpenID protokolu. Navrátilo se žádné ID.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nenalezen účet a OpenID registrace na tomto serveru není dovolena.";
-$a->strings["Login failed."] = "Přihlášení se nezdařilo.";
-$a->strings["Invalid request identifier."] = "Neplatný identifikátor požadavku.";
-$a->strings["Discard"] = "Odstranit";
-$a->strings["System"] = "Systém";
-$a->strings["Network"] = "Síť";
-$a->strings["Introductions"] = "Představení";
-$a->strings["Show Ignored Requests"] = "Zobrazit ignorované žádosti";
-$a->strings["Hide Ignored Requests"] = "Skrýt ignorované žádosti";
-$a->strings["Notification type: "] = "Typ oznámení: ";
-$a->strings["Friend Suggestion"] = "Návrh přátelství";
-$a->strings["suggested by %s"] = "navrhl %s";
-$a->strings["Post a new friend activity"] = "Zveřejnit aktivitu nového přítele.";
-$a->strings["if applicable"] = "je-li použitelné";
-$a->strings["Claims to be known to you: "] = "Vaši údajní známí: ";
-$a->strings["yes"] = "ano";
-$a->strings["no"] = "ne";
-$a->strings["Approve as: "] = "Schválit jako: ";
-$a->strings["Friend"] = "Přítel";
-$a->strings["Sharer"] = "Sdílené";
-$a->strings["Fan/Admirer"] = "Fanoušek / obdivovatel";
-$a->strings["Friend/Connect Request"] = "Přítel / žádost o připojení";
-$a->strings["New Follower"] = "Nový následovník";
-$a->strings["No introductions."] = "Žádné představení.";
-$a->strings["Notifications"] = "Upozornění";
-$a->strings["%s liked %s's post"] = "Uživateli %s se líbí příspěvek uživatele %s";
-$a->strings["%s disliked %s's post"] = "Uživateli %s se nelíbí příspěvek uživatele %s";
-$a->strings["%s is now friends with %s"] = "%s se nyní přátelí s %s";
-$a->strings["%s created a new post"] = "%s vytvořil nový příspěvek";
-$a->strings["%s commented on %s's post"] = "%s okomentoval příspěvek uživatele %s'";
-$a->strings["No more network notifications."] = "Žádné další síťové upozornění.";
-$a->strings["Network Notifications"] = "Upozornění Sítě";
-$a->strings["No more personal notifications."] = "Žádné další osobní upozornění.";
-$a->strings["Personal Notifications"] = "Osobní upozornění";
-$a->strings["No more home notifications."] = "Žádné další domácí upozornění.";
-$a->strings["Home Notifications"] = "Domácí upozornění";
-$a->strings["Total invitation limit exceeded."] = "Celkový limit pozvánek byl překročen";
-$a->strings["%s : Not a valid email address."] = "%s : není platná e-mailová adresa.";
-$a->strings["Please join us on Friendica"] = "Prosím přidejte se k nám na Friendice";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit pozvánek byl překročen. Prosím kontaktujte vašeho administrátora webu.";
-$a->strings["%s : Message delivery failed."] = "%s : Doručení zprávy se nezdařilo.";
-$a->strings["%d message sent."] = array(
-       0 => "%d zpráva odeslána.",
-       1 => "%d zprávy odeslány.",
-       2 => "%d zprávy odeslány.",
-);
-$a->strings["You have no more invitations available"] = "Nemáte k dispozici žádné další pozvánky";
-$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."] = "Navštivte %s pro seznam veřejných serverů, na kterých se můžete přidat. Členové Friendica se mohou navzájem propojovat, stejně tak jako se mohou přiopojit se členy mnoha dalších sociálních sítí.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "K akceptaci této pozvánky prosím navštivte a registrujte se na %s nebo na kterékoliv jiném veřejném Friendica serveru.";
-$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."] = "Friendica servery jsou všechny propojené a vytváří tak rozsáhlou sociální síť s důrazem na soukromý a je pod kontrolou svých členů. Členové se mohou propojovat s mnoha dalšími tradičními sociálními sítěmi. Navštivte %s pro seznam alternativních Friendica serverů kde se můžete přidat.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy.";
-$a->strings["Send invitations"] = "Poslat pozvánky";
-$a->strings["Enter email addresses, one per line:"] = "Zadejte e-mailové adresy, jednu na řádek:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Jste srdečně pozván se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální síť.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Budete muset zadat kód této pozvánky: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu stránku na:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pro více informací o Friendica projektu a o tom, proč je tak důležitý, prosím navštivte http://friendica.com";
-$a->strings["Manage Identities and/or Pages"] = "Správa identit a / nebo stránek";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Přepnutí mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí Vaše detaily účtu, nebo kterým jste přidělili oprávnění nastavovat přístupová práva.";
-$a->strings["Select an identity to manage: "] = "Vyberte identitu pro správu: ";
-$a->strings["Welcome to %s"] = "Vítá Vás %s";
-$a->strings["Friends of %s"] = "Přátelé uživatele %s";
-$a->strings["No friends to display."] = "Žádní přátelé k zobrazení";
-$a->strings["Add New Contact"] = "Přidat nový kontakt";
-$a->strings["Enter address or web location"] = "Zadejte adresu nebo umístění webu";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Příklad: jan@příklad.cz, http://příklad.cz/jana";
-$a->strings["%d invitation available"] = array(
-       0 => "Pozvánka %d k dispozici",
-       1 => "Pozvánky %d k dispozici",
-       2 => "Pozvánky %d k dispozici",
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s je právě %2\$s";
+$a->strings["Mood"] = "Nálada";
+$a->strings["Set your current mood and tell your friends"] = "Nastavte svou aktuální náladu a řekněte to Vašim přátelům";
+$a->strings["Search Results For:"] = "Výsledky hledání pro:";
+$a->strings["add"] = "přidat";
+$a->strings["Commented Order"] = "Dle komentářů";
+$a->strings["Sort by Comment Date"] = "Řadit podle data komentáře";
+$a->strings["Posted Order"] = "Dle data";
+$a->strings["Sort by Post Date"] = "Řadit podle data příspěvku";
+$a->strings["Posts that mention or involve you"] = "Příspěvky, které Vás zmiňují nebo zahrnují";
+$a->strings["New"] = "Nové";
+$a->strings["Activity Stream - by date"] = "Proud aktivit - dle data";
+$a->strings["Shared Links"] = "Sdílené odkazy";
+$a->strings["Interesting Links"] = "Zajímavé odkazy";
+$a->strings["Starred"] = "S hvězdičkou";
+$a->strings["Favourite Posts"] = "Oblíbené přízpěvky";
+$a->strings["Warning: This group contains %s member from an insecure network."] = array(
+       0 => "Upozornění: Tato skupina obsahuje %s člena z nezabezpečené sítě.",
+       1 => "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě.",
+       2 => "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě.",
 );
-$a->strings["Find People"] = "Nalézt lidi";
-$a->strings["Enter name or interest"] = "Zadejte jméno nebo zájmy";
-$a->strings["Connect/Follow"] = "Připojit / Následovat";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Příklady: Robert Morgenstein, rybaření";
-$a->strings["Random Profile"] = "Náhodný Profil";
-$a->strings["Networks"] = "Sítě";
-$a->strings["All Networks"] = "Všechny sítě";
+$a->strings["Private messages to this group are at risk of public disclosure."] = "Soukromé zprávy této skupině jsou vystaveny riziku prozrazení.";
+$a->strings["Contact: "] = "Kontakt: ";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení.";
+$a->strings["Invalid contact."] = "Neplatný kontakt.";
+$a->strings["Contact settings applied."] = "Nastavení kontaktu změněno";
+$a->strings["Contact update failed."] = "Aktualizace kontaktu selhala.";
+$a->strings["Repair Contact Settings"] = "Opravit nastavení kontaktu";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>Varování: Toto je velmi pokročilé</strong> a pokud zadáte nesprávné informace, Vaše komunikace s tímto kontaktem může přestat fungovat.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Prosím použijte <strong>ihned</strong> v prohlížeči tlačítko \"zpět\" pokud si nejste jistí co dělat na této stránce.";
+$a->strings["Return to contact editor"] = "Návrat k editoru kontaktu";
+$a->strings["Account Nickname"] = "Přezdívka účtu";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - upřednostněno před Jménem/Přezdívkou";
+$a->strings["Account URL"] = "URL adresa účtu";
+$a->strings["Friend Request URL"] = "Žádost o přátelství URL";
+$a->strings["Friend Confirm URL"] = "URL adresa potvrzení přátelství";
+$a->strings["Notification Endpoint URL"] = "Notifikační URL adresa";
+$a->strings["Poll/Feed URL"] = "Poll/Feed URL adresa";
+$a->strings["New photo from this URL"] = "Nové foto z této URL adresy";
+$a->strings["Remote Self"] = "Remote Self";
+$a->strings["Mirror postings from this contact"] = "Zrcadlení správ od tohoto kontaktu";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu.";
+$a->strings["Your posts and conversations"] = "Vaše příspěvky a konverzace";
+$a->strings["Your profile page"] = "Vaše profilová stránka";
+$a->strings["Your contacts"] = "Vaše kontakty";
+$a->strings["Your photos"] = "Vaše fotky";
+$a->strings["Your events"] = "Vaše události";
+$a->strings["Personal notes"] = "Osobní poznámky";
+$a->strings["Your personal photos"] = "Vaše osobní fotky";
+$a->strings["Community Pages"] = "Komunitní stránky";
+$a->strings["Community Profiles"] = "Komunitní profily";
+$a->strings["Last users"] = "Poslední uživatelé";
+$a->strings["Last likes"] = "Poslední líbí/nelíbí";
+$a->strings["event"] = "událost";
+$a->strings["Last photos"] = "Poslední fotografie";
+$a->strings["Find Friends"] = "Nalézt Přátele";
+$a->strings["Local Directory"] = "Lokální Adresář";
+$a->strings["Similar Interests"] = "Podobné zájmy";
+$a->strings["Invite Friends"] = "Pozvat přátele";
+$a->strings["Earth Layers"] = "Earth Layers";
+$a->strings["Set zoomfactor for Earth Layers"] = "Nastavit faktor přiblížení pro Earth Layers";
+$a->strings["Set longitude (X) for Earth Layers"] = "Nastavit zeměpistnou délku (X) pro Earth Layers";
+$a->strings["Set latitude (Y) for Earth Layers"] = "Nastavit zeměpistnou šířku (X) pro Earth Layers";
+$a->strings["Help or @NewHere ?"] = "Pomoc nebo @ProNováčky ?";
+$a->strings["Connect Services"] = "Propojené služby";
+$a->strings["don't show"] = "nikdy nezobrazit";
+$a->strings["show"] = "zobrazit";
+$a->strings["Show/hide boxes at right-hand column:"] = "Zobrazit/skrýt boxy na pravém sloupci:";
+$a->strings["Theme settings"] = "Nastavení téma";
+$a->strings["Set font-size for posts and comments"] = "Nastav velikost písma pro přízpěvky a komentáře.";
+$a->strings["Set line-height for posts and comments"] = "Nastav výšku řádku  pro přízpěvky a komentáře.";
+$a->strings["Set resolution for middle column"] = "Nastav rozlišení pro prostřední sloupec";
+$a->strings["Set color scheme"] = "Nastavení barevného schematu";
+$a->strings["Set zoomfactor for Earth Layer"] = "Nastavit přiblížení pro Earth Layer";
+$a->strings["Set style"] = "Nastavit styl";
+$a->strings["Set colour scheme"] = "Nastavit barevné schéma";
+$a->strings["Alignment"] = "Zarovnání";
+$a->strings["Left"] = "Vlevo";
+$a->strings["Center"] = "Uprostřed";
+$a->strings["Color scheme"] = "Barevné schéma";
+$a->strings["Posts font size"] = "Velikost písma u příspěvků";
+$a->strings["Textareas font size"] = "Velikost písma textů";
+$a->strings["Set resize level for images in posts and comments (width and height)"] = "Nastavit velikost fotek v přízpěvcích a komentářích (šířka a výška)";
+$a->strings["Set theme width"] = "Nastavení šířku grafické šablony";
+$a->strings["Delete this item?"] = "Odstranit tuto položku?";
+$a->strings["show fewer"] = "zobrazit méně";
+$a->strings["Update %s failed. See error logs."] = "Aktualizace %s selhala. Zkontrolujte protokol chyb.";
+$a->strings["Update Error at %s"] = "Chyba aktualizace na %s";
+$a->strings["Create a New Account"] = "Vytvořit nový účet";
+$a->strings["Logout"] = "Odhlásit se";
+$a->strings["Login"] = "Přihlásit se";
+$a->strings["Nickname or Email address: "] = "Přezdívka nebo e-mailová adresa:";
+$a->strings["Password: "] = "Heslo: ";
+$a->strings["Remember me"] = "Pamatuj si mne";
+$a->strings["Or login using OpenID: "] = "Nebo přihlášení pomocí OpenID: ";
+$a->strings["Forgot your password?"] = "Zapomněli jste své heslo?";
+$a->strings["Website Terms of Service"] = "Podmínky použití serveru";
+$a->strings["terms of service"] = "podmínky použití";
+$a->strings["Website Privacy Policy"] = "Pravidla ochrany soukromí serveru";
+$a->strings["privacy policy"] = "Ochrana soukromí";
+$a->strings["Requested account is not available."] = "Požadovaný účet není dostupný.";
+$a->strings["Edit profile"] = "Upravit profil";
+$a->strings["Message"] = "Zpráva";
+$a->strings["Profiles"] = "Profily";
+$a->strings["Manage/edit profiles"] = "Spravovat/upravit profily";
+$a->strings["g A l F d"] = "g A l F d";
+$a->strings["F d"] = "d. F";
+$a->strings["[today]"] = "[Dnes]";
+$a->strings["Birthday Reminders"] = "Připomínka narozenin";
+$a->strings["Birthdays this week:"] = "Narozeniny tento týden:";
+$a->strings["[No description]"] = "[Žádný popis]";
+$a->strings["Event Reminders"] = "Připomenutí událostí";
+$a->strings["Events this week:"] = "Události tohoto týdne:";
+$a->strings["Status"] = "Stav";
+$a->strings["Status Messages and Posts"] = "Statusové zprávy a příspěvky ";
+$a->strings["Profile Details"] = "Detaily profilu";
+$a->strings["Videos"] = "Videa";
+$a->strings["Events and Calendar"] = "Události a kalendář";
+$a->strings["Only You Can See This"] = "Toto můžete vidět jen Vy";
+$a->strings["General Features"] = "Obecné funkčnosti";
+$a->strings["Multiple Profiles"] = "Vícenásobné profily";
+$a->strings["Ability to create multiple profiles"] = "Schopnost vytvořit vícenásobné profily";
+$a->strings["Post Composition Features"] = "Nastavení vytváření příspěvků";
+$a->strings["Richtext Editor"] = "Richtext Editor";
+$a->strings["Enable richtext editor"] = "Povolit richtext editor";
+$a->strings["Post Preview"] = "Náhled příspěvku";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Povolit náhledy příspěvků a komentářů před jejich zveřejněním";
+$a->strings["Auto-mention Forums"] = "Automaticky zmíněná Fóra";
+$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně";
+$a->strings["Network Sidebar Widgets"] = "Síťové postranní widgety";
+$a->strings["Search by Date"] = "Vyhledávat dle Data";
+$a->strings["Ability to select posts by date ranges"] = "Možnost označit příspěvky dle časového intervalu";
+$a->strings["Group Filter"] = "Skupinový Filtr";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny";
+$a->strings["Network Filter"] = "Síťový Filtr";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě";
+$a->strings["Save search terms for re-use"] = "Uložit kritéria vyhledávání pro znovupoužití";
+$a->strings["Network Tabs"] = "Síťové záložky";
+$a->strings["Network Personal Tab"] = "Osobní síťový záložka ";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval ";
+$a->strings["Network New Tab"] = "Nová záložka síť";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)";
+$a->strings["Network Shared Links Tab"] = "záložka Síťové sdílené odkazy ";
+$a->strings["Enable tab to display only Network posts with links in them"] = "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně";
+$a->strings["Post/Comment Tools"] = "Nástroje Příspěvků/Komentářů";
+$a->strings["Multiple Deletion"] = "Násobné mazání";
+$a->strings["Select and delete multiple posts/comments at once"] = "Označit a smazat více ";
+$a->strings["Edit Sent Posts"] = "Editovat Odeslané příspěvky";
+$a->strings["Edit and correct posts and comments after sending"] = "Editovat a opravit příspěvky a komentáře po odeslání";
+$a->strings["Tagging"] = "Štítkování";
+$a->strings["Ability to tag existing posts"] = "Schopnost přidat štítky ke stávajícím příspvěkům";
+$a->strings["Post Categories"] = "Kategorie příspěvků";
+$a->strings["Add categories to your posts"] = "Přidat kategorie k Vašim příspěvkům";
 $a->strings["Saved Folders"] = "Uložené složky";
-$a->strings["Everything"] = "Všechno";
-$a->strings["Categories"] = "Kategorie";
-$a->strings["Click here to upgrade."] = "Klikněte zde pro aktualizaci.";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "Tato akce překročí limit nastavené Vaším předplatným.";
-$a->strings["This action is not available under your subscription plan."] = "Tato akce není v rámci Vašeho předplatného dostupná.";
-$a->strings["User not found."] = "Uživatel nenalezen";
-$a->strings["There is no status with this id."] = "Není tu žádný status s tímto id.";
-$a->strings["view full size"] = "zobrazit v plné velikosti";
-$a->strings["Starts:"] = "Začíná:";
-$a->strings["Finishes:"] = "Končí:";
-$a->strings["(no subject)"] = "(Bez předmětu)";
-$a->strings["noreply"] = "neodpovídat";
-$a->strings["An invitation is required."] = "Pozvánka je vyžadována.";
-$a->strings["Invitation could not be verified."] = "Pozvánka nemohla být ověřena.";
-$a->strings["Invalid OpenID url"] = "Neplatný odkaz OpenID";
+$a->strings["Ability to file posts under folders"] = "Možnost řadit příspěvky do složek";
+$a->strings["Dislike Posts"] = "Označit příspěvky jako neoblíbené";
+$a->strings["Ability to dislike posts/comments"] = "Možnost označit příspěvky/komentáře jako neoblíbené";
+$a->strings["Star Posts"] = "Příspěvky s hvězdou";
+$a->strings["Ability to mark special posts with a star indicator"] = "Možnost označit příspěvky s indikátorem hvězdy";
+$a->strings["Logged out."] = "Odhlášen.";
 $a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Zaznamenali jsme problém s Vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. ";
 $a->strings["The error message was:"] = "Chybová zpráva byla:";
-$a->strings["Please enter the required information."] = "Zadejte prosím požadované informace.";
-$a->strings["Please use a shorter name."] = "Použijte prosím kratší jméno.";
-$a->strings["Name too short."] = "Jméno je příliš krátké.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení).";
-$a->strings["Your email domain is not among those allowed on this site."] = "Váš e-mailová doména není na tomto serveru mezi povolenými.";
-$a->strings["Not a valid email address."] = "Neplatná e-mailová adresa.";
-$a->strings["Cannot use that email."] = "Tento e-mail nelze použít.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", \"-\", a \"_\", a musí začínat písmenem.";
-$a->strings["Nickname is already registered. Please choose another."] = "Přezdívka je již registrována. Prosím vyberte jinou.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Tato přezdívka již zde byla použita a nemůže být využita znovu. Prosím vyberete si jinou.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo.";
-$a->strings["An error occurred during registration. Please try again."] = "Došlo k chybě při registraci. Zkuste to prosím znovu.";
-$a->strings["An error occurred creating your default profile. Please try again."] = "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu.";
-$a->strings["Friends"] = "Přátelé";
-$a->strings["%1\$s poked %2\$s"] = "%1\$s šťouchnul %2\$s";
-$a->strings["poked"] = "šťouchnut";
-$a->strings["post/item"] = "příspěvek/položka";
-$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "uživatel %1\$s označil %2\$s's %3\$s jako oblíbeného";
-$a->strings["remove"] = "odstranit";
-$a->strings["Delete Selected Items"] = "Smazat vybrané položky";
-$a->strings["Follow Thread"] = "Následovat vlákno";
-$a->strings["View Status"] = "Zobrazit Status";
-$a->strings["View Profile"] = "Zobrazit Profil";
-$a->strings["View Photos"] = "Zobrazit Fotky";
-$a->strings["Network Posts"] = "Zobrazit Příspěvky sítě";
-$a->strings["Edit Contact"] = "Editovat Kontakty";
-$a->strings["Send PM"] = "Poslat soukromou zprávu";
-$a->strings["Poke"] = "Šťouchnout";
-$a->strings["%s likes this."] = "%s se to líbí.";
-$a->strings["%s doesn't like this."] = "%s se to nelíbí.";
-$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d lidem</span> se to líbí";
-$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d lidem</span> se to nelíbí";
-$a->strings["and"] = "a";
-$a->strings[", and %d other people"] = ", a %d dalších lidí";
-$a->strings["%s like this."] = "%s se to líbí.";
-$a->strings["%s don't like this."] = "%s se to nelíbí.";
-$a->strings["Visible to <strong>everybody</strong>"] = "Viditelné pro <strong>všechny</strong>";
-$a->strings["Please enter a video link/URL:"] = "Prosím zadejte URL adresu videa:";
-$a->strings["Please enter an audio link/URL:"] = "Prosím zadejte URL adresu zvukového záznamu:";
-$a->strings["Tag term:"] = "Štítek:";
-$a->strings["Where are you right now?"] = "Kde právě jste?";
-$a->strings["Delete item(s)?"] = "Smazat položku(y)?";
-$a->strings["Post to Email"] = "Poslat příspěvek na e-mail";
-$a->strings["permissions"] = "oprávnění";
-$a->strings["Post to Groups"] = "Zveřejnit na Groups";
-$a->strings["Post to Contacts"] = "Zveřejnit na Groups";
-$a->strings["Private post"] = "Soukromý příspěvek";
-$a->strings["Logged out."] = "Odhlášen.";
-$a->strings["Error decoding account file"] = "Chyba dekódování uživatelského účtu";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?";
-$a->strings["Error! Cannot check nickname"] = "Chyba! Nelze ověřit přezdívku";
-$a->strings["User '%s' already exists on this server!"] = "Uživatel '%s' již na tomto serveru existuje!";
-$a->strings["User creation error"] = "Chyba vytváření uživatele";
-$a->strings["User profile creation error"] = "Chyba vytváření uživatelského účtu";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d kontakt nenaimporován",
-       1 => "%d kontaktů nenaimporováno",
-       2 => "%d kontakty nenaimporovány",
-);
-$a->strings["Done. You can now login with your username and password"] = "Hotovo. Nyní  se můžete přihlásit se svými uživatelským účtem a heslem";
+$a->strings["Starts:"] = "Začíná:";
+$a->strings["Finishes:"] = "Končí:";
+$a->strings["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "Narozeniny:";
+$a->strings["Age:"] = "Věk:";
+$a->strings["for %1\$d %2\$s"] = "pro %1\$d %2\$s";
+$a->strings["Tags:"] = "Štítky:";
+$a->strings["Religion:"] = "Náboženství:";
+$a->strings["Hobbies/Interests:"] = "Koníčky/zájmy:";
+$a->strings["Contact information and Social Networks:"] = "Kontaktní informace a sociální sítě:";
+$a->strings["Musical interests:"] = "Hudební vkus:";
+$a->strings["Books, literature:"] = "Knihy, literatura:";
+$a->strings["Television:"] = "Televize:";
+$a->strings["Film/dance/culture/entertainment:"] = "Film/tanec/kultura/zábava:";
+$a->strings["Love/Romance:"] = "Láska/romance";
+$a->strings["Work/employment:"] = "Práce/zaměstnání:";
+$a->strings["School/education:"] = "Škola/vzdělávání:";
+$a->strings["[no subject]"] = "[bez předmětu]";
+$a->strings[" on Last.fm"] = " na Last.fm";
 $a->strings["newer"] = "novější";
 $a->strings["older"] = "starší";
 $a->strings["prev"] = "předchozí";
@@ -1394,6 +1365,7 @@ $a->strings["%d Contact"] = array(
        2 => "%d kontaktů",
 );
 $a->strings["poke"] = "šťouchnout";
+$a->strings["poked"] = "šťouchnut";
 $a->strings["ping"] = "cinknout";
 $a->strings["pinged"] = "cinkut";
 $a->strings["prod"] = "pobídnout";
@@ -1445,200 +1417,37 @@ $a->strings["November"] = "Listopadu";
 $a->strings["December"] = "Prosinec";
 $a->strings["bytes"] = "bytů";
 $a->strings["Click to open/close"] = "Klikněte pro otevření/zavření";
+$a->strings["default"] = "standardní";
 $a->strings["Select an alternate language"] = "Vyběr alternativního jazyka";
 $a->strings["activity"] = "aktivita";
 $a->strings["post"] = "příspěvek";
 $a->strings["Item filed"] = "Položka vyplněna";
-$a->strings["Friendica Notification"] = "Friendica Notifikace";
-$a->strings["Thank You,"] = "Děkujeme, ";
-$a->strings["%s Administrator"] = "%s Administrátor";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Upozornění] Obdržena nová zpráva na %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s Vám poslal novou soukromou zprávu na %2\$s.";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s Vám poslal %2\$s.";
-$a->strings["a private message"] = "soukromá zpráva";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Prosím navštivte %s pro zobrazení Vašich soukromých zpráv a možnost na ně odpovědět.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]%3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]%3\$s's %4\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]Váš %3\$s[/url]";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Upozornění] Komentář ke konverzaci #%1\$d od %2\$s";
-$a->strings["%s commented on an item/conversation you have been following."] = "Uživatel %s okomentoval vámi sledovanou položku/konverzaci.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět.";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s přidal příspěvek na Vaši profilovou zeď na %2\$s";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s napřidáno na [url=%2\$s]na Vaši zeď[/url]";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Upozornění] %s Vás označil";
-$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s Vás označil na %2\$s";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]Vás označil[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Upozornění] %1\$s Vás šťouchnul";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s Vás šťouchnul na %2\$s";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "Uživatel %1\$s [url=%2\$s]Vás šťouchnul[/url].";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Upozornění] %s označil Váš příspěvek";
-$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s označil Váš příspěvek na %2\$s";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s označil [url=%2\$s]Váš příspěvek[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Upozornění] Obdrženo přestavení";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Obdržel jste žádost o spojení od '%1\$s' na %2\$s";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Obdržel jste [url=%1\$s]žádost o spojení[/url] od %2\$s.";
-$a->strings["You may visit their profile at %s"] = "Můžete navštívit jejich profil na %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Prosím navštivte %s pro schválení či zamítnutí představení.";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Upozornění] Obdržen návrh na přátelství";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Obdržel jste návrh přátelství od '%1\$s' na %2\$s";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Obdržel jste [url=%1\$s]návrh přátelství[/url] s %2\$s from %3\$s.";
-$a->strings["Name:"] = "Jméno:";
-$a->strings["Photo:"] = "Foto:";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Prosím navštivte %s pro schválení či zamítnutí doporučení.";
-$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."] = "Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění <strong>může</ strong> ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěli, vytvořte, prosím,  další skupinu s jiným názvem.";
-$a->strings["Default privacy group for new contacts"] = "Defaultní soukromá skrupina pro nové kontakty.";
-$a->strings["Everybody"] = "Všichni";
-$a->strings["edit"] = "editovat";
-$a->strings["Edit group"] = "Editovat skupinu";
-$a->strings["Create a new group"] = "Vytvořit novou skupinu";
-$a->strings["Contacts not in any group"] = "Kontakty, které nejsou v žádné skupině";
-$a->strings["Connect URL missing."] = "Chybí URL adresa.";
-$a->strings["This site is not configured to allow communications with other networks."] = "Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Nenalezen žádný kompatibilní komunikační protokol nebo kanál.";
-$a->strings["The profile address specified does not provide adequate information."] = "Uvedená adresa profilu neposkytuje dostatečné informace.";
-$a->strings["An author or name was not found."] = "Autor nebo jméno nenalezeno";
-$a->strings["No browser URL could be matched to this address."] = "Této adrese neodpovídá žádné URL prohlížeče.";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem.";
-$a->strings["Use mailto: in front of address to force email check."] = "Použite mailo: před adresou k vynucení emailové kontroly.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Zadaná adresa profilu patří do sítě, která  byla na tomto serveru zakázána.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé / osobní sdělení.";
-$a->strings["Unable to retrieve contact information."] = "Nepodařilo se získat kontaktní informace.";
-$a->strings["following"] = "následující";
-$a->strings["[no subject]"] = "[bez předmětu]";
-$a->strings["End this session"] = "Konec této relace";
-$a->strings["Sign in"] = "Přihlásit se";
-$a->strings["Home Page"] = "Domácí stránka";
-$a->strings["Create an account"] = "Vytvořit účet";
-$a->strings["Help and documentation"] = "Nápověda a dokumentace";
-$a->strings["Apps"] = "Aplikace";
-$a->strings["Addon applications, utilities, games"] = "Doplňkové aplikace, nástroje, hry";
-$a->strings["Search site content"] = "Hledání na stránkách tohoto webu";
-$a->strings["Conversations on this site"] = "Konverzace na tomto webu";
-$a->strings["Directory"] = "Adresář";
-$a->strings["People directory"] = "Adresář";
-$a->strings["Conversations from your friends"] = "Konverzace od Vašich přátel";
-$a->strings["Network Reset"] = "Síťový Reset";
-$a->strings["Load Network page with no filters"] = "Načíst stránku Síť bez filtrů";
-$a->strings["Friend Requests"] = "Žádosti přátel";
-$a->strings["See all notifications"] = "Zobrazit všechny upozornění";
-$a->strings["Mark all system notifications seen"] = "Označit všechny upozornění systému jako přečtené";
-$a->strings["Private mail"] = "Soukromá pošta";
-$a->strings["Inbox"] = "Doručená pošta";
-$a->strings["Outbox"] = "Odeslaná pošta";
-$a->strings["Manage"] = "Spravovat";
-$a->strings["Manage other pages"] = "Spravovat jiné stránky";
-$a->strings["Delegations"] = "Delegace";
-$a->strings["Manage/Edit Profiles"] = "Spravovat/Editovat Profily";
-$a->strings["Manage/edit friends and contacts"] = "Spravovat/upravit přátelé a kontakty";
-$a->strings["Site setup and configuration"] = "Nastavení webu a konfigurace";
-$a->strings["Navigation"] = "Navigace";
-$a->strings["Site map"] = "Mapa webu";
-$a->strings["j F, Y"] = "j F, Y";
-$a->strings["j F"] = "j F";
-$a->strings["Birthday:"] = "Narozeniny:";
-$a->strings["Age:"] = "Věk:";
-$a->strings["for %1\$d %2\$s"] = "pro %1\$d %2\$s";
-$a->strings["Tags:"] = "Štítky:";
-$a->strings["Religion:"] = "Náboženství:";
-$a->strings["Hobbies/Interests:"] = "Koníčky/zájmy:";
-$a->strings["Contact information and Social Networks:"] = "Kontaktní informace a sociální sítě:";
-$a->strings["Musical interests:"] = "Hudební vkus:";
-$a->strings["Books, literature:"] = "Knihy, literatura:";
-$a->strings["Television:"] = "Televize:";
-$a->strings["Film/dance/culture/entertainment:"] = "Film/tanec/kultura/zábava:";
-$a->strings["Love/Romance:"] = "Láska/romance";
-$a->strings["Work/employment:"] = "Práce/zaměstnání:";
-$a->strings["School/education:"] = "Škola/vzdělávání:";
-$a->strings["Image/photo"] = "Obrázek/fotografie";
-$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "<span><a href=\"%s\" target=\"external-link\">%s</a> napsal následující  <a href=\"%s\" target=\"external-link\">příspěvek</a>";
-$a->strings["$1 wrote:"] = "$1 napsal:";
-$a->strings["Encrypted content"] = "Šifrovaný obsah";
-$a->strings["Unknown | Not categorised"] = "Neznámé | Nezařazeno";
-$a->strings["Block immediately"] = "Okamžitě blokovat ";
-$a->strings["Shady, spammer, self-marketer"] = "pochybný, spammer, self-makerter";
-$a->strings["Known to me, but no opinion"] = "Znám ho ale, ale bez rozhodnutí";
-$a->strings["OK, probably harmless"] = "OK, pravděpodobně neškodný";
-$a->strings["Reputable, has my trust"] = "Renomovaný, má mou důvěru";
-$a->strings["Weekly"] = "Týdenně";
-$a->strings["Monthly"] = "Měsíčně";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Zot!"] = "Zot!";
-$a->strings["LinkedIn"] = "LinkedIn";
-$a->strings["XMPP/IM"] = "XMPP/IM";
-$a->strings["MySpace"] = "MySpace";
-$a->strings["Google+"] = "Google+";
-$a->strings["pump.io"] = "pump.io";
-$a->strings["Twitter"] = "Twitter";
-$a->strings["Miscellaneous"] = "Různé";
-$a->strings["year"] = "rok";
-$a->strings["month"] = "měsíc";
-$a->strings["day"] = "den";
-$a->strings["never"] = "nikdy";
-$a->strings["less than a second ago"] = "méně než před sekundou";
-$a->strings["years"] = "let";
-$a->strings["months"] = "měsíců";
-$a->strings["week"] = "týdnem";
-$a->strings["weeks"] = "týdny";
-$a->strings["days"] = "dnů";
-$a->strings["hour"] = "hodina";
-$a->strings["hours"] = "hodin";
-$a->strings["minute"] = "minuta";
-$a->strings["minutes"] = "minut";
-$a->strings["second"] = "sekunda";
-$a->strings["seconds"] = "sekund";
-$a->strings["%1\$d %2\$s ago"] = "před %1\$d %2\$s";
+$a->strings["User not found."] = "Uživatel nenalezen";
+$a->strings["There is no status with this id."] = "Není tu žádný status s tímto id.";
+$a->strings["There is no conversation with this id."] = "Nemáme žádnou konverzaci s tímto id.";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Nelze nalézt záznam v DNS pro databázový server '%s'";
 $a->strings["%s's birthday"] = "%s má narozeniny";
 $a->strings["Happy Birthday %s"] = "Veselé narozeniny %s";
-$a->strings["General Features"] = "Obecné funkčnosti";
-$a->strings["Multiple Profiles"] = "Vícenásobné profily";
-$a->strings["Ability to create multiple profiles"] = "Schopnost vytvořit vícenásobné profily";
-$a->strings["Post Composition Features"] = "Nastavení vytváření příspěvků";
-$a->strings["Richtext Editor"] = "Richtext Editor";
-$a->strings["Enable richtext editor"] = "Povolit richtext editor";
-$a->strings["Post Preview"] = "Náhled příspěvku";
-$a->strings["Allow previewing posts and comments before publishing them"] = "Povolit náhledy příspěvků a komentářů před jejich zveřejněním";
-$a->strings["Network Sidebar Widgets"] = "Síťové postranní widgety";
-$a->strings["Search by Date"] = "Vyhledávat dle Data";
-$a->strings["Ability to select posts by date ranges"] = "Možnost označit příspěvky dle časového intervalu";
-$a->strings["Group Filter"] = "Skupinový Filtr";
-$a->strings["Enable widget to display Network posts only from selected group"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny";
-$a->strings["Network Filter"] = "Síťový Filtr";
-$a->strings["Enable widget to display Network posts only from selected network"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě";
-$a->strings["Save search terms for re-use"] = "Uložit kritéria vyhledávání pro znovupoužití";
-$a->strings["Network Tabs"] = "Síťové záložky";
-$a->strings["Network Personal Tab"] = "Osobní síťový záložka ";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval ";
-$a->strings["Network New Tab"] = "Nová záložka síť";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)";
-$a->strings["Network Shared Links Tab"] = "záložka Síťové sdílené odkazy ";
-$a->strings["Enable tab to display only Network posts with links in them"] = "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně";
-$a->strings["Post/Comment Tools"] = "Nástroje Příspěvků/Komentářů";
-$a->strings["Multiple Deletion"] = "Násobné mazání";
-$a->strings["Select and delete multiple posts/comments at once"] = "Označit a smazat více ";
-$a->strings["Edit Sent Posts"] = "Editovat Odeslané příspěvky";
-$a->strings["Edit and correct posts and comments after sending"] = "Editovat a opravit příspěvky a komentáře po odeslání";
-$a->strings["Tagging"] = "Štítkování";
-$a->strings["Ability to tag existing posts"] = "Schopnost přidat štítky ke stávajícím příspvěkům";
-$a->strings["Post Categories"] = "Kategorie příspěvků";
-$a->strings["Add categories to your posts"] = "Přidat kategorie k Vašim příspěvkům";
-$a->strings["Ability to file posts under folders"] = "Možnost řadit příspěvky do složek";
-$a->strings["Dislike Posts"] = "Označit příspěvky jako neoblíbené";
-$a->strings["Ability to dislike posts/comments"] = "Možnost označit příspěvky/komentáře jako neoblíbené";
-$a->strings["Star Posts"] = "Příspěvky s hvězdou";
-$a->strings["Ability to mark special posts with a star indicator"] = "Možnost označit příspěvky s indikátorem hvězdy";
-$a->strings["Sharing notification from Diaspora network"] = "Sdílení oznámení ze sítě Diaspora";
-$a->strings["Attachments:"] = "Přílohy:";
-$a->strings["Visible to everybody"] = "Viditelné pro všechny";
 $a->strings["A new person is sharing with you at "] = "Nový člověk si s vámi sdílí na";
 $a->strings["You have a new follower at "] = "Máte nového následovníka na";
 $a->strings["Do you really want to delete this item?"] = "Opravdu chcete smazat tuto položku?";
 $a->strings["Archives"] = "Archív";
-$a->strings["Embedded content"] = "vložený obsah";
-$a->strings["Embedding disabled"] = "Vkládání zakázáno";
+$a->strings["(no subject)"] = "(Bez předmětu)";
+$a->strings["noreply"] = "neodpovídat";
+$a->strings["Sharing notification from Diaspora network"] = "Sdílení oznámení ze sítě Diaspora";
+$a->strings["Attachments:"] = "Přílohy:";
+$a->strings["Connect URL missing."] = "Chybí URL adresa.";
+$a->strings["This site is not configured to allow communications with other networks."] = "Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Nenalezen žádný kompatibilní komunikační protokol nebo kanál.";
+$a->strings["The profile address specified does not provide adequate information."] = "Uvedená adresa profilu neposkytuje dostatečné informace.";
+$a->strings["An author or name was not found."] = "Autor nebo jméno nenalezeno";
+$a->strings["No browser URL could be matched to this address."] = "Této adrese neodpovídá žádné URL prohlížeče.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem.";
+$a->strings["Use mailto: in front of address to force email check."] = "Použite mailo: před adresou k vynucení emailové kontroly.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Zadaná adresa profilu patří do sítě, která  byla na tomto serveru zakázána.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé / osobní sdělení.";
+$a->strings["Unable to retrieve contact information."] = "Nepodařilo se získat kontaktní informace.";
+$a->strings["following"] = "následující";
 $a->strings["Welcome "] = "Vítejte ";
 $a->strings["Please upload a profile photo."] = "Prosím nahrejte profilovou fotografii";
 $a->strings["Welcome back "] = "Vítejte zpět ";
@@ -1679,6 +1488,7 @@ $a->strings["Infatuated"] = "Zabouchnutý";
 $a->strings["Dating"] = "Seznamující se";
 $a->strings["Unfaithful"] = "Nevěrný";
 $a->strings["Sex Addict"] = "Závislý na sexu";
+$a->strings["Friends"] = "Přátelé";
 $a->strings["Friends/Benefits"] = "Přátelé / výhody";
 $a->strings["Casual"] = "Ležérní";
 $a->strings["Engaged"] = "Zadaný";
@@ -1700,6 +1510,210 @@ $a->strings["Uncertain"] = "Nejistý";
 $a->strings["It's complicated"] = "Je to složité";
 $a->strings["Don't care"] = "Nezajímá";
 $a->strings["Ask me"] = "Zeptej se mě";
+$a->strings["Error decoding account file"] = "Chyba dekódování uživatelského účtu";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?";
+$a->strings["Error! Cannot check nickname"] = "Chyba! Nelze ověřit přezdívku";
+$a->strings["User '%s' already exists on this server!"] = "Uživatel '%s' již na tomto serveru existuje!";
+$a->strings["User creation error"] = "Chyba vytváření uživatele";
+$a->strings["User profile creation error"] = "Chyba vytváření uživatelského účtu";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d kontakt nenaimporován",
+       1 => "%d kontaktů nenaimporováno",
+       2 => "%d kontakty nenaimporovány",
+);
+$a->strings["Done. You can now login with your username and password"] = "Hotovo. Nyní  se můžete přihlásit se svými uživatelským účtem a heslem";
+$a->strings["Click here to upgrade."] = "Klikněte zde pro aktualizaci.";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Tato akce překročí limit nastavené Vaším předplatným.";
+$a->strings["This action is not available under your subscription plan."] = "Tato akce není v rámci Vašeho předplatného dostupná.";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s šťouchnul %2\$s";
+$a->strings["post/item"] = "příspěvek/položka";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "uživatel %1\$s označil %2\$s's %3\$s jako oblíbeného";
+$a->strings["remove"] = "odstranit";
+$a->strings["Delete Selected Items"] = "Smazat vybrané položky";
+$a->strings["Follow Thread"] = "Následovat vlákno";
+$a->strings["View Status"] = "Zobrazit Status";
+$a->strings["View Profile"] = "Zobrazit Profil";
+$a->strings["View Photos"] = "Zobrazit Fotky";
+$a->strings["Network Posts"] = "Zobrazit Příspěvky sítě";
+$a->strings["Edit Contact"] = "Editovat Kontakty";
+$a->strings["Send PM"] = "Poslat soukromou zprávu";
+$a->strings["Poke"] = "Šťouchnout";
+$a->strings["%s likes this."] = "%s se to líbí.";
+$a->strings["%s doesn't like this."] = "%s se to nelíbí.";
+$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d lidem</span> se to líbí";
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d lidem</span> se to nelíbí";
+$a->strings["and"] = "a";
+$a->strings[", and %d other people"] = ", a %d dalších lidí";
+$a->strings["%s like this."] = "%s se to líbí.";
+$a->strings["%s don't like this."] = "%s se to nelíbí.";
+$a->strings["Visible to <strong>everybody</strong>"] = "Viditelné pro <strong>všechny</strong>";
+$a->strings["Please enter a video link/URL:"] = "Prosím zadejte URL adresu videa:";
+$a->strings["Please enter an audio link/URL:"] = "Prosím zadejte URL adresu zvukového záznamu:";
+$a->strings["Tag term:"] = "Štítek:";
+$a->strings["Where are you right now?"] = "Kde právě jste?";
+$a->strings["Delete item(s)?"] = "Smazat položku(y)?";
+$a->strings["Post to Email"] = "Poslat příspěvek na e-mail";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Kontektory deaktivovány, od \"%s\" je aktivován.";
+$a->strings["permissions"] = "oprávnění";
+$a->strings["Post to Groups"] = "Zveřejnit na Groups";
+$a->strings["Post to Contacts"] = "Zveřejnit na Groups";
+$a->strings["Private post"] = "Soukromý příspěvek";
+$a->strings["Add New Contact"] = "Přidat nový kontakt";
+$a->strings["Enter address or web location"] = "Zadejte adresu nebo umístění webu";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Příklad: jan@příklad.cz, http://příklad.cz/jana";
+$a->strings["%d invitation available"] = array(
+       0 => "Pozvánka %d k dispozici",
+       1 => "Pozvánky %d k dispozici",
+       2 => "Pozvánky %d k dispozici",
+);
+$a->strings["Find People"] = "Nalézt lidi";
+$a->strings["Enter name or interest"] = "Zadejte jméno nebo zájmy";
+$a->strings["Connect/Follow"] = "Připojit / Následovat";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Příklady: Robert Morgenstein, rybaření";
+$a->strings["Random Profile"] = "Náhodný Profil";
+$a->strings["Networks"] = "Sítě";
+$a->strings["All Networks"] = "Všechny sítě";
+$a->strings["Everything"] = "Všechno";
+$a->strings["Categories"] = "Kategorie";
+$a->strings["End this session"] = "Konec této relace";
+$a->strings["Sign in"] = "Přihlásit se";
+$a->strings["Home Page"] = "Domácí stránka";
+$a->strings["Create an account"] = "Vytvořit účet";
+$a->strings["Help and documentation"] = "Nápověda a dokumentace";
+$a->strings["Apps"] = "Aplikace";
+$a->strings["Addon applications, utilities, games"] = "Doplňkové aplikace, nástroje, hry";
+$a->strings["Search site content"] = "Hledání na stránkách tohoto webu";
+$a->strings["Conversations on this site"] = "Konverzace na tomto webu";
+$a->strings["Directory"] = "Adresář";
+$a->strings["People directory"] = "Adresář";
+$a->strings["Information"] = "Informace";
+$a->strings["Information about this friendica instance"] = "Informace o této instanci Friendica";
+$a->strings["Conversations from your friends"] = "Konverzace od Vašich přátel";
+$a->strings["Network Reset"] = "Síťový Reset";
+$a->strings["Load Network page with no filters"] = "Načíst stránku Síť bez filtrů";
+$a->strings["Friend Requests"] = "Žádosti přátel";
+$a->strings["See all notifications"] = "Zobrazit všechny upozornění";
+$a->strings["Mark all system notifications seen"] = "Označit všechny upozornění systému jako přečtené";
+$a->strings["Private mail"] = "Soukromá pošta";
+$a->strings["Inbox"] = "Doručená pošta";
+$a->strings["Outbox"] = "Odeslaná pošta";
+$a->strings["Manage"] = "Spravovat";
+$a->strings["Manage other pages"] = "Spravovat jiné stránky";
+$a->strings["Account settings"] = "Nastavení účtu";
+$a->strings["Manage/Edit Profiles"] = "Spravovat/Editovat Profily";
+$a->strings["Manage/edit friends and contacts"] = "Spravovat/upravit přátelé a kontakty";
+$a->strings["Site setup and configuration"] = "Nastavení webu a konfigurace";
+$a->strings["Navigation"] = "Navigace";
+$a->strings["Site map"] = "Mapa webu";
+$a->strings["Unknown | Not categorised"] = "Neznámé | Nezařazeno";
+$a->strings["Block immediately"] = "Okamžitě blokovat ";
+$a->strings["Shady, spammer, self-marketer"] = "pochybný, spammer, self-makerter";
+$a->strings["Known to me, but no opinion"] = "Znám ho ale, ale bez rozhodnutí";
+$a->strings["OK, probably harmless"] = "OK, pravděpodobně neškodný";
+$a->strings["Reputable, has my trust"] = "Renomovaný, má mou důvěru";
+$a->strings["Weekly"] = "Týdenně";
+$a->strings["Monthly"] = "Měsíčně";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Zot!"] = "Zot!";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "Google+";
+$a->strings["pump.io"] = "pump.io";
+$a->strings["Twitter"] = "Twitter";
+$a->strings["Diaspora Connector"] = "Diaspora konektor";
+$a->strings["Statusnet"] = "Statusnet";
+$a->strings["Friendica Notification"] = "Friendica Notifikace";
+$a->strings["Thank You,"] = "Děkujeme, ";
+$a->strings["%s Administrator"] = "%s Administrátor";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Upozornění] Obdržena nová zpráva na %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s Vám poslal novou soukromou zprávu na %2\$s.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s Vám poslal %2\$s.";
+$a->strings["a private message"] = "soukromá zpráva";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Prosím navštivte %s pro zobrazení Vašich soukromých zpráv a možnost na ně odpovědět.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]%3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]%3\$s's %4\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]Váš %3\$s[/url]";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Upozornění] Komentář ke konverzaci #%1\$d od %2\$s";
+$a->strings["%s commented on an item/conversation you have been following."] = "Uživatel %s okomentoval vámi sledovanou položku/konverzaci.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět.";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s přidal příspěvek na Vaši profilovou zeď na %2\$s";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s napřidáno na [url=%2\$s]na Vaši zeď[/url]";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Upozornění] %s Vás označil";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s Vás označil na %2\$s";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]Vás označil[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s nasdílel nový příspěvek";
+$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s nasdílel nový příspěvek na %2\$s";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]nasdílel příspěvek[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Upozornění] %1\$s Vás šťouchnul";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s Vás šťouchnul na %2\$s";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "Uživatel %1\$s [url=%2\$s]Vás šťouchnul[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Upozornění] %s označil Váš příspěvek";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s označil Váš příspěvek na %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s označil [url=%2\$s]Váš příspěvek[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Upozornění] Obdrženo přestavení";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Obdržel jste žádost o spojení od '%1\$s' na %2\$s";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Obdržel jste [url=%1\$s]žádost o spojení[/url] od %2\$s.";
+$a->strings["You may visit their profile at %s"] = "Můžete navštívit jejich profil na %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Prosím navštivte %s pro schválení či zamítnutí představení.";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Upozornění] Obdržen návrh na přátelství";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Obdržel jste návrh přátelství od '%1\$s' na %2\$s";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Obdržel jste [url=%1\$s]návrh přátelství[/url] s %2\$s from %3\$s.";
+$a->strings["Name:"] = "Jméno:";
+$a->strings["Photo:"] = "Foto:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Prosím navštivte %s pro schválení či zamítnutí doporučení.";
+$a->strings["An invitation is required."] = "Pozvánka je vyžadována.";
+$a->strings["Invitation could not be verified."] = "Pozvánka nemohla být ověřena.";
+$a->strings["Invalid OpenID url"] = "Neplatný odkaz OpenID";
+$a->strings["Please enter the required information."] = "Zadejte prosím požadované informace.";
+$a->strings["Please use a shorter name."] = "Použijte prosím kratší jméno.";
+$a->strings["Name too short."] = "Jméno je příliš krátké.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení).";
+$a->strings["Your email domain is not among those allowed on this site."] = "Váš e-mailová doména není na tomto serveru mezi povolenými.";
+$a->strings["Not a valid email address."] = "Neplatná e-mailová adresa.";
+$a->strings["Cannot use that email."] = "Tento e-mail nelze použít.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", \"-\", a \"_\", a musí začínat písmenem.";
+$a->strings["Nickname is already registered. Please choose another."] = "Přezdívka je již registrována. Prosím vyberte jinou.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Tato přezdívka již zde byla použita a nemůže být využita znovu. Prosím vyberete si jinou.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo.";
+$a->strings["An error occurred during registration. Please try again."] = "Došlo k chybě při registraci. Zkuste to prosím znovu.";
+$a->strings["An error occurred creating your default profile. Please try again."] = "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu.";
+$a->strings["Visible to everybody"] = "Viditelné pro všechny";
+$a->strings["Image/photo"] = "Obrázek/fotografie";
+$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "<span><a href=\"%s\" target=\"_blank\">%s</a> napsal následující <a href=\"%s\" target=\"_blank\">příspěvek</a>";
+$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
+$a->strings["$1 wrote:"] = "$1 napsal:";
+$a->strings["Encrypted content"] = "Šifrovaný obsah";
+$a->strings["Embedded content"] = "vložený obsah";
+$a->strings["Embedding disabled"] = "Vkládání zakázáno";
+$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."] = "Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění <strong>může</ strong> ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěli, vytvořte, prosím,  další skupinu s jiným názvem.";
+$a->strings["Default privacy group for new contacts"] = "Defaultní soukromá skrupina pro nové kontakty.";
+$a->strings["Everybody"] = "Všichni";
+$a->strings["edit"] = "editovat";
+$a->strings["Edit group"] = "Editovat skupinu";
+$a->strings["Create a new group"] = "Vytvořit novou skupinu";
+$a->strings["Contacts not in any group"] = "Kontakty, které nejsou v žádné skupině";
 $a->strings["stopped following"] = "následování zastaveno";
 $a->strings["Drop Contact"] = "Odstranit kontakt";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Nelze nalézt záznam v DNS pro databázový server '%s'";
+$a->strings["Miscellaneous"] = "Různé";
+$a->strings["year"] = "rok";
+$a->strings["month"] = "měsíc";
+$a->strings["day"] = "den";
+$a->strings["never"] = "nikdy";
+$a->strings["less than a second ago"] = "méně než před sekundou";
+$a->strings["years"] = "let";
+$a->strings["months"] = "měsíců";
+$a->strings["week"] = "týdnem";
+$a->strings["weeks"] = "týdny";
+$a->strings["days"] = "dnů";
+$a->strings["hour"] = "hodina";
+$a->strings["hours"] = "hodin";
+$a->strings["minute"] = "minuta";
+$a->strings["minutes"] = "minut";
+$a->strings["second"] = "sekunda";
+$a->strings["seconds"] = "sekund";
+$a->strings["%1\$d %2\$s ago"] = "před %1\$d %2\$s";
+$a->strings["view full size"] = "zobrazit v plné velikosti";
index 11b74c4d6038c20a660a7dcf934e4d9445f1fb3b..06934aeccd9d7ec4e84f99edc21fd6dbc5dcf7ff 100644 (file)
@@ -26,8 +26,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-26 09:22+0200\n"
-"PO-Revision-Date: 2014-04-26 10:20+0000\n"
+"POT-Creation-Date: 2014-05-16 11:05+0200\n"
+"PO-Revision-Date: 2014-05-17 12:45+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"
@@ -40,25 +40,26 @@ msgstr ""
 msgid "This entry was edited"
 msgstr "Dieser Beitrag wurde bearbeitet."
 
-#: ../../object/Item.php:113 ../../mod/content.php:619
-#: ../../mod/photos.php:1355
+#: ../../object/Item.php:113 ../../mod/photos.php:1355
+#: ../../mod/content.php:619
 msgid "Private Message"
 msgstr "Private Nachricht"
 
 #: ../../object/Item.php:117 ../../mod/editpost.php:109
-#: ../../mod/content.php:727 ../../mod/settings.php:670
+#: ../../mod/settings.php:671 ../../mod/content.php:727
 msgid "Edit"
 msgstr "Bearbeiten"
 
-#: ../../object/Item.php:126 ../../mod/content.php:437
-#: ../../mod/content.php:739 ../../include/conversation.php:612
+#: ../../object/Item.php:126 ../../mod/photos.php:1649
+#: ../../mod/content.php:437 ../../mod/content.php:739
+#: ../../include/conversation.php:612
 msgid "Select"
 msgstr "Auswählen"
 
-#: ../../object/Item.php:127 ../../mod/admin.php:908 ../../mod/content.php:438
-#: ../../mod/content.php:740 ../../mod/contacts.php:703
-#: ../../mod/settings.php:671 ../../mod/group.php:171
-#: ../../mod/photos.php:1646 ../../include/conversation.php:613
+#: ../../object/Item.php:127 ../../mod/admin.php:910 ../../mod/photos.php:1650
+#: ../../mod/contacts.php:703 ../../mod/settings.php:672
+#: ../../mod/group.php:171 ../../mod/content.php:438 ../../mod/content.php:740
+#: ../../include/conversation.php:613
 msgid "Delete"
 msgstr "Löschen"
 
@@ -86,8 +87,8 @@ msgstr "markiert"
 msgid "add tag"
 msgstr "Tag hinzufügen"
 
-#: ../../object/Item.php:213 ../../mod/content.php:683
-#: ../../mod/photos.php:1538
+#: ../../object/Item.php:213 ../../mod/photos.php:1538
+#: ../../mod/content.php:683
 msgid "I like this (toggle)"
 msgstr "Ich mag das (toggle)"
 
@@ -95,8 +96,8 @@ msgstr "Ich mag das (toggle)"
 msgid "like"
 msgstr "mag ich"
 
-#: ../../object/Item.php:214 ../../mod/content.php:684
-#: ../../mod/photos.php:1539
+#: ../../object/Item.php:214 ../../mod/photos.php:1539
+#: ../../mod/content.php:684
 msgid "I don't like this (toggle)"
 msgstr "Ich mag das nicht (toggle)"
 
@@ -149,17 +150,17 @@ msgstr "via Wall-To-Wall:"
 msgid "%s from %s"
 msgstr "%s von %s"
 
-#: ../../object/Item.php:341 ../../object/Item.php:657 ../../boot.php:693
-#: ../../mod/content.php:708 ../../mod/photos.php:1560
-#: ../../mod/photos.php:1604 ../../mod/photos.php:1687
+#: ../../object/Item.php:341 ../../object/Item.php:657
+#: ../../mod/photos.php:1560 ../../mod/photos.php:1604
+#: ../../mod/photos.php:1692 ../../mod/content.php:708 ../../boot.php:693
 msgid "Comment"
 msgstr "Kommentar"
 
-#: ../../object/Item.php:344 ../../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:1541
-#: ../../include/conversation.php:690 ../../include/conversation.php:1102
+#: ../../object/Item.php:344 ../../mod/message.php:334
+#: ../../mod/message.php:565 ../../mod/editpost.php:124
+#: ../../mod/wallmessage.php:156 ../../mod/photos.php:1541
+#: ../../mod/content.php:498 ../../mod/content.php:882
+#: ../../include/conversation.php:690 ../../include/conversation.php:1107
 msgid "Please wait"
 msgstr "Bitte warten"
 
@@ -171,40 +172,37 @@ msgstr[0] "%d Kommentar"
 msgstr[1] "%d Kommentare"
 
 #: ../../object/Item.php:369 ../../object/Item.php:382
-#: ../../mod/content.php:604 ../../include/text.php:1946
+#: ../../mod/content.php:604 ../../include/text.php:1959
 msgid "comment"
 msgid_plural "comments"
 msgstr[0] "Kommentar"
 msgstr[1] "Kommentare"
 
-#: ../../object/Item.php:370 ../../boot.php:694 ../../mod/content.php:605
+#: ../../object/Item.php:370 ../../mod/content.php:605 ../../boot.php:694
 #: ../../include/contact_widgets.php:204
 msgid "show more"
 msgstr "mehr anzeigen"
 
-#: ../../object/Item.php:655 ../../mod/content.php:706
-#: ../../mod/photos.php:1558 ../../mod/photos.php:1602
-#: ../../mod/photos.php:1685
+#: ../../object/Item.php:655 ../../mod/photos.php:1558
+#: ../../mod/photos.php:1602 ../../mod/photos.php:1690
+#: ../../mod/content.php:706
 msgid "This is you"
 msgstr "Das bist du"
 
-#: ../../object/Item.php:658 ../../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
-#: ../../view/theme/vier/config.php:47 ../../mod/mood.php:137
-#: ../../mod/install.php:248 ../../mod/install.php:286
-#: ../../mod/crepair.php:171 ../../mod/content.php:709
-#: ../../mod/contacts.php:464 ../../mod/profiles.php:634
+#: ../../object/Item.php:658 ../../mod/fsuggest.php:107
 #: ../../mod/message.php:335 ../../mod/message.php:564
-#: ../../mod/localtime.php:45 ../../mod/photos.php:1082
+#: ../../mod/events.php:478 ../../mod/photos.php:1082
 #: ../../mod/photos.php:1203 ../../mod/photos.php:1510
 #: ../../mod/photos.php:1561 ../../mod/photos.php:1605
-#: ../../mod/photos.php:1688 ../../mod/poke.php:199 ../../mod/events.php:478
-#: ../../mod/fsuggest.php:107 ../../mod/invite.php:140
-#: ../../mod/manage.php:110
+#: ../../mod/photos.php:1693 ../../mod/contacts.php:464
+#: ../../mod/invite.php:140 ../../mod/profiles.php:634
+#: ../../mod/manage.php:110 ../../mod/poke.php:199 ../../mod/localtime.php:45
+#: ../../mod/install.php:248 ../../mod/install.php:286
+#: ../../mod/content.php:709 ../../mod/mood.php:137 ../../mod/crepair.php:171
+#: ../../view/theme/diabook/theme.php:633
+#: ../../view/theme/diabook/config.php:148 ../../view/theme/vier/config.php:47
+#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64
+#: ../../view/theme/cleanzero/config.php:80
 msgid "Submit"
 msgstr "Senden"
 
@@ -241,9 +239,9 @@ msgid "Video"
 msgstr "Video"
 
 #: ../../object/Item.php:667 ../../mod/editpost.php:145
-#: ../../mod/content.php:718 ../../mod/photos.php:1562
-#: ../../mod/photos.php:1606 ../../mod/photos.php:1689
-#: ../../include/conversation.php:1119
+#: ../../mod/photos.php:1562 ../../mod/photos.php:1606
+#: ../../mod/photos.php:1694 ../../mod/content.php:718
+#: ../../include/conversation.php:1124
 msgid "Preview"
 msgstr "Vorschau"
 
@@ -259,32 +257,33 @@ msgstr "Nicht gefunden"
 msgid "Page not found."
 msgstr "Seite nicht gefunden."
 
-#: ../../index.php:359 ../../mod/group.php:72 ../../mod/profperm.php:19
+#: ../../index.php:359 ../../mod/profperm.php:19 ../../mod/group.php:72
 msgid "Permission denied"
 msgstr "Zugriff verweigert"
 
-#: ../../index.php:360 ../../mod/mood.php:114 ../../mod/display.php:266
-#: ../../mod/register.php:41 ../../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:4 ../../mod/install.php:151 ../../mod/editpost.php:10
-#: ../../mod/attach.php:33 ../../mod/regmod.php:118 ../../mod/crepair.php:117
-#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:246
-#: ../../mod/settings.php:101 ../../mod/settings.php:590
-#: ../../mod/settings.php:595 ../../mod/profiles.php:146
-#: ../../mod/profiles.php:575 ../../mod/group.php:19 ../../mod/follow.php:9
-#: ../../mod/message.php:38 ../../mod/message.php:174
-#: ../../mod/viewcontacts.php:22 ../../mod/photos.php:134
-#: ../../mod/photos.php:1048 ../../mod/wall_attach.php:55
-#: ../../mod/poke.php:135 ../../mod/wall_upload.php:66
+#: ../../index.php:360 ../../mod/fsuggest.php:78 ../../mod/files.php:170
+#: ../../mod/notifications.php:66 ../../mod/message.php:38
+#: ../../mod/message.php:174 ../../mod/editpost.php:10
+#: ../../mod/dfrn_confirm.php:53 ../../mod/events.php:140
+#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
+#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
+#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:66 ../../mod/api.php:26
+#: ../../mod/api.php:31 ../../mod/photos.php:134 ../../mod/photos.php:1048
+#: ../../mod/register.php:41 ../../mod/attach.php:33
+#: ../../mod/contacts.php:246 ../../mod/follow.php:9 ../../mod/uimport.php:23
+#: ../../mod/allfriends.php:9 ../../mod/invite.php:15 ../../mod/invite.php:101
+#: ../../mod/settings.php:102 ../../mod/settings.php:591
+#: ../../mod/settings.php:596 ../../mod/display.php:266
+#: ../../mod/profiles.php:146 ../../mod/profiles.php:575
+#: ../../mod/wall_attach.php:55 ../../mod/suggest.php:56
+#: ../../mod/manage.php:96 ../../mod/delegate.php:6
+#: ../../mod/viewcontacts.php:22 ../../mod/notes.php:20 ../../mod/poke.php:135
 #: ../../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:145 ../../mod/item.php:161
-#: ../../mod/notifications.php:66 ../../mod/invite.php:15
-#: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9
-#: ../../wall_attach.php:55 ../../include/items.php:4373
+#: ../../mod/install.php:151 ../../mod/group.php:19 ../../mod/regmod.php:118
+#: ../../mod/item.php:145 ../../mod/item.php:161 ../../mod/mood.php:114
+#: ../../mod/network.php:4 ../../mod/crepair.php:117
+#: ../../include/items.php:4390
 msgid "Permission denied."
 msgstr "Zugriff verweigert."
 
@@ -292,2753 +291,2738 @@ msgstr "Zugriff verweigert."
 msgid "toggle mobile"
 msgstr "auf/von Mobile Ansicht wechseln"
 
-#: ../../view/theme/perihel/theme.php:33
-#: ../../view/theme/diabook/theme.php:123 ../../mod/notifications.php:93
-#: ../../include/nav.php:104 ../../include/nav.php:145
-msgid "Home"
-msgstr "Pinnwand"
+#: ../../mod/update_notes.php:41 ../../mod/update_profile.php:41
+#: ../../mod/update_community.php:18 ../../mod/update_network.php:22
+#: ../../mod/update_display.php:22
+msgid "[Embedded content - reload page to view]"
+msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
 
-#: ../../view/theme/perihel/theme.php:33
-#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
-#: ../../include/nav.php:145
-msgid "Your posts and conversations"
-msgstr "Deine Beiträge und Unterhaltungen"
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131
+msgid "Contact not found."
+msgstr "Kontakt nicht gefunden."
 
-#: ../../view/theme/perihel/theme.php:34
-#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979
-#: ../../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"
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Kontaktvorschlag gesendet."
 
-#: ../../view/theme/perihel/theme.php:34
-#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
-msgid "Your profile page"
-msgstr "Deine Profilseite"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Kontakte vorschlagen"
 
-#: ../../view/theme/perihel/theme.php:35
-#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1986
-#: ../../mod/fbrowser.php:25 ../../include/nav.php:78
-msgid "Photos"
-msgstr "Bilder"
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Schlage %s einen Kontakt vor"
 
-#: ../../view/theme/perihel/theme.php:35
-#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
-msgid "Your photos"
-msgstr "Deine Fotos"
+#: ../../mod/dfrn_request.php:93
+msgid "This introduction has already been accepted."
+msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
 
-#: ../../view/theme/perihel/theme.php:36
-#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2003
-#: ../../mod/events.php:370 ../../include/nav.php:79
-msgid "Events"
-msgstr "Veranstaltungen"
+#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."
 
-#: ../../view/theme/perihel/theme.php:36
-#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79
-msgid "Your events"
-msgstr "Deine Ereignisse"
+#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
 
-#: ../../view/theme/perihel/theme.php:37
-#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
-msgid "Personal notes"
-msgstr "Persönliche Notizen"
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
+msgid "Warning: profile location has no profile photo."
+msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."
 
-#: ../../view/theme/perihel/theme.php:37
-#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
-msgid "Your personal photos"
-msgstr "Deine privaten Fotos"
+#: ../../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 benötigter Parameter wurde an der angegebenen Stelle nicht gefunden"
+msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden"
 
-#: ../../view/theme/perihel/theme.php:38
-#: ../../view/theme/diabook/theme.php:129 ../../mod/community.php:32
-#: ../../include/nav.php:128
-msgid "Community"
-msgstr "Gemeinschaft"
+#: ../../mod/dfrn_request.php:170
+msgid "Introduction complete."
+msgstr "Kontaktanfrage abgeschlossen."
 
-#: ../../view/theme/perihel/config.php:89
-#: ../../view/theme/diabook/theme.php:621
-#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328
-msgid "don't show"
-msgstr "nicht zeigen"
+#: ../../mod/dfrn_request.php:209
+msgid "Unrecoverable protocol error."
+msgstr "Nicht behebbarer Protokollfehler."
 
-#: ../../view/theme/perihel/config.php:89
-#: ../../view/theme/diabook/theme.php:621
-#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327
-msgid "show"
-msgstr "zeigen"
+#: ../../mod/dfrn_request.php:237
+msgid "Profile unavailable."
+msgstr "Profil nicht verfügbar."
 
-#: ../../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
-#: ../../view/theme/vier/config.php:49
-msgid "Theme settings"
-msgstr "Themeneinstellungen"
+#: ../../mod/dfrn_request.php:262
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten."
 
-#: ../../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 "Schriftgröße für Beiträge und Kommentare festlegen"
+#: ../../mod/dfrn_request.php:263
+msgid "Spam protection measures have been invoked."
+msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
 
-#: ../../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 "Liniengröße für Beiträge und Kommantare festlegen"
+#: ../../mod/dfrn_request.php:264
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
 
-#: ../../view/theme/perihel/config.php:100
-#: ../../view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
-msgstr "Auflösung für die Mittelspalte setzen"
+#: ../../mod/dfrn_request.php:326
+msgid "Invalid locator"
+msgstr "Ungültiger Locator"
 
-#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:688
-#: ../../include/nav.php:173
-msgid "Contacts"
-msgstr "Kontakte"
+#: ../../mod/dfrn_request.php:335
+msgid "Invalid email address."
+msgstr "Ungültige E-Mail-Adresse."
 
-#: ../../view/theme/diabook/theme.php:125
-msgid "Your contacts"
-msgstr "Deine Kontakte"
+#: ../../mod/dfrn_request.php:362
+msgid "This account has not been configured for email. Request failed."
+msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."
 
-#: ../../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 "Foren"
+#: ../../mod/dfrn_request.php:458
+msgid "Unable to resolve your name at the provided location."
+msgstr "Konnte deinen Namen an der angegebenen Stelle nicht finden."
 
-#: ../../view/theme/diabook/theme.php:391
-#: ../../view/theme/diabook/theme.php:626
-#: ../../view/theme/diabook/config.php:160
-msgid "Community Profiles"
-msgstr "Community-Profile"
+#: ../../mod/dfrn_request.php:471
+msgid "You have already introduced yourself here."
+msgstr "Du hast dich hier bereits vorgestellt."
 
-#: ../../view/theme/diabook/theme.php:412
-#: ../../view/theme/diabook/theme.php:630
-#: ../../view/theme/diabook/config.php:164
-msgid "Last users"
-msgstr "Letzte Nutzer"
+#: ../../mod/dfrn_request.php:475
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Es scheint so, als ob du bereits mit %s befreundet bist."
 
-#: ../../view/theme/diabook/theme.php:441
-#: ../../view/theme/diabook/theme.php:632
-#: ../../view/theme/diabook/config.php:166
-msgid "Last likes"
-msgstr "Zuletzt gemocht"
+#: ../../mod/dfrn_request.php:496
+msgid "Invalid profile URL."
+msgstr "Ungültige Profil-URL."
 
-#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118
-#: ../../include/conversation.php:246 ../../include/text.php:1940
-msgid "event"
-msgstr "Veranstaltung"
+#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
+msgid "Disallowed profile URL."
+msgstr "Nicht erlaubte Profil-URL."
 
-#: ../../view/theme/diabook/theme.php:466
-#: ../../view/theme/diabook/theme.php:475 ../../mod/tagger.php:62
-#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/subthread.php:87
-#: ../../include/conversation.php:121 ../../include/conversation.php:130
-#: ../../include/conversation.php:249 ../../include/conversation.php:258
-#: ../../include/diaspora.php:1908
-msgid "status"
-msgstr "Status"
+#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180
+msgid "Failed to update contact record."
+msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
 
-#: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62
-#: ../../mod/like.php:150 ../../mod/subthread.php:87
-#: ../../include/conversation.php:126 ../../include/conversation.php:254
-#: ../../include/text.php:1942 ../../include/diaspora.php:1908
-msgid "photo"
-msgstr "Foto"
+#: ../../mod/dfrn_request.php:592
+msgid "Your introduction has been sent."
+msgstr "Deine Kontaktanfrage wurde gesendet."
 
-#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:167
-#: ../../include/conversation.php:137 ../../include/diaspora.php:1924
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s mag %2$ss %3$s"
+#: ../../mod/dfrn_request.php:645
+msgid "Please login to confirm introduction."
+msgstr "Bitte melde dich an, um die Kontaktanfrage zu bestätigen."
 
-#: ../../view/theme/diabook/theme.php:486
-#: ../../view/theme/diabook/theme.php:631
-#: ../../view/theme/diabook/config.php:165
-msgid "Last photos"
-msgstr "Letzte Fotos"
+#: ../../mod/dfrn_request.php:659
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an."
 
-#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60
-#: ../../mod/photos.php:155 ../../mod/photos.php:1062
-#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
-#: ../../mod/photos.php:1751 ../../mod/photos.php:1763
-msgid "Contact Photos"
-msgstr "Kontaktbilder"
+#: ../../mod/dfrn_request.php:670
+msgid "Hide this contact"
+msgstr "Verberge diesen Kontakt"
 
-#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:155
-#: ../../mod/photos.php:729 ../../mod/photos.php:1187
-#: ../../mod/photos.php:1210 ../../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:334
-#: ../../include/user.php:341 ../../include/user.php:348
-msgid "Profile Photos"
-msgstr "Profilbilder"
+#: ../../mod/dfrn_request.php:673
+#, php-format
+msgid "Welcome home %s."
+msgstr "Willkommen zurück %s."
 
-#: ../../view/theme/diabook/theme.php:523
-#: ../../view/theme/diabook/theme.php:629
-#: ../../view/theme/diabook/config.php:163
-msgid "Find Friends"
-msgstr "Freunde finden"
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Bitte bestätige deine Kontaktanfrage bei %s."
 
-#: ../../view/theme/diabook/theme.php:524
-msgid "Local Directory"
-msgstr "Lokales Verzeichnis"
+#: ../../mod/dfrn_request.php:675
+msgid "Confirm"
+msgstr "Bestätigen"
 
-#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:49
-msgid "Global Directory"
-msgstr "Weltweites Verzeichnis"
+#: ../../mod/dfrn_request.php:716 ../../include/items.php:3703
+msgid "[Name Withheld]"
+msgstr "[Name unterdrückt]"
 
-#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35
-msgid "Similar Interests"
-msgstr "Ähnliche Interessen"
+#: ../../mod/dfrn_request.php:761 ../../mod/photos.php:918
+#: ../../mod/videos.php:115 ../../mod/search.php:89 ../../mod/display.php:19
+#: ../../mod/community.php:18 ../../mod/viewcontacts.php:17
+#: ../../mod/directory.php:31
+msgid "Public access denied."
+msgstr "Öffentlicher Zugriff verweigert."
 
-#: ../../view/theme/diabook/theme.php:527 ../../mod/suggest.php:66
-#: ../../include/contact_widgets.php:34
-msgid "Friend Suggestions"
-msgstr "Kontaktvorschläge"
+#: ../../mod/dfrn_request.php:811
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:"
 
-#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37
-msgid "Invite Friends"
-msgstr "Freunde einladen"
+#: ../../mod/dfrn_request.php:827
+msgid "<strike>Connect as an email follower</strike> (Coming soon)"
+msgstr "<strike>Als E-Mail-Kontakt verbinden</strike> (In Kürze verfügbar)"
 
-#: ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22
-#: ../../mod/admin.php:1005 ../../mod/admin.php:1213 ../../mod/settings.php:84
-#: ../../include/nav.php:169
-msgid "Settings"
-msgstr "Einstellungen"
+#: ../../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 "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
 
-#: ../../view/theme/diabook/theme.php:579
-#: ../../view/theme/diabook/theme.php:625
-#: ../../view/theme/diabook/config.php:159
-msgid "Earth Layers"
-msgstr "Earth Layers"
+#: ../../mod/dfrn_request.php:832
+msgid "Friend/Connection Request"
+msgstr "Freundschafts-/Kontaktanfrage"
 
-#: ../../view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
-msgstr "Zoomfaktor der Earth Layer"
+#: ../../mod/dfrn_request.php:833
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
 
-#: ../../view/theme/diabook/theme.php:585
-#: ../../view/theme/diabook/config.php:156
-msgid "Set longitude (X) for Earth Layers"
-msgstr "Longitude (X) der Earth Layer"
+#: ../../mod/dfrn_request.php:834
+msgid "Please answer the following:"
+msgstr "Bitte beantworte folgendes:"
 
-#: ../../view/theme/diabook/theme.php:586
-#: ../../view/theme/diabook/config.php:157
-msgid "Set latitude (Y) for Earth Layers"
-msgstr "Latitude (Y) der Earth Layer"
+#: ../../mod/dfrn_request.php:835
+#, php-format
+msgid "Does %s know you?"
+msgstr "Kennt %s dich?"
 
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:627
-#: ../../view/theme/diabook/config.php:161
-msgid "Help or @NewHere ?"
-msgstr "Hilfe oder @NewHere"
+#: ../../mod/dfrn_request.php:836 ../../mod/message.php:209
+#: ../../mod/api.php:105 ../../mod/register.php:243 ../../mod/contacts.php:326
+#: ../../mod/settings.php:1001 ../../mod/settings.php:1007
+#: ../../mod/settings.php:1015 ../../mod/settings.php:1019
+#: ../../mod/settings.php:1024 ../../mod/settings.php:1030
+#: ../../mod/settings.php:1036 ../../mod/settings.php:1042
+#: ../../mod/settings.php:1072 ../../mod/settings.php:1073
+#: ../../mod/settings.php:1074 ../../mod/settings.php:1075
+#: ../../mod/settings.php:1076 ../../mod/profiles.php:614
+#: ../../mod/suggest.php:29 ../../include/items.php:4235
+msgid "Yes"
+msgstr "Ja"
 
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:628
-#: ../../view/theme/diabook/config.php:162
-msgid "Connect Services"
-msgstr "Verbinde Dienste"
+#: ../../mod/dfrn_request.php:837 ../../mod/api.php:106
+#: ../../mod/register.php:244 ../../mod/settings.php:1001
+#: ../../mod/settings.php:1007 ../../mod/settings.php:1015
+#: ../../mod/settings.php:1019 ../../mod/settings.php:1024
+#: ../../mod/settings.php:1030 ../../mod/settings.php:1036
+#: ../../mod/settings.php:1042 ../../mod/settings.php:1072
+#: ../../mod/settings.php:1073 ../../mod/settings.php:1074
+#: ../../mod/settings.php:1075 ../../mod/settings.php:1076
+#: ../../mod/profiles.php:615
+msgid "No"
+msgstr "Nein"
 
-#: ../../view/theme/diabook/theme.php:622
-msgid "Show/hide boxes at right-hand column:"
-msgstr "Rahmen auf der rechten Seite anzeigen/verbergen"
+#: ../../mod/dfrn_request.php:838
+msgid "Add a personal note:"
+msgstr "Eine persönliche Notiz beifügen:"
 
-#: ../../view/theme/diabook/config.php:154
-msgid "Set color scheme"
-msgstr "Wähle Farbschema"
+#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../view/theme/diabook/config.php:155
-msgid "Set zoomfactor for Earth Layer"
-msgstr "Zoomfaktor der Earth Layer"
+#: ../../mod/dfrn_request.php:841
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Social Web"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Ausrichtung"
+#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:731
+#: ../../include/contact_selectors.php:80
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Links"
+#: ../../mod/dfrn_request.php:843
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste."
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Mitte"
+#: ../../mod/dfrn_request.php:844
+msgid "Your Identity Address:"
+msgstr "Adresse deines Profils:"
 
-#: ../../view/theme/quattro/config.php:68 ../../view/theme/clean/config.php:76
-#: ../../view/theme/cleanzero/config.php:86
-msgid "Color scheme"
-msgstr "Farbschema"
+#: ../../mod/dfrn_request.php:847
+msgid "Submit Request"
+msgstr "Anfrage abschicken"
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "Schriftgröße in Beiträgen"
+#: ../../mod/dfrn_request.php:848 ../../mod/message.php:212
+#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../mod/photos.php:203
+#: ../../mod/photos.php:292 ../../mod/contacts.php:329 ../../mod/tagrm.php:11
+#: ../../mod/tagrm.php:94 ../../mod/settings.php:610
+#: ../../mod/settings.php:636 ../../mod/suggest.php:32
+#: ../../include/items.php:4238 ../../include/conversation.php:1127
+msgid "Cancel"
+msgstr "Abbrechen"
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr "Schriftgröße in Eingabefeldern"
+#: ../../mod/files.php:156 ../../mod/videos.php:301
+#: ../../include/text.php:1400
+msgid "View Video"
+msgstr "Video ansehen"
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Farbschema wählen"
+#: ../../mod/profile.php:21 ../../boot.php:1353
+msgid "Requested profile is not available."
+msgstr "Das angefragte Profil ist nicht vorhanden."
 
-#: ../../view/theme/clean/config.php:54 ../../include/user.php:246
-#: ../../include/text.php:1676
-msgid "default"
-msgstr "Standard"
+#: ../../mod/profile.php:155 ../../mod/display.php:99
+msgid "Access to this profile has been restricted."
+msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
 
-#: ../../view/theme/clean/config.php:74
-msgid "Background Image"
-msgstr "Hintergrundbild"
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Tipps für neue Nutzer"
 
-#: ../../view/theme/clean/config.php:74
-msgid ""
-"The URL to a picture (e.g. from your photo album) that should be used as "
-"background image."
-msgstr "Die URL eines Bildes (z.B. aus deinem Fotoalbum), das als Hintergrundbild verwendet werden soll."
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Invalid request identifier."
 
-#: ../../view/theme/clean/config.php:75
-msgid "Background Color"
-msgstr "Hintergrundfarbe"
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:211
+msgid "Discard"
+msgstr "Verwerfen"
 
-#: ../../view/theme/clean/config.php:75
-msgid "HEX value for the background color. Don't include the #"
-msgstr "HEX Wert der Hintergrundfarbe. Gib die # nicht mit an."
+#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
+#: ../../mod/notifications.php:210 ../../mod/contacts.php:437
+#: ../../mod/contacts.php:491 ../../mod/contacts.php:701
+msgid "Ignore"
+msgstr "Ignorieren"
 
-#: ../../view/theme/clean/config.php:77
-msgid "font size"
-msgstr "Schriftgröße"
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "System"
 
-#: ../../view/theme/clean/config.php:77
-msgid "base font size for your interface"
-msgstr "Basis-Schriftgröße für dein Interface."
+#: ../../mod/notifications.php:83 ../../include/nav.php:142
+msgid "Network"
+msgstr "Netzwerk"
 
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"
+#: ../../mod/notifications.php:88 ../../mod/network.php:365
+msgid "Personal"
+msgstr "Persönlich"
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Theme Breite festlegen"
+#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:123
+#: ../../include/nav.php:104 ../../include/nav.php:145
+msgid "Home"
+msgstr "Pinnwand"
 
-#: ../../view/theme/vier/config.php:50
-msgid "Set style"
-msgstr "Stiel auswählen"
+#: ../../mod/notifications.php:98 ../../include/nav.php:151
+msgid "Introductions"
+msgstr "Kontaktanfragen"
 
-#: ../../boot.php:692
-msgid "Delete this item?"
-msgstr "Diesen Beitrag löschen?"
+#: ../../mod/notifications.php:103 ../../mod/message.php:182
+#: ../../include/nav.php:158
+msgid "Messages"
+msgstr "Nachrichten"
 
-#: ../../boot.php:695
-msgid "show fewer"
-msgstr "weniger anzeigen"
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Zeige ignorierte Anfragen"
 
-#: ../../boot.php:1023
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Verberge ignorierte Anfragen"
 
-#: ../../boot.php:1025
-#, php-format
-msgid "Update Error at %s"
-msgstr "Updatefehler bei %s"
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
+msgid "Notification type: "
+msgstr "Benachrichtigungstyp: "
 
-#: ../../boot.php:1135
-msgid "Create a New Account"
-msgstr "Neues Konto erstellen"
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Kontaktvorschlag"
 
-#: ../../boot.php:1136 ../../mod/register.php:279 ../../include/nav.php:108
-msgid "Register"
-msgstr "Registrieren"
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
+msgstr "vorgeschlagen von %s"
 
-#: ../../boot.php:1160 ../../include/nav.php:73
-msgid "Logout"
-msgstr "Abmelden"
+#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
+#: ../../mod/contacts.php:497
+msgid "Hide this contact from others"
+msgstr "Verberge diesen Kontakt vor anderen"
 
-#: ../../boot.php:1161 ../../include/nav.php:91
-msgid "Login"
-msgstr "Anmeldung"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "Post a new friend activity"
+msgstr "Neue-Kontakt Nachricht senden"
 
-#: ../../boot.php:1163
-msgid "Nickname or Email address: "
-msgstr "Spitzname oder E-Mail-Adresse: "
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "if applicable"
+msgstr "falls anwendbar"
 
-#: ../../boot.php:1164
-msgid "Password: "
-msgstr "Passwort: "
+#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
+#: ../../mod/admin.php:908
+msgid "Approve"
+msgstr "Genehmigen"
 
-#: ../../boot.php:1165
-msgid "Remember me"
-msgstr "Anmeldedaten merken"
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Behauptet dich zu kennen: "
 
-#: ../../boot.php:1168
-msgid "Or login using OpenID: "
-msgstr "Oder melde dich mit deiner OpenID an: "
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "ja"
 
-#: ../../boot.php:1174
-msgid "Forgot your password?"
-msgstr "Passwort vergessen?"
+#: ../../mod/notifications.php:181
+msgid "no"
+msgstr "nein"
 
-#: ../../boot.php:1175 ../../mod/lostpass.php:84
-msgid "Password Reset"
-msgstr "Passwort zurücksetzen"
+#: ../../mod/notifications.php:188
+msgid "Approve as: "
+msgstr "Genehmigen als: "
 
-#: ../../boot.php:1177
-msgid "Website Terms of Service"
-msgstr "Website Nutzungsbedingungen"
+#: ../../mod/notifications.php:189
+msgid "Friend"
+msgstr "Freund"
 
-#: ../../boot.php:1178
-msgid "terms of service"
-msgstr "Nutzungsbedingungen"
+#: ../../mod/notifications.php:190
+msgid "Sharer"
+msgstr "Teilenden"
 
-#: ../../boot.php:1180
-msgid "Website Privacy Policy"
-msgstr "Website Datenschutzerklärung"
+#: ../../mod/notifications.php:190
+msgid "Fan/Admirer"
+msgstr "Fan/Verehrer"
 
-#: ../../boot.php:1181
-msgid "privacy policy"
-msgstr "Datenschutzerklärung"
-
-#: ../../boot.php:1314
-msgid "Requested account is not available."
-msgstr "Das angefragte Profil ist nicht vorhanden."
+#: ../../mod/notifications.php:196
+msgid "Friend/Connect Request"
+msgstr "Kontakt-/Freundschaftsanfrage"
 
-#: ../../boot.php:1353 ../../mod/profile.php:21
-msgid "Requested profile is not available."
-msgstr "Das angefragte Profil ist nicht vorhanden."
+#: ../../mod/notifications.php:196
+msgid "New Follower"
+msgstr "Neuer Bewunderer"
 
-#: ../../boot.php:1393 ../../boot.php:1497
-msgid "Edit profile"
-msgstr "Profil bearbeiten"
+#: ../../mod/notifications.php:217
+msgid "No introductions."
+msgstr "Keine Kontaktanfragen."
 
-#: ../../boot.php:1445 ../../mod/suggest.php:88 ../../mod/match.php:58
-#: ../../include/contact_widgets.php:9
-msgid "Connect"
-msgstr "Verbinden"
+#: ../../mod/notifications.php:220 ../../include/nav.php:152
+msgid "Notifications"
+msgstr "Benachrichtigungen"
 
-#: ../../boot.php:1459
-msgid "Message"
-msgstr "Nachricht"
+#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
+#: ../../mod/notifications.php:469
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s mag %ss Beitrag"
 
-#: ../../boot.php:1467 ../../include/nav.php:171
-msgid "Profiles"
-msgstr "Profile"
+#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
+#: ../../mod/notifications.php:478
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s mag %ss Beitrag nicht"
 
-#: ../../boot.php:1467
-msgid "Manage/edit profiles"
-msgstr "Profile verwalten/editieren"
+#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
+#: ../../mod/notifications.php:492
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s ist jetzt mit %s befreundet"
 
-#: ../../boot.php:1473 ../../boot.php:1499 ../../mod/profiles.php:730
-msgid "Change profile photo"
-msgstr "Profilbild ändern"
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
+#, php-format
+msgid "%s created a new post"
+msgstr "%s hat einen neuen Beitrag erstellt"
 
-#: ../../boot.php:1474 ../../mod/profiles.php:731
-msgid "Create New Profile"
-msgstr "Neues Profil anlegen"
+#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
+#: ../../mod/notifications.php:501
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s hat %ss Beitrag kommentiert"
 
-#: ../../boot.php:1484 ../../mod/profiles.php:742
-msgid "Profile Image"
-msgstr "Profilbild"
+#: ../../mod/notifications.php:302
+msgid "No more network notifications."
+msgstr "Keine weiteren Netzwerk-Benachrichtigungen."
 
-#: ../../boot.php:1487 ../../mod/profiles.php:744
-msgid "visible to everybody"
-msgstr "sichtbar für jeden"
+#: ../../mod/notifications.php:306
+msgid "Network Notifications"
+msgstr "Netzwerk Benachrichtigungen"
 
-#: ../../boot.php:1488 ../../mod/profiles.php:745
-msgid "Edit visibility"
-msgstr "Sichtbarkeit bearbeiten"
+#: ../../mod/notifications.php:332 ../../mod/notify.php:61
+msgid "No more system notifications."
+msgstr "Keine weiteren Systembenachrichtigungen."
 
-#: ../../boot.php:1513 ../../mod/directory.php:134 ../../mod/events.php:471
-#: ../../include/event.php:40 ../../include/bb2diaspora.php:155
-msgid "Location:"
-msgstr "Ort:"
+#: ../../mod/notifications.php:336 ../../mod/notify.php:65
+msgid "System Notifications"
+msgstr "Systembenachrichtigungen"
 
-#: ../../boot.php:1515 ../../mod/directory.php:136
-#: ../../include/profile_advanced.php:17
-msgid "Gender:"
-msgstr "Geschlecht:"
+#: ../../mod/notifications.php:427
+msgid "No more personal notifications."
+msgstr "Keine weiteren persönlichen Benachrichtigungen"
 
-#: ../../boot.php:1518 ../../mod/directory.php:138
-#: ../../include/profile_advanced.php:37
-msgid "Status:"
-msgstr "Status:"
+#: ../../mod/notifications.php:431
+msgid "Personal Notifications"
+msgstr "Persönliche Benachrichtigungen"
 
-#: ../../boot.php:1520 ../../mod/directory.php:140
-#: ../../include/profile_advanced.php:48
-msgid "Homepage:"
-msgstr "Homepage:"
+#: ../../mod/notifications.php:508
+msgid "No more home notifications."
+msgstr "Keine weiteren Pinnwand-Benachrichtigungen"
 
-#: ../../boot.php:1596 ../../boot.php:1682
-msgid "g A l F d"
-msgstr "l, d. F G \\U\\h\\r"
+#: ../../mod/notifications.php:512
+msgid "Home Notifications"
+msgstr "Pinnwand Benachrichtigungen"
 
-#: ../../boot.php:1597 ../../boot.php:1683
-msgid "F d"
-msgstr "d. F"
+#: ../../mod/like.php:150 ../../mod/tagger.php:62 ../../mod/subthread.php:87
+#: ../../view/theme/diabook/theme.php:471 ../../include/text.php:1955
+#: ../../include/diaspora.php:1908 ../../include/conversation.php:126
+#: ../../include/conversation.php:254
+msgid "photo"
+msgstr "Foto"
 
-#: ../../boot.php:1642 ../../boot.php:1723
-msgid "[today]"
-msgstr "[heute]"
+#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/tagger.php:62
+#: ../../mod/subthread.php:87 ../../view/theme/diabook/theme.php:466
+#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:1908
+#: ../../include/conversation.php:121 ../../include/conversation.php:130
+#: ../../include/conversation.php:249 ../../include/conversation.php:258
+msgid "status"
+msgstr "Status"
 
-#: ../../boot.php:1654
-msgid "Birthday Reminders"
-msgstr "Geburtstagserinnerungen"
+#: ../../mod/like.php:167 ../../view/theme/diabook/theme.php:480
+#: ../../include/diaspora.php:1924 ../../include/conversation.php:137
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s mag %2$ss %3$s"
 
-#: ../../boot.php:1655
-msgid "Birthdays this week:"
-msgstr "Geburtstage diese Woche:"
+#: ../../mod/like.php:169 ../../include/conversation.php:140
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s mag %2$ss %3$s nicht"
 
-#: ../../boot.php:1716
-msgid "[No description]"
-msgstr "[keine Beschreibung]"
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
 
-#: ../../boot.php:1734
-msgid "Event Reminders"
-msgstr "Veranstaltungserinnerungen"
+#: ../../mod/openid.php:53
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."
 
-#: ../../boot.php:1735
-msgid "Events this week:"
-msgstr "Veranstaltungen diese Woche"
+#: ../../mod/openid.php:93 ../../include/auth.php:112
+#: ../../include/auth.php:175
+msgid "Login failed."
+msgstr "Anmeldung fehlgeschlagen."
 
-#: ../../boot.php:1972 ../../include/nav.php:76
-msgid "Status"
-msgstr "Status"
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Quelle (bbcode) Text:"
 
-#: ../../boot.php:1975
-msgid "Status Messages and Posts"
-msgstr "Statusnachrichten und Beiträge"
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"
 
-#: ../../boot.php:1982
-msgid "Profile Details"
-msgstr "Profildetails"
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "Originaltext:"
 
-#: ../../boot.php:1989 ../../mod/photos.php:52
-msgid "Photo Albums"
-msgstr "Fotoalben"
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (reines HTML): "
 
-#: ../../boot.php:1993 ../../boot.php:1996
-msgid "Videos"
-msgstr "Videos"
+#: ../../mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html: "
 
-#: ../../boot.php:2006
-msgid "Events and Calendar"
-msgstr "Ereignisse und Kalender"
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
 
-#: ../../boot.php:2010 ../../mod/notes.php:44
-msgid "Personal Notes"
-msgstr "Persönliche Notizen"
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
 
-#: ../../boot.php:2013
-msgid "Only You Can See This"
-msgstr "Nur du kannst das sehen"
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
 
-#: ../../mod/mood.php:62 ../../include/conversation.php:227
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s ist momentan %2$s"
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr "Stimmung"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
 
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden"
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Originaltext (Diaspora Format): "
 
-#: ../../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:918
-#: ../../mod/videos.php:115
-msgid "Public access denied."
-msgstr "Öffentlicher Zugriff verweigert."
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
 
-#: ../../mod/display.php:51 ../../mod/display.php:270 ../../mod/decrypt.php:15
-#: ../../mod/admin.php:163 ../../mod/admin.php:953 ../../mod/admin.php:1153
-#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15
-#: ../../include/items.php:4177
-msgid "Item not found."
-msgstr "Beitrag nicht gefunden."
+#: ../../mod/admin.php:55
+msgid "Theme settings updated."
+msgstr "Themeneinstellungen aktualisiert."
 
-#: ../../mod/display.php:99 ../../mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
+#: ../../mod/admin.php:102 ../../mod/admin.php:573
+msgid "Site"
+msgstr "Seite"
 
-#: ../../mod/display.php:263
-msgid "Item has been removed."
-msgstr "Eintrag wurde entfernt."
+#: ../../mod/admin.php:103 ../../mod/admin.php:901 ../../mod/admin.php:916
+msgid "Users"
+msgstr "Nutzer"
 
-#: ../../mod/decrypt.php:9 ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Zugriff verweigert."
+#: ../../mod/admin.php:104 ../../mod/admin.php:1005 ../../mod/admin.php:1058
+#: ../../mod/settings.php:57
+msgid "Plugins"
+msgstr "Plugins"
 
-#: ../../mod/friendica.php:58
-msgid "This is Friendica, version"
-msgstr "Dies ist Friendica, Version"
+#: ../../mod/admin.php:105 ../../mod/admin.php:1224 ../../mod/admin.php:1258
+msgid "Themes"
+msgstr "Themen"
 
-#: ../../mod/friendica.php:59
-msgid "running at web location"
-msgstr "die unter folgender Webadresse zu finden ist"
+#: ../../mod/admin.php:106
+msgid "DB updates"
+msgstr "DB Updates"
 
-#: ../../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/admin.php:121 ../../mod/admin.php:128 ../../mod/admin.php:1345
+msgid "Logs"
+msgstr "Protokolle"
 
-#: ../../mod/friendica.php:63
-msgid "Bug reports and issues: please visit"
-msgstr "Probleme oder Fehler gefunden? Bitte besuche"
+#: ../../mod/admin.php:126 ../../include/nav.php:180
+msgid "Admin"
+msgstr "Administration"
 
-#: ../../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/admin.php:127
+msgid "Plugin Features"
+msgstr "Plugin Features"
 
-#: ../../mod/friendica.php:78
-msgid "Installed plugins/addons/apps:"
-msgstr "Installierte Plugins/Erweiterungen/Apps"
+#: ../../mod/admin.php:129
+msgid "User registrations waiting for confirmation"
+msgstr "Nutzeranmeldungen die auf Bestätigung warten"
 
-#: ../../mod/friendica.php:91
-msgid "No installed plugins/addons/apps"
-msgstr "Keine Plugins/Erweiterungen/Apps installiert"
+#: ../../mod/admin.php:164 ../../mod/admin.php:955 ../../mod/admin.php:1166
+#: ../../mod/notice.php:15 ../../mod/display.php:51 ../../mod/display.php:270
+#: ../../mod/viewsrc.php:15 ../../include/items.php:4194
+msgid "Item not found."
+msgstr "Beitrag nicht gefunden."
 
-#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s heißt %2$s herzlich willkommen"
+#: ../../mod/admin.php:188 ../../mod/admin.php:855
+msgid "Normal Account"
+msgstr "Normales Konto"
 
-#: ../../mod/register.php:92 ../../mod/admin.php:735 ../../mod/regmod.php:54
-#, php-format
-msgid "Registration details for %s"
-msgstr "Details der Registration von %s"
+#: ../../mod/admin.php:189 ../../mod/admin.php:856
+msgid "Soapbox Account"
+msgstr "Marktschreier-Konto"
 
-#: ../../mod/register.php:100
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet."
+#: ../../mod/admin.php:190 ../../mod/admin.php:857
+msgid "Community/Celebrity Account"
+msgstr "Forum/Promi-Konto"
 
-#: ../../mod/register.php:104
-msgid "Failed to send email message. Here is the message that failed."
-msgstr "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht gesendet werden konnte."
+#: ../../mod/admin.php:191 ../../mod/admin.php:858
+msgid "Automatic Friend Account"
+msgstr "Automatisches Freundekonto"
 
-#: ../../mod/register.php:109
-msgid "Your registration can not be processed."
-msgstr "Deine Registrierung konnte nicht verarbeitet werden."
+#: ../../mod/admin.php:192
+msgid "Blog Account"
+msgstr "Blog-Konto"
 
-#: ../../mod/register.php:149
-#, php-format
-msgid "Registration request at %s"
-msgstr "Registrierungsanfrage auf %s"
+#: ../../mod/admin.php:193
+msgid "Private Forum"
+msgstr "Privates Forum"
 
-#: ../../mod/register.php:158
-msgid "Your registration is pending approval by the site owner."
-msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
+#: ../../mod/admin.php:212
+msgid "Message queues"
+msgstr "Nachrichten-Warteschlangen"
 
-#: ../../mod/register.php:196 ../../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/admin.php:217 ../../mod/admin.php:572 ../../mod/admin.php:900
+#: ../../mod/admin.php:1004 ../../mod/admin.php:1057 ../../mod/admin.php:1223
+#: ../../mod/admin.php:1257 ../../mod/admin.php:1344
+msgid "Administration"
+msgstr "Administration"
 
-#: ../../mod/register.php:224
-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/admin.php:218
+msgid "Summary"
+msgstr "Zusammenfassung"
 
-#: ../../mod/register.php:225
-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/admin.php:220
+msgid "Registered users"
+msgstr "Registrierte Nutzer"
 
-#: ../../mod/register.php:226
-msgid "Your OpenID (optional): "
-msgstr "Deine OpenID (optional): "
+#: ../../mod/admin.php:222
+msgid "Pending registrations"
+msgstr "Anstehende Anmeldungen"
 
-#: ../../mod/register.php:240
-msgid "Include your profile in member directory?"
-msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?"
+#: ../../mod/admin.php:223
+msgid "Version"
+msgstr "Version"
 
-#: ../../mod/register.php:243 ../../mod/api.php:105 ../../mod/suggest.php:29
-#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:326
-#: ../../mod/settings.php:998 ../../mod/settings.php:1004
-#: ../../mod/settings.php:1012 ../../mod/settings.php:1016
-#: ../../mod/settings.php:1021 ../../mod/settings.php:1027
-#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
-#: ../../mod/settings.php:1069 ../../mod/settings.php:1070
-#: ../../mod/settings.php:1071 ../../mod/settings.php:1072
-#: ../../mod/settings.php:1073 ../../mod/profiles.php:614
-#: ../../mod/message.php:209 ../../include/items.php:4218
-msgid "Yes"
-msgstr "Ja"
+#: ../../mod/admin.php:225
+msgid "Active plugins"
+msgstr "Aktive Plugins"
 
-#: ../../mod/register.php:244 ../../mod/api.php:106
-#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:998
-#: ../../mod/settings.php:1004 ../../mod/settings.php:1012
-#: ../../mod/settings.php:1016 ../../mod/settings.php:1021
-#: ../../mod/settings.php:1027 ../../mod/settings.php:1033
-#: ../../mod/settings.php:1039 ../../mod/settings.php:1069
-#: ../../mod/settings.php:1070 ../../mod/settings.php:1071
-#: ../../mod/settings.php:1072 ../../mod/settings.php:1073
-#: ../../mod/profiles.php:615
-msgid "No"
-msgstr "Nein"
+#: ../../mod/admin.php:248
+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/register.php:261
-msgid "Membership on this site is by invitation only."
-msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
+#: ../../mod/admin.php:485
+msgid "Site settings updated."
+msgstr "Seiteneinstellungen aktualisiert."
 
-#: ../../mod/register.php:262
-msgid "Your invitation ID: "
-msgstr "ID deiner Einladung: "
+#: ../../mod/admin.php:514 ../../mod/settings.php:823
+msgid "No special theme for mobile devices"
+msgstr "Kein spezielles Theme für mobile Geräte verwenden."
 
-#: ../../mod/register.php:265 ../../mod/admin.php:573
-msgid "Registration"
-msgstr "Registrierung"
+#: ../../mod/admin.php:531 ../../mod/contacts.php:408
+msgid "Never"
+msgstr "Niemals"
 
-#: ../../mod/register.php:273
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Vollständiger Name (z.B. Max Mustermann): "
+#: ../../mod/admin.php:532
+msgid "At post arrival"
+msgstr "Beim Empfang von Nachrichten"
 
-#: ../../mod/register.php:274
-msgid "Your Email Address: "
-msgstr "Deine E-Mail-Adresse: "
+#: ../../mod/admin.php:533 ../../include/contact_selectors.php:56
+msgid "Frequently"
+msgstr "immer wieder"
 
-#: ../../mod/register.php:275
-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/admin.php:534 ../../include/contact_selectors.php:57
+msgid "Hourly"
+msgstr "Stündlich"
 
-#: ../../mod/register.php:276
-msgid "Choose a nickname: "
-msgstr "Spitznamen wählen: "
+#: ../../mod/admin.php:535 ../../include/contact_selectors.php:58
+msgid "Twice daily"
+msgstr "Zweimal täglich"
 
-#: ../../mod/register.php:285 ../../mod/uimport.php:64
-msgid "Import"
-msgstr "Import"
+#: ../../mod/admin.php:536 ../../include/contact_selectors.php:59
+msgid "Daily"
+msgstr "Täglich"
 
-#: ../../mod/register.php:286
-msgid "Import your profile to this friendica instance"
-msgstr "Importiere dein Profil auf diese Friendica Instanz"
+#: ../../mod/admin.php:541
+msgid "Multi user instance"
+msgstr "Mehrbenutzer Instanz"
 
-#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18
-#: ../../mod/profiles.php:133 ../../mod/profiles.php:160
-#: ../../mod/profiles.php:587
-msgid "Profile not found."
-msgstr "Profil nicht gefunden."
+#: ../../mod/admin.php:559
+msgid "Closed"
+msgstr "Geschlossen"
 
-#: ../../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."
+#: ../../mod/admin.php:560
+msgid "Requires approval"
+msgstr "Bedarf der Zustimmung"
 
-#: ../../mod/dfrn_confirm.php:119
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."
+#: ../../mod/admin.php:561
+msgid "Open"
+msgstr "Offen"
 
-#: ../../mod/dfrn_confirm.php:237
-msgid "Response from remote site was not understood."
-msgstr "Antwort der Gegenstelle unverständlich."
+#: ../../mod/admin.php:565
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
 
-#: ../../mod/dfrn_confirm.php:246
-msgid "Unexpected response from remote site: "
-msgstr "Unerwartete Antwort der Gegenstelle: "
+#: ../../mod/admin.php:566
+msgid "Force all links to use SSL"
+msgstr "SSL für alle Links erzwingen"
 
-#: ../../mod/dfrn_confirm.php:254
-msgid "Confirmation completed successfully."
-msgstr "Bestätigung erfolgreich abgeschlossen."
+#: ../../mod/admin.php:567
+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/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
-#: ../../mod/dfrn_confirm.php:277
-msgid "Remote site reported: "
-msgstr "Gegenstelle meldet: "
+#: ../../mod/admin.php:574 ../../mod/admin.php:1059 ../../mod/admin.php:1259
+#: ../../mod/admin.php:1346 ../../mod/settings.php:609
+#: ../../mod/settings.php:719 ../../mod/settings.php:793
+#: ../../mod/settings.php:872 ../../mod/settings.php:1104
+msgid "Save Settings"
+msgstr "Einstellungen speichern"
 
-#: ../../mod/dfrn_confirm.php:268
-msgid "Temporary failure. Please wait and try again."
-msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
+#: ../../mod/admin.php:575 ../../mod/register.php:265
+msgid "Registration"
+msgstr "Registrierung"
 
-#: ../../mod/dfrn_confirm.php:275
-msgid "Introduction failed or was revoked."
-msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
+#: ../../mod/admin.php:576
+msgid "File upload"
+msgstr "Datei hochladen"
 
-#: ../../mod/dfrn_confirm.php:420
-msgid "Unable to set contact photo."
-msgstr "Konnte das Bild des Kontakts nicht speichern."
+#: ../../mod/admin.php:577
+msgid "Policies"
+msgstr "Regeln"
 
-#: ../../mod/dfrn_confirm.php:477 ../../include/conversation.php:172
-#: ../../include/diaspora.php:620
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s ist nun mit %2$s befreundet"
+#: ../../mod/admin.php:578
+msgid "Advanced"
+msgstr "Erweitert"
 
-#: ../../mod/dfrn_confirm.php:562
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Für '%s' wurde kein Nutzer gefunden"
+#: ../../mod/admin.php:579
+msgid "Performance"
+msgstr "Performance"
 
-#: ../../mod/dfrn_confirm.php:572
-msgid "Our site encryption key is apparently messed up."
-msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
+#: ../../mod/admin.php:580
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
 
-#: ../../mod/dfrn_confirm.php:583
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."
+#: ../../mod/admin.php:583
+msgid "Site name"
+msgstr "Seitenname"
 
-#: ../../mod/dfrn_confirm.php:604
-msgid "Contact record was not found for you on our site."
-msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
+#: ../../mod/admin.php:584
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: ../../mod/dfrn_confirm.php:618
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."
+#: ../../mod/admin.php:585
+msgid "Additional Info"
+msgstr "Zusätzliche Informationen"
 
-#: ../../mod/dfrn_confirm.php:638
+#: ../../mod/admin.php:585
 msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."
+"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/dfrn_confirm.php:649
-msgid "Unable to set your contact credentials on our system."
-msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
+#: ../../mod/admin.php:586
+msgid "System language"
+msgstr "Systemsprache"
 
-#: ../../mod/dfrn_confirm.php:716
-msgid "Unable to update your contact profile details on our system"
-msgstr "Die Updates für dein Profil konnten nicht gespeichert werden"
+#: ../../mod/admin.php:587
+msgid "System theme"
+msgstr "Systemweites Theme"
 
-#: ../../mod/dfrn_confirm.php:751
-#, php-format
-msgid "Connection accepted at %s"
-msgstr "Auf %s wurde die Verbindung akzeptiert"
+#: ../../mod/admin.php:587
+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/dfrn_confirm.php:800
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s ist %2$s beigetreten"
+#: ../../mod/admin.php:588
+msgid "Mobile system theme"
+msgstr "Systemweites mobiles Theme"
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Verbindung der Applikation autorisieren"
+#: ../../mod/admin.php:588
+msgid "Theme for mobile devices"
+msgstr "Thema für mobile Geräte"
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
+#: ../../mod/admin.php:589
+msgid "SSL link policy"
+msgstr "Regeln für SSL Links"
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Bitte melde dich an um fortzufahren."
+#: ../../mod/admin.php:589
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
 
-#: ../../mod/api.php:104
+#: ../../mod/admin.php:590
+msgid "Old style 'Share'"
+msgstr "Altes \"Teilen\" Element"
+
+#: ../../mod/admin.php:590
+msgid "Deactivates the bbcode element 'share' for repeating items."
+msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen."
+
+#: ../../mod/admin.php:591
+msgid "Hide help entry from navigation menu"
+msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
+
+#: ../../mod/admin.php:591
 msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?"
+"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/lostpass.php:17
-msgid "No valid account found."
-msgstr "Kein gültiges Konto gefunden."
+#: ../../mod/admin.php:592
+msgid "Single user instance"
+msgstr "Ein-Nutzer Instanz"
 
-#: ../../mod/lostpass.php:33
-msgid "Password reset request issued. Check your email."
-msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail."
+#: ../../mod/admin.php:592
+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/lostpass.php:44
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
+#: ../../mod/admin.php:593
+msgid "Maximum image size"
+msgstr "Maximale Bildgröße"
 
-#: ../../mod/lostpass.php:66
+#: ../../mod/admin.php:593
 msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."
-
-#: ../../mod/lostpass.php:85
-msgid "Your password has been reset as requested."
-msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
+"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/lostpass.php:86
-msgid "Your new password is"
-msgstr "Dein neues Passwort lautet"
+#: ../../mod/admin.php:594
+msgid "Maximum image length"
+msgstr "Maximale Bildlänge"
 
-#: ../../mod/lostpass.php:87
-msgid "Save or copy your new password - and then"
-msgstr "Speichere oder kopiere dein neues Passwort - und dann"
+#: ../../mod/admin.php:594
+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/lostpass.php:88
-msgid "click here to login"
-msgstr "hier klicken, um dich anzumelden"
+#: ../../mod/admin.php:595
+msgid "JPEG image quality"
+msgstr "Qualität des JPEG Bildes"
 
-#: ../../mod/lostpass.php:89
+#: ../../mod/admin.php:595
 msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald du dich erfolgreich angemeldet hast."
+"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/lostpass.php:107
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "Auf %s wurde dein Passwort geändert"
+#: ../../mod/admin.php:597
+msgid "Register policy"
+msgstr "Registrierungsmethode"
 
-#: ../../mod/lostpass.php:122
-msgid "Forgot your Password?"
-msgstr "Hast du dein Passwort vergessen?"
+#: ../../mod/admin.php:598
+msgid "Maximum Daily Registrations"
+msgstr "Maximum täglicher Registrierungen"
 
-#: ../../mod/lostpass.php:123
+#: ../../mod/admin.php:598
 msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet."
+"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/lostpass.php:124
-msgid "Nickname or Email: "
-msgstr "Spitzname oder E-Mail:"
+#: ../../mod/admin.php:599
+msgid "Register text"
+msgstr "Registrierungstext"
 
-#: ../../mod/lostpass.php:125
-msgid "Reset"
-msgstr "Zurücksetzen"
+#: ../../mod/admin.php:599
+msgid "Will be displayed prominently on the registration page."
+msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
 
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."
+#: ../../mod/admin.php:600
+msgid "Accounts abandoned after x days"
+msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
 
-#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
-msgid "No recipient selected."
-msgstr "Kein Empfänger gewählt."
+#: ../../mod/admin.php:600
+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/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "Konnte deinen Heimatort nicht bestimmen."
+#: ../../mod/admin.php:601
+msgid "Allowed friend domains"
+msgstr "Erlaubte Domains für Kontakte"
 
-#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
-msgid "Message could not be sent."
-msgstr "Nachricht konnte nicht gesendet werden."
+#: ../../mod/admin.php:601
+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/wallmessage.php:65 ../../mod/message.php:73
-msgid "Message collection failure."
-msgstr "Konnte Nachrichten nicht abrufen."
+#: ../../mod/admin.php:602
+msgid "Allowed email domains"
+msgstr "Erlaubte Domains für E-Mails"
 
-#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
-msgid "Message sent."
-msgstr "Nachricht gesendet."
+#: ../../mod/admin.php:602
+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/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Kein Empfänger."
+#: ../../mod/admin.php:603
+msgid "Block public"
+msgstr "Öffentlichen Zugriff blockieren"
 
-#: ../../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:1000 ../../include/conversation.php:1018
-msgid "Please enter a link URL:"
-msgstr "Bitte gib die URL des Links ein:"
+#: ../../mod/admin.php:603
+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/wallmessage.php:142 ../../mod/message.php:319
-msgid "Send Private Message"
-msgstr "Private Nachricht senden"
+#: ../../mod/admin.php:604
+msgid "Force publish"
+msgstr "Erzwinge Veröffentlichung"
 
-#: ../../mod/wallmessage.php:143
-#, php-format
+#: ../../mod/admin.php:604
 msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
-msgstr "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."
+"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/wallmessage.php:144 ../../mod/message.php:320
-#: ../../mod/message.php:553
-msgid "To:"
-msgstr "An:"
+#: ../../mod/admin.php:605
+msgid "Global directory update URL"
+msgstr "URL für Updates beim weltweiten Verzeichnis"
 
-#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
-#: ../../mod/message.php:555
-msgid "Subject:"
-msgstr "Betreff:"
+#: ../../mod/admin.php:605
+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/wallmessage.php:151 ../../mod/message.php:329
-#: ../../mod/message.php:558 ../../mod/invite.php:134
-msgid "Your message:"
-msgstr "Deine Nachricht:"
+#: ../../mod/admin.php:606
+msgid "Allow threaded items"
+msgstr "Erlaube Threads in Diskussionen"
 
-#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
-#: ../../mod/message.php:332 ../../mod/message.php:562
-#: ../../include/conversation.php:1084
-msgid "Upload photo"
-msgstr "Foto hochladen"
+#: ../../mod/admin.php:606
+msgid "Allow infinite level threading for items on this site."
+msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
 
-#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114
-#: ../../mod/message.php:333 ../../mod/message.php:563
-#: ../../include/conversation.php:1088
-msgid "Insert web link"
-msgstr "Einen Link einfügen"
+#: ../../mod/admin.php:607
+msgid "Private posts by default for new users"
+msgstr "Private Beiträge als Standard für neue Nutzer"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Willkommen bei Friendica"
+#: ../../mod/admin.php:607
+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/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Checkliste für neue Mitglieder"
+#: ../../mod/admin.php:608
+msgid "Don't include post content in email notifications"
+msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
 
-#: ../../mod/newmember.php:12
+#: ../../mod/admin.php:608
 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 "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."
-
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Einstieg"
+"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/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Friendica Rundgang"
+#: ../../mod/admin.php:609
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
 
-#: ../../mod/newmember.php:18
+#: ../../mod/admin.php:609
 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 "Auf der <em>Quick Start</em> Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst."
+"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/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Gehe zu deinen Einstellungen"
+#: ../../mod/admin.php:610
+msgid "Don't embed private images in posts"
+msgstr "Private Bilder nicht in Beiträgen einbetten."
 
-#: ../../mod/newmember.php:26
+#: ../../mod/admin.php:610
 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 "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."
+"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 "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/newmember.php:28
+#: ../../mod/admin.php:611
+msgid "Allow Users to set remote_self"
+msgstr "Nutzern erlauben das remote_self Flag zu setzen"
+
+#: ../../mod/admin.php:611
 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 "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können."
+"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/newmember.php:36 ../../mod/profile_photo.php:244
-msgid "Upload Profile Photo"
-msgstr "Profilbild hochladen"
+#: ../../mod/admin.php:612
+msgid "Block multiple registrations"
+msgstr "Unterbinde Mehrfachregistrierung"
 
-#: ../../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 "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust."
+#: ../../mod/admin.php:612
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Editiere dein Profil"
+#: ../../mod/admin.php:613
+msgid "OpenID support"
+msgstr "OpenID Unterstützung"
 
-#: ../../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 "Editiere dein <strong>Standard</strong> Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils."
+#: ../../mod/admin.php:613
+msgid "OpenID support for registration and logins."
+msgstr "OpenID-Unterstützung für Registrierung und Login."
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Profil Schlüsselbegriffe"
+#: ../../mod/admin.php:614
+msgid "Fullname check"
+msgstr "Namen auf Vollständigkeit überprüfen"
 
-#: ../../mod/newmember.php:40
+#: ../../mod/admin.php:614
 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 "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen."
+"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/newmember.php:44
-msgid "Connecting"
-msgstr "Verbindungen knüpfen"
+#: ../../mod/admin.php:615
+msgid "UTF-8 Regular expressions"
+msgstr "UTF-8 Reguläre Ausdrücke"
 
-#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-#: ../../include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../mod/admin.php:615
+msgid "Use PHP UTF8 regular expressions"
+msgstr "PHP UTF8 Ausdrücke verwenden"
 
-#: ../../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 "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst."
+#: ../../mod/admin.php:616
+msgid "Show Community Page"
+msgstr "Gemeinschaftsseite anzeigen"
 
-#: ../../mod/newmember.php:51
+#: ../../mod/admin.php:616
 msgid ""
-"<em>If</em> this is your own personal server, installing the Facebook addon "
-"may ease your transition to the free social web."
-msgstr "<em>Wenn</em> dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten."
+"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/newmember.php:56
-msgid "Importing Emails"
-msgstr "Emails Importieren"
+#: ../../mod/admin.php:617
+msgid "Enable OStatus support"
+msgstr "OStatus Unterstützung aktivieren"
 
-#: ../../mod/newmember.php:56
+#: ../../mod/admin.php:617
 msgid ""
-"Enter your email access information on your Connector Settings page if you "
-"wish to import and interact with friends or mailing lists from your email "
-"INBOX"
-msgstr "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst."
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "Biete die eingebaute OStatus (iStatusNet, GNU Social, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt."
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "Gehe zu deiner Kontakt-Seite"
+#: ../../mod/admin.php:618
+msgid "OStatus conversation completion interval"
+msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen"
 
-#: ../../mod/newmember.php:58
+#: ../../mod/admin.php:618
 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 "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein."
+"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/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr "Gehe zum Verzeichnis deiner Friendica Instanz"
+#: ../../mod/admin.php:619
+msgid "Enable Diaspora support"
+msgstr "Diaspora-Support aktivieren"
 
-#: ../../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 "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst."
+#: ../../mod/admin.php:619
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-msgstr "Neue Leute kennenlernen"
+#: ../../mod/admin.php:620
+msgid "Only allow Friendica contacts"
+msgstr "Nur Friendica-Kontakte erlauben"
 
-#: ../../mod/newmember.php:62
+#: ../../mod/admin.php:620
 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 "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
-
-#: ../../mod/newmember.php:66 ../../include/group.php:270
-msgid "Groups"
-msgstr "Gruppen"
+"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/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "Gruppiere deine Kontakte"
+#: ../../mod/admin.php:621
+msgid "Verify SSL"
+msgstr "SSL Überprüfen"
 
-#: ../../mod/newmember.php:70
+#: ../../mod/admin.php:621
 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 "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."
+"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/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "Warum sind meine Beiträge nicht öffentlich?"
+#: ../../mod/admin.php:622
+msgid "Proxy user"
+msgstr "Proxy Nutzer"
 
-#: ../../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 "Friendica respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."
+#: ../../mod/admin.php:623
+msgid "Proxy URL"
+msgstr "Proxy URL"
 
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr "Hilfe bekommen"
+#: ../../mod/admin.php:624
+msgid "Network timeout"
+msgstr "Netzwerk Wartezeit"
 
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "Zum Hilfe Abschnitt gehen"
+#: ../../mod/admin.php:624
+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/newmember.php:82
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
+#: ../../mod/admin.php:625
+msgid "Delivery interval"
+msgstr "Zustellungsintervall"
 
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Möchtest du wirklich diese Empfehlung löschen?"
+#: ../../mod/admin.php:625
+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/suggest.php:32 ../../mod/editpost.php:148
-#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:329
-#: ../../mod/settings.php:609 ../../mod/settings.php:635
-#: ../../mod/message.php:212 ../../mod/photos.php:203 ../../mod/photos.php:292
-#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81
-#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1122
-#: ../../include/items.php:4221
-msgid "Cancel"
-msgstr "Abbrechen"
+#: ../../mod/admin.php:626
+msgid "Poll interval"
+msgstr "Abfrageintervall"
 
-#: ../../mod/suggest.php:72
+#: ../../mod/admin.php:626
 msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
+"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/suggest.php:90
-msgid "Ignore/Hide"
-msgstr "Ignorieren/Verbergen"
+#: ../../mod/admin.php:627
+msgid "Maximum Load Average"
+msgstr "Maximum Load Average"
 
-#: ../../mod/network.php:136
-msgid "Search Results For:"
-msgstr "Suchergebnisse für:"
+#: ../../mod/admin.php:627
+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/network.php:179 ../../mod/_search.php:21 ../../mod/search.php:21
-msgid "Remove term"
-msgstr "Begriff entfernen"
+#: ../../mod/admin.php:629
+msgid "Use MySQL full text engine"
+msgstr "Nutze MySQL full text engine"
 
-#: ../../mod/network.php:188 ../../mod/_search.php:30 ../../mod/search.php:30
-#: ../../include/features.php:42
-msgid "Saved Searches"
-msgstr "Gespeicherte Suchen"
+#: ../../mod/admin.php:629
+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/network.php:189 ../../include/group.php:275
-msgid "add"
-msgstr "hinzufügen"
+#: ../../mod/admin.php:630
+msgid "Suppress Language"
+msgstr "Sprachinformation unterdrücken"
 
-#: ../../mod/network.php:350
-msgid "Commented Order"
-msgstr "Neueste Kommentare"
+#: ../../mod/admin.php:630
+msgid "Suppress language information in meta information about a posting."
+msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags."
 
-#: ../../mod/network.php:353
-msgid "Sort by Comment Date"
-msgstr "Nach Kommentardatum sortieren"
+#: ../../mod/admin.php:631
+msgid "Path to item cache"
+msgstr "Pfad zum Eintrag Cache"
 
-#: ../../mod/network.php:356
-msgid "Posted Order"
-msgstr "Neueste Beiträge"
+#: ../../mod/admin.php:632
+msgid "Cache duration in seconds"
+msgstr "Cache-Dauer in Sekunden"
 
-#: ../../mod/network.php:359
-msgid "Sort by Post Date"
-msgstr "Nach Beitragsdatum sortieren"
+#: ../../mod/admin.php:632
+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/network.php:365 ../../mod/notifications.php:88
-msgid "Personal"
-msgstr "Persönlich"
+#: ../../mod/admin.php:633
+msgid "Path for lock file"
+msgstr "Pfad für die Sperrdatei"
 
-#: ../../mod/network.php:368
-msgid "Posts that mention or involve you"
-msgstr "Beiträge, in denen es um dich geht"
+#: ../../mod/admin.php:634
+msgid "Temp path"
+msgstr "Temp Pfad"
 
-#: ../../mod/network.php:374
-msgid "New"
-msgstr "Neue"
+#: ../../mod/admin.php:635
+msgid "Base path to installation"
+msgstr "Basis-Pfad zur Installation"
 
-#: ../../mod/network.php:377
-msgid "Activity Stream - by date"
-msgstr "Aktivitäten-Stream - nach Datum"
+#: ../../mod/admin.php:637
+msgid "New base url"
+msgstr "Neue Basis-URL"
 
-#: ../../mod/network.php:383
-msgid "Shared Links"
-msgstr "Geteilte Links"
+#: ../../mod/admin.php:655
+msgid "Update has been marked successful"
+msgstr "Update wurde als erfolgreich markiert"
 
-#: ../../mod/network.php:386
-msgid "Interesting Links"
-msgstr "Interessante Links"
+#: ../../mod/admin.php:665
+#, php-format
+msgid "Executing %s failed. Check system logs."
+msgstr "Ausführung von %s schlug fehl. Systemprotokolle prüfen."
 
-#: ../../mod/network.php:392
-msgid "Starred"
-msgstr "Markierte"
+#: ../../mod/admin.php:668
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Update %s war erfolgreich."
 
-#: ../../mod/network.php:395
-msgid "Favourite Posts"
-msgstr "Favorisierte Beiträge"
+#: ../../mod/admin.php:672
+#, 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/network.php:457
+#: ../../mod/admin.php:675
 #, 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] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk."
-msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken."
+msgid "Update function %s could not be found."
+msgstr "Updatefunktion %s konnte nicht gefunden werden."
 
-#: ../../mod/network.php:460
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."
+#: ../../mod/admin.php:690
+msgid "No failed updates."
+msgstr "Keine fehlgeschlagenen Updates."
 
-#: ../../mod/network.php:514 ../../mod/content.php:119
-msgid "No such group"
-msgstr "Es gibt keine solche Gruppe"
+#: ../../mod/admin.php:694
+msgid "Failed Updates"
+msgstr "Fehlgeschlagene Updates"
 
-#: ../../mod/network.php:531 ../../mod/content.php:130
-msgid "Group is empty"
-msgstr "Gruppe ist leer"
+#: ../../mod/admin.php:695
+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/network.php:538 ../../mod/content.php:134
-msgid "Group: "
-msgstr "Gruppe: "
+#: ../../mod/admin.php:696
+msgid "Mark success (if update was manually applied)"
+msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
 
-#: ../../mod/network.php:548
-msgid "Contact: "
-msgstr "Kontakt: "
+#: ../../mod/admin.php:697
+msgid "Attempt to execute this update step automatically"
+msgstr "Versuchen, diesen Schritt automatisch auszuführen"
 
-#: ../../mod/network.php:550
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."
+#: ../../mod/admin.php:737 ../../mod/register.php:92 ../../mod/regmod.php:54
+#, php-format
+msgid "Registration details for %s"
+msgstr "Details der Registration von %s"
 
-#: ../../mod/network.php:555
-msgid "Invalid contact."
-msgstr "Ungültiger Kontakt."
+#: ../../mod/admin.php:743
+msgid "Registration successful. Email send to user"
+msgstr "Registration erfolgreich. Dem Nutzer wurde eine Email gesended."
 
-#: ../../mod/install.php:117
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica-Server für soziale Netzwerke – Setup"
+#: ../../mod/admin.php:753
+#, 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/install.php:123
-msgid "Could not connect to database."
-msgstr "Verbindung zur Datenbank gescheitert."
+#: ../../mod/admin.php:760
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s Nutzer gelöscht"
+msgstr[1] "%s Nutzer gelöscht"
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "Tabelle konnte nicht angelegt werden."
+#: ../../mod/admin.php:799
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Nutzer '%s' gelöscht"
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
-msgstr "Die Datenbank deiner Friendicaseite wurde installiert."
+#: ../../mod/admin.php:807
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Nutzer '%s' entsperrt"
 
-#: ../../mod/install.php:138
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Möglicherweise musst du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."
+#: ../../mod/admin.php:807
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Nutzer '%s' gesperrt"
 
-#: ../../mod/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:521
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Lies bitte die \"INSTALL.txt\"."
+#: ../../mod/admin.php:902
+msgid "Add User"
+msgstr "Nutzer hinzufügen"
 
-#: ../../mod/install.php:203
-msgid "System check"
-msgstr "Systemtest"
+#: ../../mod/admin.php:903
+msgid "select all"
+msgstr "Alle auswählen"
 
-#: ../../mod/install.php:207 ../../mod/events.php:373
-msgid "Next"
-msgstr "Nächste"
+#: ../../mod/admin.php:904
+msgid "User registrations waiting for confirm"
+msgstr "Neuanmeldungen, die auf deine Bestätigung warten"
 
-#: ../../mod/install.php:208
-msgid "Check again"
-msgstr "Noch einmal testen"
+#: ../../mod/admin.php:905
+msgid "User waiting for permanent deletion"
+msgstr "Nutzer wartet auf permanente Löschung"
 
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "Datenbankverbindung"
+#: ../../mod/admin.php:906
+msgid "Request date"
+msgstr "Anfragedatum"
 
-#: ../../mod/install.php:228
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit deiner Datenbank Kontakt aufnehmen können."
+#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919
+#: ../../mod/admin.php:932 ../../mod/settings.php:611
+#: ../../mod/settings.php:637 ../../mod/crepair.php:150
+msgid "Name"
+msgstr "Name"
 
-#: ../../mod/install.php:229
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls du Fragen zu diesen Einstellungen haben solltest."
+#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919
+#: ../../mod/admin.php:934 ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:86
+msgid "Email"
+msgstr "E-Mail"
 
-#: ../../mod/install.php:230
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "Die Datenbank, die du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor du mit der Installation fortfährst."
+#: ../../mod/admin.php:907
+msgid "No registrations."
+msgstr "Keine Neuanmeldungen."
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
-msgstr "Datenbank-Server"
+#: ../../mod/admin.php:909
+msgid "Deny"
+msgstr "Verwehren"
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
-msgstr "Datenbank-Nutzer"
+#: ../../mod/admin.php:911 ../../mod/contacts.php:431
+#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
+msgid "Block"
+msgstr "Sperren"
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
-msgstr "Datenbank-Passwort"
+#: ../../mod/admin.php:912 ../../mod/contacts.php:431
+#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
+msgid "Unblock"
+msgstr "Entsperren"
 
-#: ../../mod/install.php:237
-msgid "Database Name"
-msgstr "Datenbank-Name"
+#: ../../mod/admin.php:913
+msgid "Site admin"
+msgstr "Seitenadministrator"
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "E-Mail-Adresse des Administrators"
+#: ../../mod/admin.php:914
+msgid "Account expired"
+msgstr "Account ist abgelaufen"
 
-#: ../../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 "Die E-Mail-Adresse, die in deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit du das Admin-Panel benutzen kannst."
+#: ../../mod/admin.php:917
+msgid "New User"
+msgstr "Neuer Nutzer"
 
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
-msgstr "Bitte wähle die Standardzeitzone deiner Webseite"
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Register date"
+msgstr "Anmeldedatum"
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "Server-Einstellungen"
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Last login"
+msgstr "Letzte Anmeldung"
 
-#: ../../mod/install.php:321
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Last item"
+msgstr "Letzter Beitrag"
 
-#: ../../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 "Wenn du keine Kommandozeilen Version von PHP auf deinem Server installiert hast, kannst du keine Hintergrundprozesse via cron starten. Siehe <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+#: ../../mod/admin.php:918
+msgid "Deleted since"
+msgstr "Gelöscht seit"
 
-#: ../../mod/install.php:326
-msgid "PHP executable path"
-msgstr "Pfad zu PHP"
+#: ../../mod/admin.php:919 ../../mod/settings.php:36
+msgid "Account"
+msgstr "Nutzerkonto"
 
-#: ../../mod/install.php:326
+#: ../../mod/admin.php:921
 msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."
-
-#: ../../mod/install.php:331
-msgid "Command line PHP"
-msgstr "Kommandozeilen-PHP"
+"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/install.php:340
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"
+#: ../../mod/admin.php:922
+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/install.php:341
-msgid "Found PHP version: "
-msgstr "Gefundene PHP Version:"
+#: ../../mod/admin.php:932
+msgid "Name of the new user."
+msgstr "Name des neuen Nutzers"
 
-#: ../../mod/install.php:343
-msgid "PHP cli binary"
-msgstr "PHP CLI Binary"
+#: ../../mod/admin.php:933
+msgid "Nickname"
+msgstr "Spitzname"
 
-#: ../../mod/install.php:354
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "Die Kommandozeilenversion von PHP auf deinem System hat \"register_argc_argv\" nicht aktiviert."
+#: ../../mod/admin.php:933
+msgid "Nickname of the new user."
+msgstr "Spitznamen für den neuen Nutzer"
 
-#: ../../mod/install.php:355
-msgid "This is required for message delivery to work."
-msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
+#: ../../mod/admin.php:934
+msgid "Email address of the new user."
+msgstr "Email Adresse des neuen Nutzers"
 
-#: ../../mod/install.php:357
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../mod/admin.php:967
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Plugin %s deaktiviert."
 
-#: ../../mod/install.php:378
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"
+#: ../../mod/admin.php:971
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Plugin %s aktiviert."
 
-#: ../../mod/install.php:379
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Wenn der Server unter Windows läuft, schau dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."
+#: ../../mod/admin.php:981 ../../mod/admin.php:1195
+msgid "Disable"
+msgstr "Ausschalten"
 
-#: ../../mod/install.php:381
-msgid "Generate encryption keys"
-msgstr "Schlüssel erzeugen"
+#: ../../mod/admin.php:983 ../../mod/admin.php:1197
+msgid "Enable"
+msgstr "Einschalten"
 
-#: ../../mod/install.php:388
-msgid "libCurl PHP module"
-msgstr "PHP: libCurl-Modul"
+#: ../../mod/admin.php:1006 ../../mod/admin.php:1225
+msgid "Toggle"
+msgstr "Umschalten"
 
-#: ../../mod/install.php:389
-msgid "GD graphics PHP module"
-msgstr "PHP: GD-Grafikmodul"
+#: ../../mod/admin.php:1007 ../../mod/admin.php:1226
+#: ../../mod/newmember.php:22 ../../mod/settings.php:85
+#: ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:169
+msgid "Settings"
+msgstr "Einstellungen"
 
-#: ../../mod/install.php:390
-msgid "OpenSSL PHP module"
-msgstr "PHP: OpenSSL-Modul"
+#: ../../mod/admin.php:1014 ../../mod/admin.php:1235
+msgid "Author: "
+msgstr "Autor:"
 
-#: ../../mod/install.php:391
-msgid "mysqli PHP module"
-msgstr "PHP: mysqli-Modul"
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1236
+msgid "Maintainer: "
+msgstr "Betreuer:"
 
-#: ../../mod/install.php:392
-msgid "mb_string PHP module"
-msgstr "PHP: mb_string-Modul"
+#: ../../mod/admin.php:1155
+msgid "No themes found."
+msgstr "Keine Themen gefunden."
 
-#: ../../mod/install.php:397 ../../mod/install.php:399
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite module"
+#: ../../mod/admin.php:1217
+msgid "Screenshot"
+msgstr "Bildschirmfoto"
 
-#: ../../mod/install.php:397
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."
+#: ../../mod/admin.php:1263
+msgid "[Experimental]"
+msgstr "[Experimentell]"
 
-#: ../../mod/install.php:405
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
+#: ../../mod/admin.php:1264
+msgid "[Unsupported]"
+msgstr "[Nicht unterstützt]"
 
-#: ../../mod/install.php:409
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."
+#: ../../mod/admin.php:1291
+msgid "Log settings updated."
+msgstr "Protokolleinstellungen aktualisiert."
 
-#: ../../mod/install.php:413
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
+#: ../../mod/admin.php:1347
+msgid "Clear"
+msgstr "löschen"
 
-#: ../../mod/install.php:417
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert."
+#: ../../mod/admin.php:1353
+msgid "Enable Debugging"
+msgstr "Protokoll führen"
 
-#: ../../mod/install.php:421
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
+#: ../../mod/admin.php:1354
+msgid "Log file"
+msgstr "Protokolldatei"
 
-#: ../../mod/install.php:438
+#: ../../mod/admin.php:1354
 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 "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
 
-#: ../../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 "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast."
+#: ../../mod/admin.php:1355
+msgid "Log level"
+msgstr "Protokoll-Level"
 
-#: ../../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 "Nachdem du alles ausgefüllt hast, erhältst du einen Text, den du in eine Datei namens .htconfig.php in deinem Friendica-Wurzelverzeichnis kopieren musst."
+#: ../../mod/admin.php:1404 ../../mod/contacts.php:487
+msgid "Update now"
+msgstr "Jetzt aktualisieren"
 
-#: ../../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 "Alternativ kannst du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest du in der Datei INSTALL.txt."
+#: ../../mod/admin.php:1405
+msgid "Close"
+msgstr "Schließen"
 
-#: ../../mod/install.php:444
-msgid ".htconfig.php is writable"
-msgstr "Schreibrechte auf .htconfig.php"
+#: ../../mod/admin.php:1411
+msgid "FTP Host"
+msgstr "FTP Host"
 
-#: ../../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 "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."
+#: ../../mod/admin.php:1412
+msgid "FTP Path"
+msgstr "FTP Pfad"
 
-#: ../../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 "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."
+#: ../../mod/admin.php:1413
+msgid "FTP User"
+msgstr "FTP Nutzername"
 
-#: ../../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 "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."
+#: ../../mod/admin.php:1414
+msgid "FTP Password"
+msgstr "FTP Passwort"
 
-#: ../../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 "Hinweis: aus Sicherheitsgründen solltest du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."
-
-#: ../../mod/install.php:460
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 ist schreibbar"
+#: ../../mod/message.php:9 ../../include/nav.php:161
+msgid "New Message"
+msgstr "Neue Nachricht"
 
-#: ../../mod/install.php:472
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."
+#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
+msgid "No recipient selected."
+msgstr "Kein Empfänger gewählt."
 
-#: ../../mod/install.php:474
-msgid "Url rewrite is working"
-msgstr "URL rewrite funktioniert"
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Konnte die Kontaktinformationen nicht finden."
 
-#: ../../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 "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis deiner Friendica-Installation zu erzeugen."
+#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
+msgid "Message could not be sent."
+msgstr "Nachricht konnte nicht gesendet werden."
 
-#: ../../mod/install.php:508
-msgid "Errors encountered creating database tables."
-msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."
+#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
+msgid "Message collection failure."
+msgstr "Konnte Nachrichten nicht abrufen."
 
-#: ../../mod/install.php:519
-msgid "<h1>What next</h1>"
-msgstr "<h1>Wie geht es weiter?</h1>"
+#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
+msgid "Message sent."
+msgstr "Nachricht gesendet."
 
-#: ../../mod/install.php:520
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Möchtest du wirklich diese Nachricht löschen?"
 
-#: ../../mod/admin.php:55
-msgid "Theme settings updated."
-msgstr "Themeneinstellungen aktualisiert."
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "Nachricht gelöscht."
 
-#: ../../mod/admin.php:101 ../../mod/admin.php:571
-msgid "Site"
-msgstr "Seite"
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "Unterhaltung gelöscht."
 
-#: ../../mod/admin.php:102 ../../mod/admin.php:899 ../../mod/admin.php:914
-msgid "Users"
-msgstr "Nutzer"
+#: ../../mod/message.php:283 ../../mod/message.php:291
+#: ../../mod/message.php:466 ../../mod/message.php:474
+#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
+#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
+msgid "Please enter a link URL:"
+msgstr "Bitte gib die URL des Links ein:"
 
-#: ../../mod/admin.php:103 ../../mod/admin.php:1003 ../../mod/admin.php:1045
-#: ../../mod/settings.php:56
-msgid "Plugins"
-msgstr "Plugins"
+#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
+msgid "Send Private Message"
+msgstr "Private Nachricht senden"
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:1211 ../../mod/admin.php:1245
-msgid "Themes"
-msgstr "Themen"
+#: ../../mod/message.php:320 ../../mod/message.php:553
+#: ../../mod/wallmessage.php:144
+msgid "To:"
+msgstr "An:"
 
-#: ../../mod/admin.php:105
-msgid "DB updates"
-msgstr "DB Updates"
+#: ../../mod/message.php:325 ../../mod/message.php:555
+#: ../../mod/wallmessage.php:145
+msgid "Subject:"
+msgstr "Betreff:"
 
-#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1332
-msgid "Logs"
-msgstr "Protokolle"
+#: ../../mod/message.php:329 ../../mod/message.php:558
+#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
+msgid "Your message:"
+msgstr "Deine Nachricht:"
 
-#: ../../mod/admin.php:125 ../../include/nav.php:180
-msgid "Admin"
-msgstr "Administration"
+#: ../../mod/message.php:332 ../../mod/message.php:562
+#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154
+#: ../../include/conversation.php:1089
+msgid "Upload photo"
+msgstr "Foto hochladen"
 
-#: ../../mod/admin.php:126
-msgid "Plugin Features"
-msgstr "Plugin Features"
+#: ../../mod/message.php:333 ../../mod/message.php:563
+#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155
+#: ../../include/conversation.php:1093
+msgid "Insert web link"
+msgstr "Einen Link einfügen"
 
-#: ../../mod/admin.php:128
-msgid "User registrations waiting for confirmation"
-msgstr "Nutzeranmeldungen die auf Bestätigung warten"
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Keine Nachrichten."
 
-#: ../../mod/admin.php:187 ../../mod/admin.php:853
-msgid "Normal Account"
-msgstr "Normales Konto"
+#: ../../mod/message.php:378
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "'Unbekannter Absender - %s"
 
-#: ../../mod/admin.php:188 ../../mod/admin.php:854
-msgid "Soapbox Account"
-msgstr "Marktschreier-Konto"
+#: ../../mod/message.php:381
+#, php-format
+msgid "You and %s"
+msgstr "Du und %s"
 
-#: ../../mod/admin.php:189 ../../mod/admin.php:855
-msgid "Community/Celebrity Account"
-msgstr "Forum/Promi-Konto"
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s und du"
 
-#: ../../mod/admin.php:190 ../../mod/admin.php:856
-msgid "Automatic Friend Account"
-msgstr "Automatisches Freundekonto"
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Unterhaltung löschen"
 
-#: ../../mod/admin.php:191
-msgid "Blog Account"
-msgstr "Blog-Konto"
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D, d. M Y - g:i A"
 
-#: ../../mod/admin.php:192
-msgid "Private Forum"
-msgstr "Privates Forum"
+#: ../../mod/message.php:411
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d Nachricht"
+msgstr[1] "%d Nachrichten"
 
-#: ../../mod/admin.php:211
-msgid "Message queues"
-msgstr "Nachrichten-Warteschlangen"
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "Nachricht nicht verfügbar."
 
-#: ../../mod/admin.php:216 ../../mod/admin.php:570 ../../mod/admin.php:898
-#: ../../mod/admin.php:1002 ../../mod/admin.php:1044 ../../mod/admin.php:1210
-#: ../../mod/admin.php:1244 ../../mod/admin.php:1331
-msgid "Administration"
-msgstr "Administration"
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Nachricht löschen"
 
-#: ../../mod/admin.php:217
-msgid "Summary"
-msgstr "Zusammenfassung"
+#: ../../mod/message.php:548
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst du auf der Profilseite des Absenders antworten."
 
-#: ../../mod/admin.php:219
-msgid "Registered users"
-msgstr "Registrierte Nutzer"
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Antwort senden"
 
-#: ../../mod/admin.php:221
-msgid "Pending registrations"
-msgstr "Anstehende Anmeldungen"
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "Beitrag nicht gefunden"
 
-#: ../../mod/admin.php:222
-msgid "Version"
-msgstr "Version"
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Beitrag bearbeiten"
 
-#: ../../mod/admin.php:224
-msgid "Active plugins"
-msgstr "Aktive Plugins"
+#: ../../mod/editpost.php:111 ../../include/conversation.php:1090
+msgid "upload photo"
+msgstr "Bild hochladen"
 
-#: ../../mod/admin.php:247
-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/editpost.php:112 ../../include/conversation.php:1091
+msgid "Attach file"
+msgstr "Datei anhängen"
 
-#: ../../mod/admin.php:483
-msgid "Site settings updated."
-msgstr "Seiteneinstellungen aktualisiert."
+#: ../../mod/editpost.php:113 ../../include/conversation.php:1092
+msgid "attach file"
+msgstr "Datei anhängen"
 
-#: ../../mod/admin.php:512 ../../mod/settings.php:822
-msgid "No special theme for mobile devices"
-msgstr "Kein spezielles Theme für mobile Geräte verwenden."
+#: ../../mod/editpost.php:115 ../../include/conversation.php:1094
+msgid "web link"
+msgstr "Weblink"
 
-#: ../../mod/admin.php:529 ../../mod/contacts.php:408
-msgid "Never"
-msgstr "Niemals"
+#: ../../mod/editpost.php:116 ../../include/conversation.php:1095
+msgid "Insert video link"
+msgstr "Video-Adresse einfügen"
 
-#: ../../mod/admin.php:530
-msgid "At post arrival"
-msgstr "Beim Empfang von Nachrichten"
+#: ../../mod/editpost.php:117 ../../include/conversation.php:1096
+msgid "video link"
+msgstr "Video-Link"
 
-#: ../../mod/admin.php:531 ../../include/contact_selectors.php:56
-msgid "Frequently"
-msgstr "immer wieder"
+#: ../../mod/editpost.php:118 ../../include/conversation.php:1097
+msgid "Insert audio link"
+msgstr "Audio-Adresse einfügen"
 
-#: ../../mod/admin.php:532 ../../include/contact_selectors.php:57
-msgid "Hourly"
-msgstr "Stündlich"
+#: ../../mod/editpost.php:119 ../../include/conversation.php:1098
+msgid "audio link"
+msgstr "Audio-Link"
 
-#: ../../mod/admin.php:533 ../../include/contact_selectors.php:58
-msgid "Twice daily"
-msgstr "Zweimal täglich"
+#: ../../mod/editpost.php:120 ../../include/conversation.php:1099
+msgid "Set your location"
+msgstr "Deinen Standort festlegen"
 
-#: ../../mod/admin.php:534 ../../include/contact_selectors.php:59
-msgid "Daily"
-msgstr "Täglich"
+#: ../../mod/editpost.php:121 ../../include/conversation.php:1100
+msgid "set location"
+msgstr "Ort setzen"
 
-#: ../../mod/admin.php:539
-msgid "Multi user instance"
-msgstr "Mehrbenutzer Instanz"
+#: ../../mod/editpost.php:122 ../../include/conversation.php:1101
+msgid "Clear browser location"
+msgstr "Browser-Standort leeren"
 
-#: ../../mod/admin.php:557
-msgid "Closed"
-msgstr "Geschlossen"
+#: ../../mod/editpost.php:123 ../../include/conversation.php:1102
+msgid "clear location"
+msgstr "Ort löschen"
 
-#: ../../mod/admin.php:558
-msgid "Requires approval"
-msgstr "Bedarf der Zustimmung"
+#: ../../mod/editpost.php:125 ../../include/conversation.php:1108
+msgid "Permission settings"
+msgstr "Berechtigungseinstellungen"
 
-#: ../../mod/admin.php:559
-msgid "Open"
-msgstr "Offen"
+#: ../../mod/editpost.php:133 ../../include/conversation.php:1117
+msgid "CC: email addresses"
+msgstr "Cc: E-Mail-Addressen"
 
-#: ../../mod/admin.php:563
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
+#: ../../mod/editpost.php:134 ../../include/conversation.php:1118
+msgid "Public post"
+msgstr "Öffentlicher Beitrag"
 
-#: ../../mod/admin.php:564
-msgid "Force all links to use SSL"
-msgstr "SSL für alle Links erzwingen"
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1104
+msgid "Set title"
+msgstr "Titel setzen"
 
-#: ../../mod/admin.php:565
-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/editpost.php:139 ../../include/conversation.php:1106
+msgid "Categories (comma-separated list)"
+msgstr "Kategorien (kommasepariert)"
 
-#: ../../mod/admin.php:572 ../../mod/admin.php:1046 ../../mod/admin.php:1246
-#: ../../mod/admin.php:1333 ../../mod/settings.php:608
-#: ../../mod/settings.php:718 ../../mod/settings.php:792
-#: ../../mod/settings.php:871 ../../mod/settings.php:1101
-msgid "Save Settings"
-msgstr "Einstellungen speichern"
+#: ../../mod/editpost.php:140 ../../include/conversation.php:1120
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Z.B.: bob@example.com, mary@example.com"
 
-#: ../../mod/admin.php:574
-msgid "File upload"
-msgstr "Datei hochladen"
+#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18
+#: ../../mod/profiles.php:133 ../../mod/profiles.php:160
+#: ../../mod/profiles.php:587
+msgid "Profile not found."
+msgstr "Profil nicht gefunden."
 
-#: ../../mod/admin.php:575
-msgid "Policies"
-msgstr "Regeln"
+#: ../../mod/dfrn_confirm.php:119
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."
 
-#: ../../mod/admin.php:576
-msgid "Advanced"
-msgstr "Erweitert"
+#: ../../mod/dfrn_confirm.php:237
+msgid "Response from remote site was not understood."
+msgstr "Antwort der Gegenstelle unverständlich."
 
-#: ../../mod/admin.php:577
-msgid "Performance"
-msgstr "Performance"
+#: ../../mod/dfrn_confirm.php:246
+msgid "Unexpected response from remote site: "
+msgstr "Unerwartete Antwort der Gegenstelle: "
 
-#: ../../mod/admin.php:578
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
+#: ../../mod/dfrn_confirm.php:254
+msgid "Confirmation completed successfully."
+msgstr "Bestätigung erfolgreich abgeschlossen."
 
-#: ../../mod/admin.php:581
-msgid "Site name"
-msgstr "Seitenname"
+#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
+#: ../../mod/dfrn_confirm.php:277
+msgid "Remote site reported: "
+msgstr "Gegenstelle meldet: "
 
-#: ../../mod/admin.php:582
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: ../../mod/dfrn_confirm.php:268
+msgid "Temporary failure. Please wait and try again."
+msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
 
-#: ../../mod/admin.php:583
-msgid "Additional Info"
-msgstr "Zusätzliche Informationen"
+#: ../../mod/dfrn_confirm.php:275
+msgid "Introduction failed or was revoked."
+msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
 
-#: ../../mod/admin.php:583
-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/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
+msgstr "Konnte das Bild des Kontakts nicht speichern."
 
-#: ../../mod/admin.php:584
-msgid "System language"
-msgstr "Systemsprache"
+#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:620
+#: ../../include/conversation.php:172
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s ist nun mit %2$s befreundet"
 
-#: ../../mod/admin.php:585
-msgid "System theme"
-msgstr "Systemweites Theme"
+#: ../../mod/dfrn_confirm.php:562
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Für '%s' wurde kein Nutzer gefunden"
 
-#: ../../mod/admin.php:585
-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/dfrn_confirm.php:572
+msgid "Our site encryption key is apparently messed up."
+msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
 
-#: ../../mod/admin.php:586
-msgid "Mobile system theme"
-msgstr "Systemweites mobiles Theme"
+#: ../../mod/dfrn_confirm.php:583
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."
 
-#: ../../mod/admin.php:586
-msgid "Theme for mobile devices"
-msgstr "Thema für mobile Geräte"
+#: ../../mod/dfrn_confirm.php:604
+msgid "Contact record was not found for you on our site."
+msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
 
-#: ../../mod/admin.php:587
-msgid "SSL link policy"
-msgstr "Regeln für SSL Links"
+#: ../../mod/dfrn_confirm.php:618
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."
 
-#: ../../mod/admin.php:587
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
+#: ../../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 "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."
 
-#: ../../mod/admin.php:588
-msgid "Old style 'Share'"
-msgstr "Altes \"Teilen\" Element"
+#: ../../mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
+msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
 
-#: ../../mod/admin.php:588
-msgid "Deactivates the bbcode element 'share' for repeating items."
-msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen."
+#: ../../mod/dfrn_confirm.php:716
+msgid "Unable to update your contact profile details on our system"
+msgstr "Die Updates für dein Profil konnten nicht gespeichert werden"
 
-#: ../../mod/admin.php:589
-msgid "Hide help entry from navigation menu"
-msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
+#: ../../mod/dfrn_confirm.php:751
+#, php-format
+msgid "Connection accepted at %s"
+msgstr "Auf %s wurde die Verbindung akzeptiert"
 
-#: ../../mod/admin.php:589
-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/dfrn_confirm.php:800
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s ist %2$s beigetreten"
 
-#: ../../mod/admin.php:590
-msgid "Single user instance"
-msgstr "Ein-Nutzer Instanz"
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
+msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
 
-#: ../../mod/admin.php:590
-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/events.php:291
+msgid "l, F j"
+msgstr "l, F j"
 
-#: ../../mod/admin.php:591
-msgid "Maximum image size"
-msgstr "Maximale Bildgröße"
+#: ../../mod/events.php:313
+msgid "Edit event"
+msgstr "Veranstaltung bearbeiten"
 
-#: ../../mod/admin.php:591
-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/events.php:335 ../../include/text.php:1633
+#: ../../include/text.php:1644
+msgid "link to source"
+msgstr "Link zum Originalbeitrag"
 
-#: ../../mod/admin.php:592
-msgid "Maximum image length"
-msgstr "Maximale Bildlänge"
+#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:127
+#: ../../boot.php:2003 ../../include/nav.php:79
+msgid "Events"
+msgstr "Veranstaltungen"
 
-#: ../../mod/admin.php:592
-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/events.php:371
+msgid "Create New Event"
+msgstr "Neue Veranstaltung erstellen"
 
-#: ../../mod/admin.php:593
-msgid "JPEG image quality"
-msgstr "Qualität des JPEG Bildes"
+#: ../../mod/events.php:372
+msgid "Previous"
+msgstr "Vorherige"
 
-#: ../../mod/admin.php:593
-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/events.php:373 ../../mod/install.php:207
+msgid "Next"
+msgstr "Nächste"
 
-#: ../../mod/admin.php:595
-msgid "Register policy"
-msgstr "Registrierungsmethode"
+#: ../../mod/events.php:446
+msgid "hour:minute"
+msgstr "Stunde:Minute"
 
-#: ../../mod/admin.php:596
-msgid "Maximum Daily Registrations"
-msgstr "Maximum täglicher Registrierungen"
+#: ../../mod/events.php:456
+msgid "Event details"
+msgstr "Veranstaltungsdetails"
 
-#: ../../mod/admin.php:596
-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/events.php:457
+#, php-format
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt."
 
-#: ../../mod/admin.php:597
-msgid "Register text"
-msgstr "Registrierungstext"
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr "Veranstaltungsbeginn:"
 
-#: ../../mod/admin.php:597
-msgid "Will be displayed prominently on the registration page."
-msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "Benötigt"
 
-#: ../../mod/admin.php:598
-msgid "Accounts abandoned after x days"
-msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
+msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
 
-#: ../../mod/admin.php:598
-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/events.php:464
+msgid "Event Finishes:"
+msgstr "Veranstaltungsende:"
 
-#: ../../mod/admin.php:599
-msgid "Allowed friend domains"
-msgstr "Erlaubte Domains für Kontakte"
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
+msgstr "An Zeitzone des Betrachters anpassen"
 
-#: ../../mod/admin.php:599
-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/events.php:469
+msgid "Description:"
+msgstr "Beschreibung"
 
-#: ../../mod/admin.php:600
-msgid "Allowed email domains"
-msgstr "Erlaubte Domains für E-Mails"
+#: ../../mod/events.php:471 ../../mod/directory.php:134 ../../boot.php:1513
+#: ../../include/event.php:40 ../../include/bb2diaspora.php:155
+msgid "Location:"
+msgstr "Ort:"
 
-#: ../../mod/admin.php:600
-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/events.php:473
+msgid "Title:"
+msgstr "Titel:"
 
-#: ../../mod/admin.php:601
-msgid "Block public"
-msgstr "Öffentlichen Zugriff blockieren"
+#: ../../mod/events.php:475
+msgid "Share this event"
+msgstr "Veranstaltung teilen"
 
-#: ../../mod/admin.php:601
-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/fbrowser.php:25 ../../view/theme/diabook/theme.php:126
+#: ../../boot.php:1986 ../../include/nav.php:78
+msgid "Photos"
+msgstr "Bilder"
 
-#: ../../mod/admin.php:602
-msgid "Force publish"
-msgstr "Erzwinge Veröffentlichung"
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "Dateien"
 
-#: ../../mod/admin.php:602
-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/home.php:34
+#, php-format
+msgid "Welcome to %s"
+msgstr "Willkommen zu %s"
 
-#: ../../mod/admin.php:603
-msgid "Global directory update URL"
-msgstr "URL für Updates beim weltweiten Verzeichnis"
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
 
-#: ../../mod/admin.php:603
-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/lockview.php:48
+msgid "Visible to:"
+msgstr "Sichtbar für:"
 
-#: ../../mod/admin.php:604
-msgid "Allow threaded items"
-msgstr "Erlaube Threads in Diskussionen"
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."
 
-#: ../../mod/admin.php:604
-msgid "Allow infinite level threading for items on this site."
-msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Konnte deinen Heimatort nicht bestimmen."
 
-#: ../../mod/admin.php:605
-msgid "Private posts by default for new users"
-msgstr "Private Beiträge als Standard für neue Nutzer"
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Kein Empfänger."
 
-#: ../../mod/admin.php:605
+#: ../../mod/wallmessage.php:143
+#, php-format
 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."
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."
 
-#: ../../mod/admin.php:606
-msgid "Don't include post content in email notifications"
-msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
+#: ../../mod/nogroup.php:40 ../../mod/contacts.php:473
+#: ../../mod/contacts.php:665 ../../mod/viewcontacts.php:62
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Besuche %ss Profil [%s]"
 
-#: ../../mod/admin.php:606
-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/nogroup.php:41 ../../mod/contacts.php:666
+msgid "Edit contact"
+msgstr "Kontakt bearbeiten"
 
-#: ../../mod/admin.php:607
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
 
-#: ../../mod/admin.php:607
-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/friendica.php:58
+msgid "This is Friendica, version"
+msgstr "Dies ist Friendica, Version"
 
-#: ../../mod/admin.php:608
-msgid "Don't embed private images in posts"
-msgstr "Private Bilder nicht in Beiträgen einbetten."
+#: ../../mod/friendica.php:59
+msgid "running at web location"
+msgstr "die unter folgender Webadresse zu finden ist"
 
-#: ../../mod/admin.php:608
+#: ../../mod/friendica.php:61
 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 "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."
+"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/admin.php:609
-msgid "Allow Users to set remote_self"
-msgstr "Nutzern erlauben das remote_self Flag zu setzen"
+#: ../../mod/friendica.php:63
+msgid "Bug reports and issues: please visit"
+msgstr "Probleme oder Fehler gefunden? Bitte besuche"
 
-#: ../../mod/admin.php:609
+#: ../../mod/friendica.php:64
 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:610
-msgid "Block multiple registrations"
-msgstr "Unterbinde Mehrfachregistrierung"
-
-#: ../../mod/admin.php:610
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
+"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/admin.php:611
-msgid "OpenID support"
-msgstr "OpenID Unterstützung"
+#: ../../mod/friendica.php:78
+msgid "Installed plugins/addons/apps:"
+msgstr "Installierte Plugins/Erweiterungen/Apps"
 
-#: ../../mod/admin.php:611
-msgid "OpenID support for registration and logins."
-msgstr "OpenID-Unterstützung für Registrierung und Login."
+#: ../../mod/friendica.php:91
+msgid "No installed plugins/addons/apps"
+msgstr "Keine Plugins/Erweiterungen/Apps installiert"
 
-#: ../../mod/admin.php:612
-msgid "Fullname check"
-msgstr "Namen auf Vollständigkeit überprüfen"
+#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
+msgid "Remove My Account"
+msgstr "Konto löschen"
 
-#: ../../mod/admin.php:612
+#: ../../mod/removeme.php:47
 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."
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."
 
-#: ../../mod/admin.php:613
-msgid "UTF-8 Regular expressions"
-msgstr "UTF-8 Reguläre Ausdrücke"
+#: ../../mod/removeme.php:48
+msgid "Please enter your password for verification:"
+msgstr "Bitte gib dein Passwort zur Verifikation ein:"
 
-#: ../../mod/admin.php:613
-msgid "Use PHP UTF8 regular expressions"
-msgstr "PHP UTF8 Ausdrücke verwenden"
+#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr "Bildgröße überschreitet das Limit von %d"
 
-#: ../../mod/admin.php:614
-msgid "Show Community Page"
-msgstr "Gemeinschaftsseite anzeigen"
+#: ../../mod/wall_upload.php:112 ../../mod/photos.php:805
+#: ../../mod/profile_photo.php:153
+msgid "Unable to process image."
+msgstr "Konnte das Bild nicht bearbeiten."
 
-#: ../../mod/admin.php:614
-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/wall_upload.php:135 ../../mod/wall_upload.php:144
+#: ../../mod/wall_upload.php:151 ../../mod/item.php:455
+#: ../../include/message.php:144
+msgid "Wall Photos"
+msgstr "Pinnwand-Bilder"
 
-#: ../../mod/admin.php:615
-msgid "Enable OStatus support"
-msgstr "OStatus Unterstützung aktivieren"
+#: ../../mod/wall_upload.php:138 ../../mod/photos.php:832
+#: ../../mod/profile_photo.php:301
+msgid "Image upload failed."
+msgstr "Hochladen des Bildes gescheitert."
 
-#: ../../mod/admin.php:615
-msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr "Biete die eingebaute OStatus (iStatusNet, GNU Social, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt."
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Verbindung der Applikation autorisieren"
 
-#: ../../mod/admin.php:616
-msgid "OStatus conversation completion interval"
-msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen"
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
 
-#: ../../mod/admin.php:616
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Bitte melde dich an um fortzufahren."
+
+#: ../../mod/api.php:104
 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."
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?"
 
-#: ../../mod/admin.php:617
-msgid "Enable Diaspora support"
-msgstr "Diaspora-Support aktivieren"
+#: ../../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 hat %2$ss %3$s mit %4$s getaggt"
 
-#: ../../mod/admin.php:617
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
+#: ../../mod/photos.php:52 ../../boot.php:1989
+msgid "Photo Albums"
+msgstr "Fotoalben"
 
-#: ../../mod/admin.php:618
-msgid "Only allow Friendica contacts"
-msgstr "Nur Friendica-Kontakte erlauben"
+#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1062
+#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
+#: ../../mod/photos.php:1756 ../../mod/photos.php:1768
+#: ../../view/theme/diabook/theme.php:499
+msgid "Contact Photos"
+msgstr "Kontaktbilder"
 
-#: ../../mod/admin.php:618
-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/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815
+msgid "Upload New Photos"
+msgstr "Neue Fotos hochladen"
 
-#: ../../mod/admin.php:619
-msgid "Verify SSL"
-msgstr "SSL Überprüfen"
+#: ../../mod/photos.php:80 ../../mod/settings.php:29
+msgid "everybody"
+msgstr "jeder"
 
-#: ../../mod/admin.php:619
-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/photos.php:144
+msgid "Contact information unavailable"
+msgstr "Kontaktinformationen nicht verfügbar"
 
-#: ../../mod/admin.php:620
-msgid "Proxy user"
-msgstr "Proxy Nutzer"
+#: ../../mod/photos.php:155 ../../mod/photos.php:729 ../../mod/photos.php:1187
+#: ../../mod/photos.php:1210 ../../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:500
+#: ../../include/user.php:334 ../../include/user.php:341
+#: ../../include/user.php:348
+msgid "Profile Photos"
+msgstr "Profilbilder"
 
-#: ../../mod/admin.php:621
-msgid "Proxy URL"
-msgstr "Proxy URL"
+#: ../../mod/photos.php:165
+msgid "Album not found."
+msgstr "Album nicht gefunden."
 
-#: ../../mod/admin.php:622
-msgid "Network timeout"
-msgstr "Netzwerk Wartezeit"
+#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
+msgid "Delete Album"
+msgstr "Album löschen"
 
-#: ../../mod/admin.php:622
-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/photos.php:198
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?"
 
-#: ../../mod/admin.php:623
-msgid "Delivery interval"
-msgstr "Zustellungsintervall"
+#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511
+msgid "Delete Photo"
+msgstr "Foto löschen"
 
-#: ../../mod/admin.php:623
-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/photos.php:287
+msgid "Do you really want to delete this photo?"
+msgstr "Möchtest du wirklich dieses Foto löschen?"
 
-#: ../../mod/admin.php:624
-msgid "Poll interval"
-msgstr "Abfrageintervall"
+#: ../../mod/photos.php:660
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s wurde von %3$s in %2$s getaggt"
 
-#: ../../mod/admin.php:624
-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/photos.php:660
+msgid "a photo"
+msgstr "einem Foto"
 
-#: ../../mod/admin.php:625
-msgid "Maximum Load Average"
-msgstr "Maximum Load Average"
+#: ../../mod/photos.php:765
+msgid "Image exceeds size limit of "
+msgstr "Die Bildgröße übersteigt das Limit von "
 
-#: ../../mod/admin.php:625
-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/photos.php:773
+msgid "Image file is empty."
+msgstr "Bilddatei ist leer."
 
-#: ../../mod/admin.php:627
-msgid "Use MySQL full text engine"
-msgstr "Nutze MySQL full text engine"
+#: ../../mod/photos.php:928
+msgid "No photos selected"
+msgstr "Keine Bilder ausgewählt"
 
-#: ../../mod/admin.php:627
-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/photos.php:1029 ../../mod/videos.php:226
+msgid "Access to this item is restricted."
+msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
 
-#: ../../mod/admin.php:628
-msgid "Suppress Language"
-msgstr "Sprachinformation unterdrücken"
+#: ../../mod/photos.php:1092
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."
 
-#: ../../mod/admin.php:628
-msgid "Suppress language information in meta information about a posting."
-msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags."
+#: ../../mod/photos.php:1127
+msgid "Upload Photos"
+msgstr "Bilder hochladen"
 
-#: ../../mod/admin.php:629
-msgid "Path to item cache"
-msgstr "Pfad zum Eintrag Cache"
+#: ../../mod/photos.php:1131 ../../mod/photos.php:1199
+msgid "New album name: "
+msgstr "Name des neuen Albums: "
 
-#: ../../mod/admin.php:630
-msgid "Cache duration in seconds"
-msgstr "Cache-Dauer in Sekunden"
+#: ../../mod/photos.php:1132
+msgid "or existing album name: "
+msgstr "oder existierender Albumname: "
 
-#: ../../mod/admin.php:630
-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/photos.php:1133
+msgid "Do not show a status post for this upload"
+msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
 
-#: ../../mod/admin.php:631
-msgid "Path for lock file"
-msgstr "Pfad für die Sperrdatei"
+#: ../../mod/photos.php:1135 ../../mod/photos.php:1506
+msgid "Permissions"
+msgstr "Berechtigungen"
 
-#: ../../mod/admin.php:632
-msgid "Temp path"
-msgstr "Temp Pfad"
+#: ../../mod/photos.php:1144 ../../mod/photos.php:1515
+#: ../../mod/settings.php:1139
+msgid "Show to Groups"
+msgstr "Zeige den Gruppen"
 
-#: ../../mod/admin.php:633
-msgid "Base path to installation"
-msgstr "Basis-Pfad zur Installation"
+#: ../../mod/photos.php:1145 ../../mod/photos.php:1516
+#: ../../mod/settings.php:1140
+msgid "Show to Contacts"
+msgstr "Zeige den Kontakten"
 
-#: ../../mod/admin.php:635
-msgid "New base url"
-msgstr "Neue Basis-URL"
+#: ../../mod/photos.php:1146
+msgid "Private Photo"
+msgstr "Privates Foto"
 
-#: ../../mod/admin.php:653
-msgid "Update has been marked successful"
-msgstr "Update wurde als erfolgreich markiert"
+#: ../../mod/photos.php:1147
+msgid "Public Photo"
+msgstr "Öffentliches Foto"
 
-#: ../../mod/admin.php:663
-#, php-format
-msgid "Executing %s failed. Check system logs."
-msgstr "Ausführung von %s schlug fehl. Systemprotokolle prüfen."
+#: ../../mod/photos.php:1214
+msgid "Edit Album"
+msgstr "Album bearbeiten"
 
-#: ../../mod/admin.php:666
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Update %s war erfolgreich."
+#: ../../mod/photos.php:1220
+msgid "Show Newest First"
+msgstr "Zeige neueste zuerst"
 
-#: ../../mod/admin.php:670
-#, 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/photos.php:1222
+msgid "Show Oldest First"
+msgstr "Zeige älteste zuerst"
 
-#: ../../mod/admin.php:673
-#, php-format
-msgid "Update function %s could not be found."
-msgstr "Updatefunktion %s konnte nicht gefunden werden."
+#: ../../mod/photos.php:1255 ../../mod/photos.php:1798
+msgid "View Photo"
+msgstr "Foto betrachten"
 
-#: ../../mod/admin.php:688
-msgid "No failed updates."
-msgstr "Keine fehlgeschlagenen Updates."
+#: ../../mod/photos.php:1290
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
 
-#: ../../mod/admin.php:692
-msgid "Failed Updates"
-msgstr "Fehlgeschlagene Updates"
+#: ../../mod/photos.php:1292
+msgid "Photo not available"
+msgstr "Foto nicht verfügbar"
 
-#: ../../mod/admin.php:693
-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/photos.php:1348
+msgid "View photo"
+msgstr "Fotos ansehen"
 
-#: ../../mod/admin.php:694
-msgid "Mark success (if update was manually applied)"
-msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
+#: ../../mod/photos.php:1348
+msgid "Edit photo"
+msgstr "Foto bearbeiten"
 
-#: ../../mod/admin.php:695
-msgid "Attempt to execute this update step automatically"
-msgstr "Versuchen, diesen Schritt automatisch auszuführen"
+#: ../../mod/photos.php:1349
+msgid "Use as profile photo"
+msgstr "Als Profilbild verwenden"
 
-#: ../../mod/admin.php:741
-msgid "Registration successful. Email send to user"
-msgstr "Registration erfolgreich. Dem Nutzer wurde eine Email gesended."
+#: ../../mod/photos.php:1374
+msgid "View Full Size"
+msgstr "Betrachte Originalgröße"
 
-#: ../../mod/admin.php:751
-#, 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/photos.php:1453
+msgid "Tags: "
+msgstr "Tags: "
 
-#: ../../mod/admin.php:758
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s Nutzer gelöscht"
-msgstr[1] "%s Nutzer gelöscht"
+#: ../../mod/photos.php:1456
+msgid "[Remove any tag]"
+msgstr "[Tag entfernen]"
 
-#: ../../mod/admin.php:797
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Nutzer '%s' gelöscht"
+#: ../../mod/photos.php:1496
+msgid "Rotate CW (right)"
+msgstr "Drehen US (rechts)"
 
-#: ../../mod/admin.php:805
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Nutzer '%s' entsperrt"
+#: ../../mod/photos.php:1497
+msgid "Rotate CCW (left)"
+msgstr "Drehen EUS (links)"
 
-#: ../../mod/admin.php:805
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Nutzer '%s' gesperrt"
+#: ../../mod/photos.php:1499
+msgid "New album name"
+msgstr "Name des neuen Albums"
 
-#: ../../mod/admin.php:900
-msgid "Add User"
-msgstr "Nutzer hinzufügen"
+#: ../../mod/photos.php:1502
+msgid "Caption"
+msgstr "Bildunterschrift"
 
-#: ../../mod/admin.php:901
-msgid "select all"
-msgstr "Alle auswählen"
+#: ../../mod/photos.php:1504
+msgid "Add a Tag"
+msgstr "Tag hinzufügen"
 
-#: ../../mod/admin.php:902
-msgid "User registrations waiting for confirm"
-msgstr "Neuanmeldungen, die auf deine Bestätigung warten"
+#: ../../mod/photos.php:1508
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: ../../mod/admin.php:903
-msgid "User waiting for permanent deletion"
-msgstr "Nutzer wartet auf permanente Löschung"
+#: ../../mod/photos.php:1517
+msgid "Private photo"
+msgstr "Privates Foto"
 
-#: ../../mod/admin.php:904
-msgid "Request date"
-msgstr "Anfragedatum"
+#: ../../mod/photos.php:1518
+msgid "Public photo"
+msgstr "Öffentliches Foto"
 
-#: ../../mod/admin.php:904 ../../mod/admin.php:916 ../../mod/admin.php:917
-#: ../../mod/admin.php:930 ../../mod/crepair.php:150
-#: ../../mod/settings.php:610 ../../mod/settings.php:636
-msgid "Name"
-msgstr "Name"
-
-#: ../../mod/admin.php:904 ../../mod/admin.php:916 ../../mod/admin.php:917
-#: ../../mod/admin.php:932 ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86
-msgid "Email"
-msgstr "E-Mail"
+#: ../../mod/photos.php:1540 ../../include/conversation.php:1088
+msgid "Share"
+msgstr "Teilen"
 
-#: ../../mod/admin.php:905
-msgid "No registrations."
-msgstr "Keine Neuanmeldungen."
+#: ../../mod/photos.php:1804 ../../mod/videos.php:308
+msgid "View Album"
+msgstr "Album betrachten"
 
-#: ../../mod/admin.php:906 ../../mod/notifications.php:161
-#: ../../mod/notifications.php:208
-msgid "Approve"
-msgstr "Genehmigen"
+#: ../../mod/photos.php:1813
+msgid "Recent Photos"
+msgstr "Neueste Fotos"
 
-#: ../../mod/admin.php:907
-msgid "Deny"
-msgstr "Verwehren"
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Kein Profil"
 
-#: ../../mod/admin.php:909 ../../mod/contacts.php:431
-#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
-msgid "Block"
-msgstr "Sperren"
+#: ../../mod/register.php:100
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet."
 
-#: ../../mod/admin.php:910 ../../mod/contacts.php:431
-#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
-msgid "Unblock"
-msgstr "Entsperren"
+#: ../../mod/register.php:104
+msgid "Failed to send email message. Here is the message that failed."
+msgstr "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht gesendet werden konnte."
 
-#: ../../mod/admin.php:911
-msgid "Site admin"
-msgstr "Seitenadministrator"
+#: ../../mod/register.php:109
+msgid "Your registration can not be processed."
+msgstr "Deine Registrierung konnte nicht verarbeitet werden."
 
-#: ../../mod/admin.php:912
-msgid "Account expired"
-msgstr "Account ist abgelaufen"
+#: ../../mod/register.php:149
+#, php-format
+msgid "Registration request at %s"
+msgstr "Registrierungsanfrage auf %s"
 
-#: ../../mod/admin.php:915
-msgid "New User"
-msgstr "Neuer Nutzer"
+#: ../../mod/register.php:158
+msgid "Your registration is pending approval by the site owner."
+msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
 
-#: ../../mod/admin.php:916 ../../mod/admin.php:917
-msgid "Register date"
-msgstr "Anmeldedatum"
+#: ../../mod/register.php:196 ../../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/admin.php:916 ../../mod/admin.php:917
-msgid "Last login"
-msgstr "Letzte Anmeldung"
+#: ../../mod/register.php:224
+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/admin.php:916 ../../mod/admin.php:917
-msgid "Last item"
-msgstr "Letzter Beitrag"
+#: ../../mod/register.php:225
+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/admin.php:916
-msgid "Deleted since"
-msgstr "Gelöscht seit"
+#: ../../mod/register.php:226
+msgid "Your OpenID (optional): "
+msgstr "Deine OpenID (optional): "
 
-#: ../../mod/admin.php:917 ../../mod/settings.php:35
-msgid "Account"
-msgstr "Nutzerkonto"
+#: ../../mod/register.php:240
+msgid "Include your profile in member directory?"
+msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?"
 
-#: ../../mod/admin.php:919
-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/register.php:261
+msgid "Membership on this site is by invitation only."
+msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
 
-#: ../../mod/admin.php:920
-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/register.php:262
+msgid "Your invitation ID: "
+msgstr "ID deiner Einladung: "
 
-#: ../../mod/admin.php:930
-msgid "Name of the new user."
-msgstr "Name des neuen Nutzers"
+#: ../../mod/register.php:273
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "Vollständiger Name (z.B. Max Mustermann): "
 
-#: ../../mod/admin.php:931
-msgid "Nickname"
-msgstr "Spitzname"
+#: ../../mod/register.php:274
+msgid "Your Email Address: "
+msgstr "Deine E-Mail-Adresse: "
 
-#: ../../mod/admin.php:931
-msgid "Nickname of the new user."
-msgstr "Spitznamen für den neuen Nutzer"
+#: ../../mod/register.php:275
+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/admin.php:932
-msgid "Email address of the new user."
-msgstr "Email Adresse des neuen Nutzers"
+#: ../../mod/register.php:276
+msgid "Choose a nickname: "
+msgstr "Spitznamen wählen: "
 
-#: ../../mod/admin.php:965
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plugin %s deaktiviert."
+#: ../../mod/register.php:279 ../../boot.php:1136 ../../include/nav.php:108
+msgid "Register"
+msgstr "Registrieren"
 
-#: ../../mod/admin.php:969
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Plugin %s aktiviert."
+#: ../../mod/register.php:285 ../../mod/uimport.php:64
+msgid "Import"
+msgstr "Import"
 
-#: ../../mod/admin.php:979 ../../mod/admin.php:1182
-msgid "Disable"
-msgstr "Ausschalten"
+#: ../../mod/register.php:286
+msgid "Import your profile to this friendica instance"
+msgstr "Importiere dein Profil auf diese Friendica Instanz"
 
-#: ../../mod/admin.php:981 ../../mod/admin.php:1184
-msgid "Enable"
-msgstr "Einschalten"
+#: ../../mod/lostpass.php:17
+msgid "No valid account found."
+msgstr "Kein gültiges Konto gefunden."
 
-#: ../../mod/admin.php:1004 ../../mod/admin.php:1212
-msgid "Toggle"
-msgstr "Umschalten"
+#: ../../mod/lostpass.php:33
+msgid "Password reset request issued. Check your email."
+msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail."
 
-#: ../../mod/admin.php:1012 ../../mod/admin.php:1222
-msgid "Author: "
-msgstr "Autor:"
+#: ../../mod/lostpass.php:44
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
 
-#: ../../mod/admin.php:1013 ../../mod/admin.php:1223
-msgid "Maintainer: "
-msgstr "Betreuer:"
+#: ../../mod/lostpass.php:66
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."
 
-#: ../../mod/admin.php:1142
-msgid "No themes found."
-msgstr "Keine Themen gefunden."
+#: ../../mod/lostpass.php:84 ../../boot.php:1175
+msgid "Password Reset"
+msgstr "Passwort zurücksetzen"
 
-#: ../../mod/admin.php:1204
-msgid "Screenshot"
-msgstr "Bildschirmfoto"
+#: ../../mod/lostpass.php:85
+msgid "Your password has been reset as requested."
+msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
 
-#: ../../mod/admin.php:1250
-msgid "[Experimental]"
-msgstr "[Experimentell]"
+#: ../../mod/lostpass.php:86
+msgid "Your new password is"
+msgstr "Dein neues Passwort lautet"
 
-#: ../../mod/admin.php:1251
-msgid "[Unsupported]"
-msgstr "[Nicht unterstützt]"
+#: ../../mod/lostpass.php:87
+msgid "Save or copy your new password - and then"
+msgstr "Speichere oder kopiere dein neues Passwort - und dann"
 
-#: ../../mod/admin.php:1278
-msgid "Log settings updated."
-msgstr "Protokolleinstellungen aktualisiert."
+#: ../../mod/lostpass.php:88
+msgid "click here to login"
+msgstr "hier klicken, um dich anzumelden"
 
-#: ../../mod/admin.php:1334
-msgid "Clear"
-msgstr "löschen"
+#: ../../mod/lostpass.php:89
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald du dich erfolgreich angemeldet hast."
 
-#: ../../mod/admin.php:1340
-msgid "Enable Debugging"
-msgstr "Protokoll führen"
+#: ../../mod/lostpass.php:107
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Auf %s wurde dein Passwort geändert"
 
-#: ../../mod/admin.php:1341
-msgid "Log file"
-msgstr "Protokolldatei"
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
+msgstr "Hast du dein Passwort vergessen?"
 
-#: ../../mod/admin.php:1341
+#: ../../mod/lostpass.php:123
 msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet."
 
-#: ../../mod/admin.php:1342
-msgid "Log level"
-msgstr "Protokoll-Level"
+#: ../../mod/lostpass.php:124
+msgid "Nickname or Email: "
+msgstr "Spitzname oder E-Mail:"
 
-#: ../../mod/admin.php:1391 ../../mod/contacts.php:487
-msgid "Update now"
-msgstr "Jetzt aktualisieren"
+#: ../../mod/lostpass.php:125
+msgid "Reset"
+msgstr "Zurücksetzen"
 
-#: ../../mod/admin.php:1392
-msgid "Close"
-msgstr "Schließen"
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
+msgstr "System zur Wartung abgeschaltet"
 
-#: ../../mod/admin.php:1398
-msgid "FTP Host"
-msgstr "FTP Host"
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "Beitrag nicht verfügbar."
 
-#: ../../mod/admin.php:1399
-msgid "FTP Path"
-msgstr "FTP Pfad"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "Beitrag konnte nicht gefunden werden."
 
-#: ../../mod/admin.php:1400
-msgid "FTP User"
-msgstr "FTP Nutzername"
+#: ../../mod/apps.php:11
+msgid "Applications"
+msgstr "Anwendungen"
 
-#: ../../mod/admin.php:1401
-msgid "FTP Password"
-msgstr "FTP Passwort"
+#: ../../mod/apps.php:14
+msgid "No installed applications."
+msgstr "Keine Applikationen installiert."
 
-#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:938
-#: ../../include/text.php:939 ../../include/nav.php:118
-msgid "Search"
-msgstr "Suche"
+#: ../../mod/help.php:79
+msgid "Help:"
+msgstr "Hilfe:"
 
-#: ../../mod/_search.php:180 ../../mod/_search.php:206
-#: ../../mod/search.php:170 ../../mod/search.php:196
-#: ../../mod/community.php:62 ../../mod/community.php:89
-msgid "No results."
-msgstr "Keine Ergebnisse."
+#: ../../mod/help.php:84 ../../include/nav.php:113
+msgid "Help"
+msgstr "Hilfe"
 
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Tipps für neue Nutzer"
-
-#: ../../mod/share.php:44
-msgid "link"
-msgstr "Link"
-
-#: ../../mod/tagger.php:95 ../../include/conversation.php:266
+#: ../../mod/contacts.php:104
 #, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt"
-
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "Beitrag nicht gefunden"
-
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "Beitrag bearbeiten"
-
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1085
-msgid "upload photo"
-msgstr "Bild hochladen"
-
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1086
-msgid "Attach file"
-msgstr "Datei anhängen"
+msgid "%d contact edited."
+msgid_plural "%d contacts edited"
+msgstr[0] "%d Kontakt bearbeitet."
+msgstr[1] "%d Kontakte bearbeitet"
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1087
-msgid "attach file"
-msgstr "Datei anhängen"
+#: ../../mod/contacts.php:135 ../../mod/contacts.php:264
+msgid "Could not access contact record."
+msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1089
-msgid "web link"
-msgstr "Weblink"
+#: ../../mod/contacts.php:149
+msgid "Could not locate selected profile."
+msgstr "Konnte das ausgewählte Profil nicht finden."
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:1090
-msgid "Insert video link"
-msgstr "Video-Adresse einfügen"
+#: ../../mod/contacts.php:178
+msgid "Contact updated."
+msgstr "Kontakt aktualisiert."
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:1091
-msgid "video link"
-msgstr "Video-Link"
+#: ../../mod/contacts.php:278
+msgid "Contact has been blocked"
+msgstr "Kontakt wurde blockiert"
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1092
-msgid "Insert audio link"
-msgstr "Audio-Adresse einfügen"
+#: ../../mod/contacts.php:278
+msgid "Contact has been unblocked"
+msgstr "Kontakt wurde wieder freigegeben"
 
-#: ../../mod/editpost.php:119 ../../include/conversation.php:1093
-msgid "audio link"
-msgstr "Audio-Link"
+#: ../../mod/contacts.php:288
+msgid "Contact has been ignored"
+msgstr "Kontakt wurde ignoriert"
 
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1094
-msgid "Set your location"
-msgstr "Deinen Standort festlegen"
+#: ../../mod/contacts.php:288
+msgid "Contact has been unignored"
+msgstr "Kontakt wird nicht mehr ignoriert"
 
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1095
-msgid "set location"
-msgstr "Ort setzen"
+#: ../../mod/contacts.php:299
+msgid "Contact has been archived"
+msgstr "Kontakt wurde archiviert"
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1096
-msgid "Clear browser location"
-msgstr "Browser-Standort leeren"
+#: ../../mod/contacts.php:299
+msgid "Contact has been unarchived"
+msgstr "Kontakt wurde aus dem Archiv geholt"
 
-#: ../../mod/editpost.php:123 ../../include/conversation.php:1097
-msgid "clear location"
-msgstr "Ort löschen"
+#: ../../mod/contacts.php:324 ../../mod/contacts.php:697
+msgid "Do you really want to delete this contact?"
+msgstr "Möchtest du wirklich diesen Kontakt löschen?"
 
-#: ../../mod/editpost.php:125 ../../include/conversation.php:1103
-msgid "Permission settings"
-msgstr "Berechtigungseinstellungen"
+#: ../../mod/contacts.php:341
+msgid "Contact has been removed."
+msgstr "Kontakt wurde entfernt."
 
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1112
-msgid "CC: email addresses"
-msgstr "Cc: E-Mail-Addressen"
+#: ../../mod/contacts.php:379
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Du hast mit %s eine beidseitige Freundschaft"
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1113
-msgid "Public post"
-msgstr "Öffentlicher Beitrag"
+#: ../../mod/contacts.php:383
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Du teilst mit %s"
 
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1099
-msgid "Set title"
-msgstr "Titel setzen"
+#: ../../mod/contacts.php:388
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s teilt mit Dir"
 
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1101
-msgid "Categories (comma-separated list)"
-msgstr "Kategorien (kommasepariert)"
+#: ../../mod/contacts.php:405
+msgid "Private communications are not available for this contact."
+msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
 
-#: ../../mod/editpost.php:140 ../../include/conversation.php:1115
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Z.B.: bob@example.com, mary@example.com"
+#: ../../mod/contacts.php:412
+msgid "(Update was successful)"
+msgstr "(Aktualisierung war erfolgreich)"
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "Beitrag nicht verfügbar."
+#: ../../mod/contacts.php:412
+msgid "(Update was not successful)"
+msgstr "(Aktualisierung war nicht erfolgreich)"
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "Beitrag konnte nicht gefunden werden."
+#: ../../mod/contacts.php:414
+msgid "Suggest friends"
+msgstr "Kontakte vorschlagen"
 
-#: ../../mod/regmod.php:63
-msgid "Account approved."
-msgstr "Konto freigegeben."
+#: ../../mod/contacts.php:418
+#, php-format
+msgid "Network type: %s"
+msgstr "Netzwerktyp: %s"
 
-#: ../../mod/regmod.php:100
+#: ../../mod/contacts.php:421 ../../include/contact_widgets.php:199
 #, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrierung für %s wurde zurückgezogen"
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d gemeinsamer Kontakt"
+msgstr[1] "%d gemeinsame Kontakte"
 
-#: ../../mod/regmod.php:112
-msgid "Please login."
-msgstr "Bitte melde dich an."
+#: ../../mod/contacts.php:426
+msgid "View all contacts"
+msgstr "Alle Kontakte anzeigen"
 
-#: ../../mod/directory.php:57
-msgid "Find on this site"
-msgstr "Auf diesem Server suchen"
+#: ../../mod/contacts.php:434
+msgid "Toggle Blocked status"
+msgstr "Geblockt-Status ein-/ausschalten"
 
-#: ../../mod/directory.php:59 ../../mod/contacts.php:693
-msgid "Finding: "
-msgstr "Funde: "
+#: ../../mod/contacts.php:437 ../../mod/contacts.php:491
+#: ../../mod/contacts.php:701
+msgid "Unignore"
+msgstr "Ignorieren aufheben"
 
-#: ../../mod/directory.php:60
-msgid "Site Directory"
-msgstr "Verzeichnis"
+#: ../../mod/contacts.php:440
+msgid "Toggle Ignored status"
+msgstr "Ignoriert-Status ein-/ausschalten"
 
-#: ../../mod/directory.php:61 ../../mod/contacts.php:694
-#: ../../include/contact_widgets.php:33
-msgid "Find"
-msgstr "Finde"
+#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
+msgid "Unarchive"
+msgstr "Aus Archiv zurückholen"
 
-#: ../../mod/directory.php:111 ../../mod/profiles.php:690
-msgid "Age: "
-msgstr "Alter: "
+#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
+msgid "Archive"
+msgstr "Archivieren"
 
-#: ../../mod/directory.php:114
-msgid "Gender: "
-msgstr "Geschlecht:"
+#: ../../mod/contacts.php:447
+msgid "Toggle Archive status"
+msgstr "Archiviert-Status ein-/ausschalten"
 
-#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
-msgid "About:"
-msgstr "Über:"
+#: ../../mod/contacts.php:450
+msgid "Repair"
+msgstr "Reparieren"
 
-#: ../../mod/directory.php:187
-msgid "No entries (some entries may be hidden)."
-msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
+#: ../../mod/contacts.php:453
+msgid "Advanced Contact Settings"
+msgstr "Fortgeschrittene Kontakteinstellungen"
 
-#: ../../mod/crepair.php:104
-msgid "Contact settings applied."
-msgstr "Einstellungen zum Kontakt angewandt."
+#: ../../mod/contacts.php:459
+msgid "Communications lost with this contact!"
+msgstr "Verbindungen mit diesem Kontakt verloren!"
 
-#: ../../mod/crepair.php:106
-msgid "Contact update failed."
-msgstr "Konnte den Kontakt nicht aktualisieren."
+#: ../../mod/contacts.php:462
+msgid "Contact Editor"
+msgstr "Kontakt Editor"
 
-#: ../../mod/crepair.php:137
-msgid "Repair Contact Settings"
-msgstr "Kontakteinstellungen reparieren"
+#: ../../mod/contacts.php:465
+msgid "Profile Visibility"
+msgstr "Profil-Sichtbarkeit"
 
-#: ../../mod/crepair.php:139
+#: ../../mod/contacts.php:466
+#, php-format
 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."
+"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/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/contacts.php:467
+msgid "Contact Information / Notes"
+msgstr "Kontakt Informationen / Notizen"
 
-#: ../../mod/crepair.php:146
-msgid "Return to contact editor"
-msgstr "Zurück zum Kontakteditor"
+#: ../../mod/contacts.php:468
+msgid "Edit contact notes"
+msgstr "Notizen zum Kontakt bearbeiten"
 
-#: ../../mod/crepair.php:151
-msgid "Account Nickname"
-msgstr "Konto-Spitzname"
+#: ../../mod/contacts.php:474
+msgid "Block/Unblock contact"
+msgstr "Kontakt blockieren/freischalten"
 
-#: ../../mod/crepair.php:152
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Tagname - überschreibt Name/Spitzname"
+#: ../../mod/contacts.php:475
+msgid "Ignore contact"
+msgstr "Ignoriere den Kontakt"
 
-#: ../../mod/crepair.php:153
-msgid "Account URL"
-msgstr "Konto-URL"
+#: ../../mod/contacts.php:476
+msgid "Repair URL settings"
+msgstr "URL Einstellungen reparieren"
 
-#: ../../mod/crepair.php:154
-msgid "Friend Request URL"
-msgstr "URL für Freundschaftsanfragen"
+#: ../../mod/contacts.php:477
+msgid "View conversations"
+msgstr "Unterhaltungen anzeigen"
 
-#: ../../mod/crepair.php:155
-msgid "Friend Confirm URL"
-msgstr "URL für Bestätigungen von Freundschaftsanfragen"
+#: ../../mod/contacts.php:479
+msgid "Delete contact"
+msgstr "Lösche den Kontakt"
 
-#: ../../mod/crepair.php:156
-msgid "Notification Endpoint URL"
-msgstr "URL-Endpunkt für Benachrichtigungen"
+#: ../../mod/contacts.php:483
+msgid "Last update:"
+msgstr "letzte Aktualisierung:"
 
-#: ../../mod/crepair.php:157
-msgid "Poll/Feed URL"
-msgstr "Pull/Feed-URL"
+#: ../../mod/contacts.php:485
+msgid "Update public posts"
+msgstr "Öffentliche Beiträge aktualisieren"
 
-#: ../../mod/crepair.php:158
-msgid "New photo from this URL"
-msgstr "Neues Foto von dieser URL"
+#: ../../mod/contacts.php:494
+msgid "Currently blocked"
+msgstr "Derzeit geblockt"
 
-#: ../../mod/crepair.php:159
-msgid "Remote Self"
-msgstr "Entfernte Konten"
+#: ../../mod/contacts.php:495
+msgid "Currently ignored"
+msgstr "Derzeit ignoriert"
 
-#: ../../mod/crepair.php:161
-msgid "Mirror postings from this contact"
-msgstr "Spiegle Beiträge dieses Kontakts"
+#: ../../mod/contacts.php:496
+msgid "Currently archived"
+msgstr "Momentan archiviert"
 
-#: ../../mod/crepair.php:161
+#: ../../mod/contacts.php:497
 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."
+"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:498
+msgid "Notification for new posts"
+msgstr "Benachrichtigung bei neuen Beiträgen"
+
+#: ../../mod/contacts.php:498
+msgid "Send a notification of every new post of this contact"
+msgstr "Sende eine Benachrichtigung wann immer dieser Kontakt einen neuen Beitrag schreibt."
+
+#: ../../mod/contacts.php:499
+msgid "Fetch further information for feeds"
+msgstr "Weitere Informationen zu Feeds holen"
+
+#: ../../mod/contacts.php:550
+msgid "Suggestions"
+msgstr "Kontaktvorschläge"
+
+#: ../../mod/contacts.php:553
+msgid "Suggest potential friends"
+msgstr "Freunde vorschlagen"
+
+#: ../../mod/contacts.php:556 ../../mod/group.php:194
+msgid "All Contacts"
+msgstr "Alle Kontakte"
+
+#: ../../mod/contacts.php:559
+msgid "Show all contacts"
+msgstr "Alle Kontakte anzeigen"
+
+#: ../../mod/contacts.php:562
+msgid "Unblocked"
+msgstr "Ungeblockt"
+
+#: ../../mod/contacts.php:565
+msgid "Only show unblocked contacts"
+msgstr "Nur nicht-blockierte Kontakte anzeigen"
+
+#: ../../mod/contacts.php:569
+msgid "Blocked"
+msgstr "Geblockt"
+
+#: ../../mod/contacts.php:572
+msgid "Only show blocked contacts"
+msgstr "Nur blockierte Kontakte anzeigen"
+
+#: ../../mod/contacts.php:576
+msgid "Ignored"
+msgstr "Ignoriert"
+
+#: ../../mod/contacts.php:579
+msgid "Only show ignored contacts"
+msgstr "Nur ignorierte Kontakte anzeigen"
+
+#: ../../mod/contacts.php:583
+msgid "Archived"
+msgstr "Archiviert"
+
+#: ../../mod/contacts.php:586
+msgid "Only show archived contacts"
+msgstr "Nur archivierte Kontakte anzeigen"
+
+#: ../../mod/contacts.php:590
+msgid "Hidden"
+msgstr "Verborgen"
+
+#: ../../mod/contacts.php:593
+msgid "Only show hidden contacts"
+msgstr "Nur verborgene Kontakte anzeigen"
+
+#: ../../mod/contacts.php:641
+msgid "Mutual Friendship"
+msgstr "Beidseitige Freundschaft"
+
+#: ../../mod/contacts.php:645
+msgid "is a fan of yours"
+msgstr "ist ein Fan von dir"
+
+#: ../../mod/contacts.php:649
+msgid "you are a fan of"
+msgstr "du bist Fan von"
+
+#: ../../mod/contacts.php:688 ../../view/theme/diabook/theme.php:125
+#: ../../include/nav.php:173
+msgid "Contacts"
+msgstr "Kontakte"
+
+#: ../../mod/contacts.php:692
+msgid "Search your contacts"
+msgstr "Suche in deinen Kontakten"
+
+#: ../../mod/contacts.php:693 ../../mod/directory.php:59
+msgid "Finding: "
+msgstr "Funde: "
+
+#: ../../mod/contacts.php:694 ../../mod/directory.php:61
+#: ../../include/contact_widgets.php:33
+msgid "Find"
+msgstr "Finde"
+
+#: ../../mod/contacts.php:699 ../../mod/settings.php:132
+#: ../../mod/settings.php:635
+msgid "Update"
+msgstr "Aktualisierungen"
+
+#: ../../mod/videos.php:125
+msgid "No videos selected"
+msgstr "Keine Videos  ausgewählt"
+
+#: ../../mod/videos.php:317
+msgid "Recent Videos"
+msgstr "Neueste Videos"
+
+#: ../../mod/videos.php:319
+msgid "Upload New Videos"
+msgstr "Neues Video hochladen"
+
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "Gemeinsame Freunde"
+
+#: ../../mod/common.php:78
+msgid "No contacts in common."
+msgstr "Keine gemeinsamen Kontakte."
+
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr "Kontakt hinzugefügt"
 
 #: ../../mod/uimport.php:66
 msgid "Move account"
@@ -3071,1143 +3055,951 @@ msgid ""
 "select \"Export account\""
 msgstr "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""
 
-#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
+#: ../../mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s folgt %2$s %3$s"
 
-#: ../../mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Sichtbar für:"
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "Freunde von %s"
 
-#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:941
-msgid "Save"
-msgstr "Speichern"
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Keine Freunde zum Anzeigen."
 
-#: ../../mod/help.php:79
-msgid "Help:"
-msgstr "Hilfe:"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Tag entfernt"
 
-#: ../../mod/help.php:84 ../../include/nav.php:113
-msgid "Help"
-msgstr "Hilfe"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Gegenstands-Tag entfernen"
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Kein Profil"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Wähle ein Tag zum Entfernen aus: "
 
-#: ../../mod/dfrn_request.php:93
-msgid "This introduction has already been accepted."
-msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133
+msgid "Remove"
+msgstr "Entfernen"
 
-#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Willkommen bei Friendica"
 
-#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Checkliste für neue Mitglieder"
 
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
-msgid "Warning: profile location has no profile photo."
-msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."
+#: ../../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 "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."
 
-#: ../../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 benötigter Parameter wurde an der angegebenen Stelle nicht gefunden"
-msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden"
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Einstieg"
 
-#: ../../mod/dfrn_request.php:170
-msgid "Introduction complete."
-msgstr "Kontaktanfrage abgeschlossen."
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Friendica Rundgang"
 
-#: ../../mod/dfrn_request.php:209
-msgid "Unrecoverable protocol error."
-msgstr "Nicht behebbarer Protokollfehler."
+#: ../../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 "Auf der <em>Quick Start</em> Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst."
 
-#: ../../mod/dfrn_request.php:237
-msgid "Profile unavailable."
-msgstr "Profil nicht verfügbar."
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Gehe zu deinen Einstellungen"
 
-#: ../../mod/dfrn_request.php:262
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten."
+#: ../../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 "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."
 
-#: ../../mod/dfrn_request.php:263
-msgid "Spam protection measures have been invoked."
-msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
+#: ../../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 "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können."
 
-#: ../../mod/dfrn_request.php:264
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
+#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
+#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979
+#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
+#: ../../include/nav.php:77
+msgid "Profile"
+msgstr "Profil"
 
-#: ../../mod/dfrn_request.php:326
-msgid "Invalid locator"
-msgstr "Ungültiger Locator"
+#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
+msgstr "Profilbild hochladen"
 
-#: ../../mod/dfrn_request.php:335
-msgid "Invalid email address."
-msgstr "Ungültige E-Mail-Adresse."
+#: ../../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 "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust."
 
-#: ../../mod/dfrn_request.php:362
-msgid "This account has not been configured for email. Request failed."
-msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Editiere dein Profil"
 
-#: ../../mod/dfrn_request.php:458
-msgid "Unable to resolve your name at the provided location."
-msgstr "Konnte deinen Namen an der angegebenen Stelle nicht finden."
+#: ../../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 "Editiere dein <strong>Standard</strong> Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils."
 
-#: ../../mod/dfrn_request.php:471
-msgid "You have already introduced yourself here."
-msgstr "Du hast dich hier bereits vorgestellt."
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Profil Schlüsselbegriffe"
 
-#: ../../mod/dfrn_request.php:475
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Es scheint so, als ob du bereits mit %s befreundet bist."
+#: ../../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 "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen."
 
-#: ../../mod/dfrn_request.php:496
-msgid "Invalid profile URL."
-msgstr "Ungültige Profil-URL."
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Verbindungen knüpfen"
 
-#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
-msgid "Disallowed profile URL."
-msgstr "Nicht erlaubte Profil-URL."
+#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
+#: ../../include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180
-msgid "Failed to update contact record."
-msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
+#: ../../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 "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst."
 
-#: ../../mod/dfrn_request.php:592
-msgid "Your introduction has been sent."
-msgstr "Deine Kontaktanfrage wurde gesendet."
+#: ../../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 "<em>Wenn</em> dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten."
 
-#: ../../mod/dfrn_request.php:645
-msgid "Please login to confirm introduction."
-msgstr "Bitte melde dich an, um die Kontaktanfrage zu bestätigen."
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "Emails Importieren"
 
-#: ../../mod/dfrn_request.php:659
+#: ../../mod/newmember.php:56
 msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an."
+"Enter your email access information on your Connector Settings page if you "
+"wish to import and interact with friends or mailing lists from your email "
+"INBOX"
+msgstr "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst."
 
-#: ../../mod/dfrn_request.php:670
-msgid "Hide this contact"
-msgstr "Verberge diesen Kontakt"
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Gehe zu deiner Kontakt-Seite"
 
-#: ../../mod/dfrn_request.php:673
-#, php-format
-msgid "Welcome home %s."
-msgstr "Willkommen zurück %s."
+#: ../../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 "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein."
 
-#: ../../mod/dfrn_request.php:674
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Bitte bestätige deine Kontaktanfrage bei %s."
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Gehe zum Verzeichnis deiner Friendica Instanz"
 
-#: ../../mod/dfrn_request.php:675
-msgid "Confirm"
-msgstr "Bestätigen"
+#: ../../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 "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst."
 
-#: ../../mod/dfrn_request.php:716 ../../include/items.php:3686
-msgid "[Name Withheld]"
-msgstr "[Name unterdrückt]"
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Neue Leute kennenlernen"
 
-#: ../../mod/dfrn_request.php:811
+#: ../../mod/newmember.php:62
 msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:"
+"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 "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
 
-#: ../../mod/dfrn_request.php:827
-msgid "<strike>Connect as an email follower</strike> (Coming soon)"
-msgstr "<strike>Als E-Mail-Kontakt verbinden</strike> (In Kürze verfügbar)"
+#: ../../mod/newmember.php:66 ../../include/group.php:270
+msgid "Groups"
+msgstr "Gruppen"
 
-#: ../../mod/dfrn_request.php:829
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Gruppiere deine Kontakte"
+
+#: ../../mod/newmember.php:70
 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 "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
+"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 "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."
 
-#: ../../mod/dfrn_request.php:832
-msgid "Friend/Connection Request"
-msgstr "Freundschafts-/Kontaktanfrage"
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Warum sind meine Beiträge nicht öffentlich?"
 
-#: ../../mod/dfrn_request.php:833
+#: ../../mod/newmember.php:73
 msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
-
-#: ../../mod/dfrn_request.php:834
-msgid "Please answer the following:"
-msgstr "Bitte beantworte folgendes:"
+"Friendica respects your privacy. By default, your posts will only show up to"
+" people you've added as friends. For more information, see the help section "
+"from the link above."
+msgstr "Friendica respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."
 
-#: ../../mod/dfrn_request.php:835
-#, php-format
-msgid "Does %s know you?"
-msgstr "Kennt %s dich?"
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Hilfe bekommen"
 
-#: ../../mod/dfrn_request.php:838
-msgid "Add a personal note:"
-msgstr "Eine persönliche Notiz beifügen:"
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Zum Hilfe Abschnitt gehen"
 
-#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../mod/newmember.php:82
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
 
-#: ../../mod/dfrn_request.php:841
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
+#: ../../mod/search.php:21 ../../mod/network.php:179
+msgid "Remove term"
+msgstr "Begriff entfernen"
 
-#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:730
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
-msgstr "Diaspora"
+#: ../../mod/search.php:30 ../../mod/network.php:188
+#: ../../include/features.php:42
+msgid "Saved Searches"
+msgstr "Gespeicherte Suchen"
 
-#: ../../mod/dfrn_request.php:843
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste."
+#: ../../mod/search.php:99 ../../include/text.php:951
+#: ../../include/text.php:952 ../../include/nav.php:118
+msgid "Search"
+msgstr "Suche"
 
-#: ../../mod/dfrn_request.php:844
-msgid "Your Identity Address:"
-msgstr "Adresse deines Profils:"
+#: ../../mod/search.php:170 ../../mod/search.php:196
+#: ../../mod/community.php:62 ../../mod/community.php:89
+msgid "No results."
+msgstr "Keine Ergebnisse."
 
-#: ../../mod/dfrn_request.php:847
-msgid "Submit Request"
-msgstr "Anfrage abschicken"
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "Limit für Einladungen erreicht."
 
-#: ../../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 "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s: Keine gültige Email Adresse."
 
-#: ../../mod/content.php:496 ../../include/conversation.php:688
-msgid "View in context"
-msgstr "Im Zusammenhang betrachten"
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"
 
-#: ../../mod/contacts.php:104
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."
+
+#: ../../mod/invite.php:89
 #, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited"
-msgstr[0] "%d Kontakt bearbeitet."
-msgstr[1] "%d Kontakte bearbeitet"
+msgid "%s : Message delivery failed."
+msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
 
-#: ../../mod/contacts.php:135 ../../mod/contacts.php:264
-msgid "Could not access contact record."
-msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
+#: ../../mod/invite.php:93
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d Nachricht gesendet."
+msgstr[1] "%d Nachrichten gesendet."
 
-#: ../../mod/contacts.php:149
-msgid "Could not locate selected profile."
-msgstr "Konnte das ausgewählte Profil nicht finden."
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Du hast keine weiteren Einladungen"
 
-#: ../../mod/contacts.php:178
-msgid "Contact updated."
-msgstr "Kontakt aktualisiert."
+#: ../../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 "Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."
 
-#: ../../mod/contacts.php:278
-msgid "Contact has been blocked"
-msgstr "Kontakt wurde blockiert"
+#: ../../mod/invite.php:122
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica Website."
 
-#: ../../mod/contacts.php:278
-msgid "Contact has been unblocked"
-msgstr "Kontakt wurde wieder freigegeben"
+#: ../../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 "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen du beitreten kannst."
 
-#: ../../mod/contacts.php:288
-msgid "Contact has been ignored"
-msgstr "Kontakt wurde ignoriert"
+#: ../../mod/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."
 
-#: ../../mod/contacts.php:288
-msgid "Contact has been unignored"
-msgstr "Kontakt wird nicht mehr ignoriert"
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Einladungen senden"
 
-#: ../../mod/contacts.php:299
-msgid "Contact has been archived"
-msgstr "Kontakt wurde archiviert"
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
 
-#: ../../mod/contacts.php:299
-msgid "Contact has been unarchived"
-msgstr "Kontakt wurde aus dem Archiv geholt"
+#: ../../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 "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."
 
-#: ../../mod/contacts.php:324 ../../mod/contacts.php:697
-msgid "Do you really want to delete this contact?"
-msgstr "Möchtest du wirklich diesen Kontakt löschen?"
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
 
-#: ../../mod/contacts.php:341
-msgid "Contact has been removed."
-msgstr "Kontakt wurde entfernt."
+#: ../../mod/invite.php:137
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"
 
-#: ../../mod/contacts.php:379
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Du hast mit %s eine beidseitige Freundschaft"
+#: ../../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 "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"
 
-#: ../../mod/contacts.php:383
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Du teilst mit %s"
+#: ../../mod/settings.php:41
+msgid "Additional features"
+msgstr "Zusätzliche Features"
 
-#: ../../mod/contacts.php:388
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s teilt mit Dir"
+#: ../../mod/settings.php:46
+msgid "Display"
+msgstr "Anzeige"
 
-#: ../../mod/contacts.php:405
-msgid "Private communications are not available for this contact."
-msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
+#: ../../mod/settings.php:52 ../../mod/settings.php:775
+msgid "Social Networks"
+msgstr "Soziale Netzwerke"
 
-#: ../../mod/contacts.php:412
-msgid "(Update was successful)"
-msgstr "(Aktualisierung war erfolgreich)"
+#: ../../mod/settings.php:62 ../../include/nav.php:167
+msgid "Delegations"
+msgstr "Delegationen"
 
-#: ../../mod/contacts.php:412
-msgid "(Update was not successful)"
-msgstr "(Aktualisierung war nicht erfolgreich)"
+#: ../../mod/settings.php:67
+msgid "Connected apps"
+msgstr "Verbundene Programme"
 
-#: ../../mod/contacts.php:414
-msgid "Suggest friends"
-msgstr "Kontakte vorschlagen"
+#: ../../mod/settings.php:72 ../../mod/uexport.php:85
+msgid "Export personal data"
+msgstr "Persönliche Daten exportieren"
 
-#: ../../mod/contacts.php:418
-#, php-format
-msgid "Network type: %s"
-msgstr "Netzwerktyp: %s"
+#: ../../mod/settings.php:77
+msgid "Remove account"
+msgstr "Konto löschen"
 
-#: ../../mod/contacts.php:421 ../../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/settings.php:129
+msgid "Missing some important data!"
+msgstr "Wichtige Daten fehlen!"
 
-#: ../../mod/contacts.php:426
-msgid "View all contacts"
-msgstr "Alle Kontakte anzeigen"
+#: ../../mod/settings.php:238
+msgid "Failed to connect with email account using the settings provided."
+msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."
 
-#: ../../mod/contacts.php:434
-msgid "Toggle Blocked status"
-msgstr "Geblockt-Status ein-/ausschalten"
+#: ../../mod/settings.php:243
+msgid "Email settings updated."
+msgstr "E-Mail Einstellungen bearbeitet."
 
-#: ../../mod/contacts.php:437 ../../mod/contacts.php:491
-#: ../../mod/contacts.php:701
-msgid "Unignore"
-msgstr "Ignorieren aufheben"
+#: ../../mod/settings.php:258
+msgid "Features updated"
+msgstr "Features aktualisiert"
 
-#: ../../mod/contacts.php:437 ../../mod/contacts.php:491
-#: ../../mod/contacts.php:701 ../../mod/notifications.php:51
-#: ../../mod/notifications.php:164 ../../mod/notifications.php:210
-msgid "Ignore"
-msgstr "Ignorieren"
+#: ../../mod/settings.php:319
+msgid "Relocate message has been send to your contacts"
+msgstr "Die Umzugsbenachrichtigung wurde an deine Kontakte versendet."
 
-#: ../../mod/contacts.php:440
-msgid "Toggle Ignored status"
-msgstr "Ignoriert-Status ein-/ausschalten"
+#: ../../mod/settings.php:333
+msgid "Passwords do not match. Password unchanged."
+msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
 
-#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
-msgid "Unarchive"
-msgstr "Aus Archiv zurückholen"
+#: ../../mod/settings.php:338
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
 
-#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
-msgid "Archive"
-msgstr "Archivieren"
+#: ../../mod/settings.php:346
+msgid "Wrong password."
+msgstr "Falsches Passwort."
 
-#: ../../mod/contacts.php:447
-msgid "Toggle Archive status"
-msgstr "Archiviert-Status ein-/ausschalten"
+#: ../../mod/settings.php:357
+msgid "Password changed."
+msgstr "Passwort geändert."
 
-#: ../../mod/contacts.php:450
-msgid "Repair"
-msgstr "Reparieren"
+#: ../../mod/settings.php:359
+msgid "Password update failed. Please try again."
+msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
 
-#: ../../mod/contacts.php:453
-msgid "Advanced Contact Settings"
-msgstr "Fortgeschrittene Kontakteinstellungen"
+#: ../../mod/settings.php:424
+msgid " Please use a shorter name."
+msgstr " Bitte verwende einen kürzeren Namen."
 
-#: ../../mod/contacts.php:459
-msgid "Communications lost with this contact!"
-msgstr "Verbindungen mit diesem Kontakt verloren!"
+#: ../../mod/settings.php:426
+msgid " Name too short."
+msgstr " Name ist zu kurz."
 
-#: ../../mod/contacts.php:462
-msgid "Contact Editor"
-msgstr "Kontakt Editor"
+#: ../../mod/settings.php:435
+msgid "Wrong Password"
+msgstr "Falsches Passwort"
 
-#: ../../mod/contacts.php:465
-msgid "Profile Visibility"
-msgstr "Profil-Sichtbarkeit"
+#: ../../mod/settings.php:440
+msgid " Not valid email."
+msgstr " Keine gültige E-Mail."
 
-#: ../../mod/contacts.php:466
-#, 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/settings.php:446
+msgid " Cannot change to that email."
+msgstr "Ändern der E-Mail nicht möglich. "
 
-#: ../../mod/contacts.php:467
-msgid "Contact Information / Notes"
-msgstr "Kontakt Informationen / Notizen"
+#: ../../mod/settings.php:501
+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/contacts.php:468
-msgid "Edit contact notes"
-msgstr "Notizen zum Kontakt bearbeiten"
+#: ../../mod/settings.php:505
+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/contacts.php:473 ../../mod/contacts.php:665
-#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Besuche %ss Profil [%s]"
-
-#: ../../mod/contacts.php:474
-msgid "Block/Unblock contact"
-msgstr "Kontakt blockieren/freischalten"
-
-#: ../../mod/contacts.php:475
-msgid "Ignore contact"
-msgstr "Ignoriere den Kontakt"
-
-#: ../../mod/contacts.php:476
-msgid "Repair URL settings"
-msgstr "URL Einstellungen reparieren"
-
-#: ../../mod/contacts.php:477
-msgid "View conversations"
-msgstr "Unterhaltungen anzeigen"
-
-#: ../../mod/contacts.php:479
-msgid "Delete contact"
-msgstr "Lösche den Kontakt"
-
-#: ../../mod/contacts.php:483
-msgid "Last update:"
-msgstr "letzte Aktualisierung:"
-
-#: ../../mod/contacts.php:485
-msgid "Update public posts"
-msgstr "Öffentliche Beiträge aktualisieren"
-
-#: ../../mod/contacts.php:494
-msgid "Currently blocked"
-msgstr "Derzeit geblockt"
-
-#: ../../mod/contacts.php:495
-msgid "Currently ignored"
-msgstr "Derzeit ignoriert"
-
-#: ../../mod/contacts.php:496
-msgid "Currently archived"
-msgstr "Momentan archiviert"
-
-#: ../../mod/contacts.php:497 ../../mod/notifications.php:157
-#: ../../mod/notifications.php:204
-msgid "Hide this contact from others"
-msgstr "Verberge diesen Kontakt vor anderen"
-
-#: ../../mod/contacts.php:497
-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:498
-msgid "Notification for new posts"
-msgstr "Benachrichtigung bei neuen Beiträgen"
-
-#: ../../mod/contacts.php:498
-msgid "Send a notification of every new post of this contact"
-msgstr "Sende eine Benachrichtigung wann immer dieser Kontakt einen neuen Beitrag schreibt."
-
-#: ../../mod/contacts.php:499
-msgid "Fetch further information for feeds"
-msgstr "Weitere Informationen zu Feeds holen"
-
-#: ../../mod/contacts.php:550
-msgid "Suggestions"
-msgstr "Kontaktvorschläge"
-
-#: ../../mod/contacts.php:553
-msgid "Suggest potential friends"
-msgstr "Freunde vorschlagen"
-
-#: ../../mod/contacts.php:556 ../../mod/group.php:194
-msgid "All Contacts"
-msgstr "Alle Kontakte"
-
-#: ../../mod/contacts.php:559
-msgid "Show all contacts"
-msgstr "Alle Kontakte anzeigen"
-
-#: ../../mod/contacts.php:562
-msgid "Unblocked"
-msgstr "Ungeblockt"
-
-#: ../../mod/contacts.php:565
-msgid "Only show unblocked contacts"
-msgstr "Nur nicht-blockierte Kontakte anzeigen"
-
-#: ../../mod/contacts.php:569
-msgid "Blocked"
-msgstr "Geblockt"
-
-#: ../../mod/contacts.php:572
-msgid "Only show blocked contacts"
-msgstr "Nur blockierte Kontakte anzeigen"
-
-#: ../../mod/contacts.php:576
-msgid "Ignored"
-msgstr "Ignoriert"
-
-#: ../../mod/contacts.php:579
-msgid "Only show ignored contacts"
-msgstr "Nur ignorierte Kontakte anzeigen"
-
-#: ../../mod/contacts.php:583
-msgid "Archived"
-msgstr "Archiviert"
-
-#: ../../mod/contacts.php:586
-msgid "Only show archived contacts"
-msgstr "Nur archivierte Kontakte anzeigen"
-
-#: ../../mod/contacts.php:590
-msgid "Hidden"
-msgstr "Verborgen"
-
-#: ../../mod/contacts.php:593
-msgid "Only show hidden contacts"
-msgstr "Nur verborgene Kontakte anzeigen"
-
-#: ../../mod/contacts.php:641
-msgid "Mutual Friendship"
-msgstr "Beidseitige Freundschaft"
-
-#: ../../mod/contacts.php:645
-msgid "is a fan of yours"
-msgstr "ist ein Fan von dir"
-
-#: ../../mod/contacts.php:649
-msgid "you are a fan of"
-msgstr "du bist Fan von"
-
-#: ../../mod/contacts.php:666 ../../mod/nogroup.php:41
-msgid "Edit contact"
-msgstr "Kontakt bearbeiten"
-
-#: ../../mod/contacts.php:692
-msgid "Search your contacts"
-msgstr "Suche in deinen Kontakten"
-
-#: ../../mod/contacts.php:699 ../../mod/settings.php:131
-#: ../../mod/settings.php:634
-msgid "Update"
-msgstr "Aktualisierungen"
-
-#: ../../mod/settings.php:28 ../../mod/photos.php:80
-msgid "everybody"
-msgstr "jeder"
-
-#: ../../mod/settings.php:40
-msgid "Additional features"
-msgstr "Zusätzliche Features"
-
-#: ../../mod/settings.php:45
-msgid "Display"
-msgstr "Anzeige"
-
-#: ../../mod/settings.php:51 ../../mod/settings.php:774
-msgid "Social Networks"
-msgstr "Soziale Netzwerke"
-
-#: ../../mod/settings.php:61 ../../include/nav.php:167
-msgid "Delegations"
-msgstr "Delegationen"
-
-#: ../../mod/settings.php:66
-msgid "Connected apps"
-msgstr "Verbundene Programme"
-
-#: ../../mod/settings.php:71 ../../mod/uexport.php:85
-msgid "Export personal data"
-msgstr "Persönliche Daten exportieren"
-
-#: ../../mod/settings.php:76
-msgid "Remove account"
-msgstr "Konto löschen"
-
-#: ../../mod/settings.php:128
-msgid "Missing some important data!"
-msgstr "Wichtige Daten fehlen!"
-
-#: ../../mod/settings.php:237
-msgid "Failed to connect with email account using the settings provided."
-msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."
-
-#: ../../mod/settings.php:242
-msgid "Email settings updated."
-msgstr "E-Mail Einstellungen bearbeitet."
-
-#: ../../mod/settings.php:257
-msgid "Features updated"
-msgstr "Features aktualisiert"
-
-#: ../../mod/settings.php:318
-msgid "Relocate message has been send to your contacts"
-msgstr "Die Umzugsbenachrichtigung wurde an deine Kontakte versendet."
-
-#: ../../mod/settings.php:332
-msgid "Passwords do not match. Password unchanged."
-msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
-
-#: ../../mod/settings.php:337
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
-
-#: ../../mod/settings.php:345
-msgid "Wrong password."
-msgstr "Falsches Passwort."
-
-#: ../../mod/settings.php:356
-msgid "Password changed."
-msgstr "Passwort geändert."
-
-#: ../../mod/settings.php:358
-msgid "Password update failed. Please try again."
-msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
-
-#: ../../mod/settings.php:423
-msgid " Please use a shorter name."
-msgstr " Bitte verwende einen kürzeren Namen."
-
-#: ../../mod/settings.php:425
-msgid " Name too short."
-msgstr " Name ist zu kurz."
-
-#: ../../mod/settings.php:434
-msgid "Wrong Password"
-msgstr "Falsches Passwort"
-
-#: ../../mod/settings.php:439
-msgid " Not valid email."
-msgstr " Keine gültige E-Mail."
-
-#: ../../mod/settings.php:445
-msgid " Cannot change to that email."
-msgstr "Ändern der E-Mail nicht möglich. "
-
-#: ../../mod/settings.php:500
-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:504
-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:534
+#: ../../mod/settings.php:535
 msgid "Settings updated."
 msgstr "Einstellungen aktualisiert."
 
-#: ../../mod/settings.php:607 ../../mod/settings.php:633
-#: ../../mod/settings.php:669
+#: ../../mod/settings.php:608 ../../mod/settings.php:634
+#: ../../mod/settings.php:670
 msgid "Add application"
 msgstr "Programm hinzufügen"
 
-#: ../../mod/settings.php:611 ../../mod/settings.php:637
+#: ../../mod/settings.php:612 ../../mod/settings.php:638
 msgid "Consumer Key"
 msgstr "Consumer Key"
 
-#: ../../mod/settings.php:612 ../../mod/settings.php:638
+#: ../../mod/settings.php:613 ../../mod/settings.php:639
 msgid "Consumer Secret"
 msgstr "Consumer Secret"
 
-#: ../../mod/settings.php:613 ../../mod/settings.php:639
+#: ../../mod/settings.php:614 ../../mod/settings.php:640
 msgid "Redirect"
 msgstr "Umleiten"
 
-#: ../../mod/settings.php:614 ../../mod/settings.php:640
+#: ../../mod/settings.php:615 ../../mod/settings.php:641
 msgid "Icon url"
 msgstr "Icon URL"
 
-#: ../../mod/settings.php:625
+#: ../../mod/settings.php:626
 msgid "You can't edit this application."
 msgstr "Du kannst dieses Programm nicht bearbeiten."
 
-#: ../../mod/settings.php:668
+#: ../../mod/settings.php:669
 msgid "Connected Apps"
 msgstr "Verbundene Programme"
 
-#: ../../mod/settings.php:672
+#: ../../mod/settings.php:673
 msgid "Client key starts with"
 msgstr "Anwenderschlüssel beginnt mit"
 
-#: ../../mod/settings.php:673
+#: ../../mod/settings.php:674
 msgid "No name"
 msgstr "Kein Name"
 
-#: ../../mod/settings.php:674
+#: ../../mod/settings.php:675
 msgid "Remove authorization"
 msgstr "Autorisierung entziehen"
 
-#: ../../mod/settings.php:686
+#: ../../mod/settings.php:687
 msgid "No Plugin settings configured"
 msgstr "Keine Plugin-Einstellungen konfiguriert"
 
-#: ../../mod/settings.php:694
+#: ../../mod/settings.php:695
 msgid "Plugin Settings"
 msgstr "Plugin-Einstellungen"
 
-#: ../../mod/settings.php:708
+#: ../../mod/settings.php:709
 msgid "Off"
 msgstr "Aus"
 
-#: ../../mod/settings.php:708
+#: ../../mod/settings.php:709
 msgid "On"
 msgstr "An"
 
-#: ../../mod/settings.php:716
+#: ../../mod/settings.php:717
 msgid "Additional Features"
 msgstr "Zusätzliche Features"
 
-#: ../../mod/settings.php:730 ../../mod/settings.php:731
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
 #, 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:730 ../../mod/settings.php:731
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
 msgid "enabled"
 msgstr "eingeschaltet"
 
-#: ../../mod/settings.php:730 ../../mod/settings.php:731
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
 msgid "disabled"
 msgstr "ausgeschaltet"
 
-#: ../../mod/settings.php:731
+#: ../../mod/settings.php:732
 msgid "StatusNet"
 msgstr "StatusNet"
 
-#: ../../mod/settings.php:767
+#: ../../mod/settings.php:768
 msgid "Email access is disabled on this site."
 msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
 
-#: ../../mod/settings.php:779
+#: ../../mod/settings.php:780
 msgid "Email/Mailbox Setup"
 msgstr "E-Mail/Postfach-Einstellungen"
 
-#: ../../mod/settings.php:780
+#: ../../mod/settings.php:781
 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:781
+#: ../../mod/settings.php:782
 msgid "Last successful email check:"
 msgstr "Letzter erfolgreicher E-Mail Check"
 
-#: ../../mod/settings.php:783
+#: ../../mod/settings.php:784
 msgid "IMAP server name:"
 msgstr "IMAP-Server-Name:"
 
-#: ../../mod/settings.php:784
+#: ../../mod/settings.php:785
 msgid "IMAP port:"
 msgstr "IMAP-Port:"
 
-#: ../../mod/settings.php:785
+#: ../../mod/settings.php:786
 msgid "Security:"
 msgstr "Sicherheit:"
 
-#: ../../mod/settings.php:785 ../../mod/settings.php:790
+#: ../../mod/settings.php:786 ../../mod/settings.php:791
 msgid "None"
 msgstr "Keine"
 
-#: ../../mod/settings.php:786
+#: ../../mod/settings.php:787
 msgid "Email login name:"
 msgstr "E-Mail-Login-Name:"
 
-#: ../../mod/settings.php:787
+#: ../../mod/settings.php:788
 msgid "Email password:"
 msgstr "E-Mail-Passwort:"
 
-#: ../../mod/settings.php:788
+#: ../../mod/settings.php:789
 msgid "Reply-to address:"
 msgstr "Reply-to Adresse:"
 
-#: ../../mod/settings.php:789
+#: ../../mod/settings.php:790
 msgid "Send public posts to all email contacts:"
 msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
 
-#: ../../mod/settings.php:790
+#: ../../mod/settings.php:791
 msgid "Action after import:"
 msgstr "Aktion nach Import:"
 
-#: ../../mod/settings.php:790
+#: ../../mod/settings.php:791
 msgid "Mark as seen"
 msgstr "Als gelesen markieren"
 
-#: ../../mod/settings.php:790
+#: ../../mod/settings.php:791
 msgid "Move to folder"
 msgstr "In einen Ordner verschieben"
 
-#: ../../mod/settings.php:791
+#: ../../mod/settings.php:792
 msgid "Move to folder:"
 msgstr "In diesen Ordner verschieben:"
 
-#: ../../mod/settings.php:869
+#: ../../mod/settings.php:870
 msgid "Display Settings"
 msgstr "Anzeige-Einstellungen"
 
-#: ../../mod/settings.php:875 ../../mod/settings.php:889
+#: ../../mod/settings.php:876 ../../mod/settings.php:890
 msgid "Display Theme:"
 msgstr "Theme:"
 
-#: ../../mod/settings.php:876
+#: ../../mod/settings.php:877
 msgid "Mobile Theme:"
 msgstr "Mobiles Theme"
 
-#: ../../mod/settings.php:877
+#: ../../mod/settings.php:878
 msgid "Update browser every xx seconds"
 msgstr "Browser alle xx Sekunden aktualisieren"
 
-#: ../../mod/settings.php:877
+#: ../../mod/settings.php:878
 msgid "Minimum of 10 seconds, no maximum"
 msgstr "Minimal 10 Sekunden, kein Maximum"
 
-#: ../../mod/settings.php:878
+#: ../../mod/settings.php:879
 msgid "Number of items to display per page:"
 msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
 
-#: ../../mod/settings.php:878 ../../mod/settings.php:879
+#: ../../mod/settings.php:879 ../../mod/settings.php:880
 msgid "Maximum of 100 items"
 msgstr "Maximal 100 Beiträge"
 
-#: ../../mod/settings.php:879
+#: ../../mod/settings.php:880
 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:880
+#: ../../mod/settings.php:881
 msgid "Don't show emoticons"
 msgstr "Keine Smilies anzeigen"
 
-#: ../../mod/settings.php:881
+#: ../../mod/settings.php:882
 msgid "Don't show notices"
 msgstr "Info-Popups nicht anzeigen"
 
-#: ../../mod/settings.php:882
+#: ../../mod/settings.php:883
 msgid "Infinite scroll"
 msgstr "Endloses Scrollen"
 
-#: ../../mod/settings.php:959
+#: ../../mod/settings.php:960
+msgid "User Types"
+msgstr "Nutzer Art"
+
+#: ../../mod/settings.php:961
+msgid "Community Types"
+msgstr "Gemeinschafts Art"
+
+#: ../../mod/settings.php:962
 msgid "Normal Account Page"
 msgstr "Normales Konto"
 
-#: ../../mod/settings.php:960
+#: ../../mod/settings.php:963
 msgid "This account is a normal personal profile"
 msgstr "Dieses Konto ist ein normales persönliches Profil"
 
-#: ../../mod/settings.php:963
+#: ../../mod/settings.php:966
 msgid "Soapbox Page"
 msgstr "Marktschreier-Konto"
 
-#: ../../mod/settings.php:964
+#: ../../mod/settings.php:967
 msgid "Automatically approve all connection/friend requests as read-only fans"
 msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
 
-#: ../../mod/settings.php:967
+#: ../../mod/settings.php:970
 msgid "Community Forum/Celebrity Account"
 msgstr "Forum/Promi-Konto"
 
-#: ../../mod/settings.php:968
+#: ../../mod/settings.php:971
 msgid ""
 "Automatically approve all connection/friend requests as read-write fans"
 msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert"
 
-#: ../../mod/settings.php:971
+#: ../../mod/settings.php:974
 msgid "Automatic Friend Page"
 msgstr "Automatische Freunde Seite"
 
-#: ../../mod/settings.php:972
+#: ../../mod/settings.php:975
 msgid "Automatically approve all connection/friend requests as friends"
 msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
 
-#: ../../mod/settings.php:975
+#: ../../mod/settings.php:978
 msgid "Private Forum [Experimental]"
 msgstr "Privates Forum [Versuchsstadium]"
 
-#: ../../mod/settings.php:976
+#: ../../mod/settings.php:979
 msgid "Private forum - approved members only"
 msgstr "Privates Forum, nur für Mitglieder"
 
-#: ../../mod/settings.php:988
+#: ../../mod/settings.php:991
 msgid "OpenID:"
 msgstr "OpenID:"
 
-#: ../../mod/settings.php:988
+#: ../../mod/settings.php:991
 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:998
+#: ../../mod/settings.php:1001
 msgid "Publish your default profile in your local site directory?"
 msgstr "Darf dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
 
-#: ../../mod/settings.php:1004
+#: ../../mod/settings.php:1007
 msgid "Publish your default profile in the global social directory?"
 msgstr "Darf dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
 
-#: ../../mod/settings.php:1012
+#: ../../mod/settings.php:1015
 msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
 
-#: ../../mod/settings.php:1016
+#: ../../mod/settings.php:1019 ../../include/conversation.php:1055
 msgid "Hide your profile details from unknown viewers?"
 msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
 
-#: ../../mod/settings.php:1021
+#: ../../mod/settings.php:1024
 msgid "Allow friends to post to your profile page?"
 msgstr "Dürfen deine Kontakte auf deine Pinnwand schreiben?"
 
-#: ../../mod/settings.php:1027
+#: ../../mod/settings.php:1030
 msgid "Allow friends to tag your posts?"
 msgstr "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?"
 
-#: ../../mod/settings.php:1033
+#: ../../mod/settings.php:1036
 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:1039
+#: ../../mod/settings.php:1042
 msgid "Permit unknown people to send you private mail?"
 msgstr "Dürfen dir Unbekannte private Nachrichten schicken?"
 
-#: ../../mod/settings.php:1047
+#: ../../mod/settings.php:1050
 msgid "Profile is <strong>not published</strong>."
 msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
 
-#: ../../mod/settings.php:1050 ../../mod/profile_photo.php:248
+#: ../../mod/settings.php:1053 ../../mod/profile_photo.php:248
 msgid "or"
 msgstr "oder"
 
-#: ../../mod/settings.php:1055
+#: ../../mod/settings.php:1058
 msgid "Your Identity Address is"
 msgstr "Die Adresse deines Profils lautet:"
 
-#: ../../mod/settings.php:1066
+#: ../../mod/settings.php:1069
 msgid "Automatically expire posts after this many days:"
 msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
 
-#: ../../mod/settings.php:1066
+#: ../../mod/settings.php:1069
 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:1067
+#: ../../mod/settings.php:1070
 msgid "Advanced expiration settings"
 msgstr "Erweiterte Verfallseinstellungen"
 
-#: ../../mod/settings.php:1068
+#: ../../mod/settings.php:1071
 msgid "Advanced Expiration"
 msgstr "Erweitertes Verfallen"
 
-#: ../../mod/settings.php:1069
+#: ../../mod/settings.php:1072
 msgid "Expire posts:"
 msgstr "Beiträge verfallen lassen:"
 
-#: ../../mod/settings.php:1070
+#: ../../mod/settings.php:1073
 msgid "Expire personal notes:"
 msgstr "Persönliche Notizen verfallen lassen:"
 
-#: ../../mod/settings.php:1071
+#: ../../mod/settings.php:1074
 msgid "Expire starred posts:"
 msgstr "Markierte Beiträge verfallen lassen:"
 
-#: ../../mod/settings.php:1072
+#: ../../mod/settings.php:1075
 msgid "Expire photos:"
 msgstr "Fotos verfallen lassen:"
 
-#: ../../mod/settings.php:1073
+#: ../../mod/settings.php:1076
 msgid "Only expire posts by others:"
 msgstr "Nur Beiträge anderer verfallen:"
 
-#: ../../mod/settings.php:1099
+#: ../../mod/settings.php:1102
 msgid "Account Settings"
 msgstr "Kontoeinstellungen"
 
-#: ../../mod/settings.php:1107
+#: ../../mod/settings.php:1110
 msgid "Password Settings"
 msgstr "Passwort-Einstellungen"
 
-#: ../../mod/settings.php:1108
+#: ../../mod/settings.php:1111
 msgid "New Password:"
 msgstr "Neues Passwort:"
 
-#: ../../mod/settings.php:1109
+#: ../../mod/settings.php:1112
 msgid "Confirm:"
 msgstr "Bestätigen:"
 
-#: ../../mod/settings.php:1109
+#: ../../mod/settings.php:1112
 msgid "Leave password fields blank unless changing"
 msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern"
 
-#: ../../mod/settings.php:1110
+#: ../../mod/settings.php:1113
 msgid "Current Password:"
 msgstr "Aktuelles Passwort:"
 
-#: ../../mod/settings.php:1110 ../../mod/settings.php:1111
+#: ../../mod/settings.php:1113 ../../mod/settings.php:1114
 msgid "Your current password to confirm the changes"
 msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen"
 
-#: ../../mod/settings.php:1111
+#: ../../mod/settings.php:1114
 msgid "Password:"
 msgstr "Passwort:"
 
-#: ../../mod/settings.php:1115
+#: ../../mod/settings.php:1118
 msgid "Basic Settings"
 msgstr "Grundeinstellungen"
 
-#: ../../mod/settings.php:1116 ../../include/profile_advanced.php:15
+#: ../../mod/settings.php:1119 ../../include/profile_advanced.php:15
 msgid "Full Name:"
 msgstr "Kompletter Name:"
 
-#: ../../mod/settings.php:1117
+#: ../../mod/settings.php:1120
 msgid "Email Address:"
 msgstr "E-Mail-Adresse:"
 
-#: ../../mod/settings.php:1118
+#: ../../mod/settings.php:1121
 msgid "Your Timezone:"
 msgstr "Deine Zeitzone:"
 
-#: ../../mod/settings.php:1119
+#: ../../mod/settings.php:1122
 msgid "Default Post Location:"
 msgstr "Standardstandort:"
 
-#: ../../mod/settings.php:1120
+#: ../../mod/settings.php:1123
 msgid "Use Browser Location:"
 msgstr "Standort des Browsers verwenden:"
 
-#: ../../mod/settings.php:1123
+#: ../../mod/settings.php:1126
 msgid "Security and Privacy Settings"
 msgstr "Sicherheits- und Privatsphäre-Einstellungen"
 
-#: ../../mod/settings.php:1125
+#: ../../mod/settings.php:1128
 msgid "Maximum Friend Requests/Day:"
 msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:"
 
-#: ../../mod/settings.php:1125 ../../mod/settings.php:1155
+#: ../../mod/settings.php:1128 ../../mod/settings.php:1158
 msgid "(to prevent spam abuse)"
 msgstr "(um SPAM zu vermeiden)"
 
-#: ../../mod/settings.php:1126
+#: ../../mod/settings.php:1129
 msgid "Default Post Permissions"
 msgstr "Standard-Zugriffsrechte für Beiträge"
 
-#: ../../mod/settings.php:1127
+#: ../../mod/settings.php:1130
 msgid "(click to open/close)"
 msgstr "(klicke zum öffnen/schließen)"
 
-#: ../../mod/settings.php:1136 ../../mod/photos.php:1144
-#: ../../mod/photos.php:1515
-msgid "Show to Groups"
-msgstr "Zeige den Gruppen"
-
-#: ../../mod/settings.php:1137 ../../mod/photos.php:1145
-#: ../../mod/photos.php:1516
-msgid "Show to Contacts"
-msgstr "Zeige den Kontakten"
-
-#: ../../mod/settings.php:1138
+#: ../../mod/settings.php:1141
 msgid "Default Private Post"
 msgstr "Privater Standardbeitrag"
 
-#: ../../mod/settings.php:1139
+#: ../../mod/settings.php:1142
 msgid "Default Public Post"
 msgstr "Öffentlicher Standardbeitrag"
 
-#: ../../mod/settings.php:1143
+#: ../../mod/settings.php:1146
 msgid "Default Permissions for New Posts"
 msgstr "Standardberechtigungen für neue Beiträge"
 
-#: ../../mod/settings.php:1155
+#: ../../mod/settings.php:1158
 msgid "Maximum private messages per day from unknown people:"
 msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
 
-#: ../../mod/settings.php:1158
+#: ../../mod/settings.php:1161
 msgid "Notification Settings"
 msgstr "Benachrichtigungseinstellungen"
 
-#: ../../mod/settings.php:1159
+#: ../../mod/settings.php:1162
 msgid "By default post a status message when:"
 msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
 
-#: ../../mod/settings.php:1160
+#: ../../mod/settings.php:1163
 msgid "accepting a friend request"
 msgstr "– du eine Kontaktanfrage akzeptierst"
 
-#: ../../mod/settings.php:1161
+#: ../../mod/settings.php:1164
 msgid "joining a forum/community"
 msgstr "– du einem Forum/einer Gemeinschaftsseite beitrittst"
 
-#: ../../mod/settings.php:1162
+#: ../../mod/settings.php:1165
 msgid "making an <em>interesting</em> profile change"
 msgstr "– du eine <em>interessante</em> Änderung an deinem Profil durchführst"
 
-#: ../../mod/settings.php:1163
+#: ../../mod/settings.php:1166
 msgid "Send a notification email when:"
 msgstr "Benachrichtigungs-E-Mail senden wenn:"
 
-#: ../../mod/settings.php:1164
+#: ../../mod/settings.php:1167
 msgid "You receive an introduction"
 msgstr "– du eine Kontaktanfrage erhältst"
 
-#: ../../mod/settings.php:1165
+#: ../../mod/settings.php:1168
 msgid "Your introductions are confirmed"
 msgstr "– eine deiner Kontaktanfragen akzeptiert wurde"
 
-#: ../../mod/settings.php:1166
+#: ../../mod/settings.php:1169
 msgid "Someone writes on your profile wall"
 msgstr "– jemand etwas auf deine Pinnwand schreibt"
 
-#: ../../mod/settings.php:1167
+#: ../../mod/settings.php:1170
 msgid "Someone writes a followup comment"
 msgstr "– jemand auch einen Kommentar verfasst"
 
-#: ../../mod/settings.php:1168
+#: ../../mod/settings.php:1171
 msgid "You receive a private message"
 msgstr "– du eine private Nachricht erhältst"
 
-#: ../../mod/settings.php:1169
+#: ../../mod/settings.php:1172
 msgid "You receive a friend suggestion"
 msgstr "– du eine Empfehlung erhältst"
 
-#: ../../mod/settings.php:1170
+#: ../../mod/settings.php:1173
 msgid "You are tagged in a post"
 msgstr "– du in einem Beitrag erwähnt wirst"
 
-#: ../../mod/settings.php:1171
+#: ../../mod/settings.php:1174
 msgid "You are poked/prodded/etc. in a post"
 msgstr "– du von jemandem angestupst oder sonstwie behandelt wirst"
 
-#: ../../mod/settings.php:1174
+#: ../../mod/settings.php:1177
 msgid "Advanced Account/Page Type Settings"
 msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
 
-#: ../../mod/settings.php:1175
+#: ../../mod/settings.php:1178
 msgid "Change the behaviour of this account for special situations"
 msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
 
-#: ../../mod/settings.php:1178
+#: ../../mod/settings.php:1181
 msgid "Relocate"
 msgstr "Umziehen"
 
-#: ../../mod/settings.php:1179
+#: ../../mod/settings.php:1182
 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:1180
+#: ../../mod/settings.php:1183
 msgid "Resend relocate message to contacts"
 msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
 
+#: ../../mod/display.php:263
+msgid "Item has been removed."
+msgstr "Eintrag wurde entfernt."
+
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Personensuche"
+
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "Keine Übereinstimmungen"
+
 #: ../../mod/profiles.php:37
 msgid "Profile deleted."
 msgstr "Profil gelöscht."
@@ -4486,207 +4278,323 @@ msgid ""
 "be visible to anybody using the internet."
 msgstr "Dies ist dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein."
 
+#: ../../mod/profiles.php:690 ../../mod/directory.php:111
+msgid "Age: "
+msgstr "Alter: "
+
 #: ../../mod/profiles.php:729
 msgid "Edit/Manage Profiles"
 msgstr "Bearbeite/Verwalte Profile"
 
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "Gruppe erstellt."
-
-#: ../../mod/group.php:35
-msgid "Could not create group."
-msgstr "Konnte die Gruppe nicht erstellen."
-
-#: ../../mod/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
-msgstr "Gruppe nicht gefunden."
+#: ../../mod/profiles.php:730 ../../boot.php:1473 ../../boot.php:1499
+msgid "Change profile photo"
+msgstr "Profilbild ändern"
 
-#: ../../mod/group.php:60
-msgid "Group name changed."
-msgstr "Gruppenname geändert."
+#: ../../mod/profiles.php:731 ../../boot.php:1474
+msgid "Create New Profile"
+msgstr "Neues Profil anlegen"
 
-#: ../../mod/group.php:87
-msgid "Save Group"
-msgstr "Gruppe speichern"
+#: ../../mod/profiles.php:742 ../../boot.php:1484
+msgid "Profile Image"
+msgstr "Profilbild"
 
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Eine Gruppe von Kontakten/Freunden anlegen."
+#: ../../mod/profiles.php:744 ../../boot.php:1487
+msgid "visible to everybody"
+msgstr "sichtbar für jeden"
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr "Gruppenname:"
+#: ../../mod/profiles.php:745 ../../boot.php:1488
+msgid "Edit visibility"
+msgstr "Sichtbarkeit bearbeiten"
 
-#: ../../mod/group.php:113
-msgid "Group removed."
-msgstr "Gruppe entfernt."
+#: ../../mod/share.php:44
+msgid "link"
+msgstr "Link"
 
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Konnte die Gruppe nicht entfernen."
+#: ../../mod/uexport.php:77
+msgid "Export account"
+msgstr "Account exportieren"
 
-#: ../../mod/group.php:179
-msgid "Group Editor"
-msgstr "Gruppeneditor"
+#: ../../mod/uexport.php:77
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr "Exportiere deine Accountinformationen und Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."
 
-#: ../../mod/group.php:192
-msgid "Members"
-msgstr "Mitglieder"
+#: ../../mod/uexport.php:78
+msgid "Export all"
+msgstr "Alles exportieren"
 
-#: ../../mod/group.php:224 ../../mod/profperm.php:105
-msgid "Click on a contact to add or remove."
-msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
+#: ../../mod/uexport.php:78
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
+msgstr "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Fotos werden nicht exportiert)."
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Quelle (bbcode) Text:"
+#: ../../mod/ping.php:238
+msgid "{0} wants to be your friend"
+msgstr "{0} möchte mit dir in Kontakt treten"
 
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"
+#: ../../mod/ping.php:243
+msgid "{0} sent you a message"
+msgstr "{0} schickte dir eine Nachricht"
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr "Originaltext:"
+#: ../../mod/ping.php:248
+msgid "{0} requested registration"
+msgstr "{0} möchte sich registrieren"
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (reines HTML): "
+#: ../../mod/ping.php:254
+#, php-format
+msgid "{0} commented %s's post"
+msgstr "{0} kommentierte einen Beitrag von %s"
 
-#: ../../mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html: "
+#: ../../mod/ping.php:259
+#, php-format
+msgid "{0} liked %s's post"
+msgstr "{0} mag %ss Beitrag"
 
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
+#: ../../mod/ping.php:264
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "{0} mag %ss Beitrag nicht"
 
-#: ../../mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
+#: ../../mod/ping.php:269
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0} ist jetzt mit %s befreundet"
 
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
+#: ../../mod/ping.php:274
+msgid "{0} posted"
+msgstr "{0} hat etwas veröffentlicht"
 
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
+#: ../../mod/ping.php:279
+#, php-format
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen"
 
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
+#: ../../mod/ping.php:285
+msgid "{0} mentioned you in a post"
+msgstr "{0} hat dich in einem Beitrag erwähnt"
 
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Originaltext (Diaspora Format): "
+#: ../../mod/navigation.php:20 ../../include/nav.php:34
+msgid "Nothing new here"
+msgstr "Keine Neuigkeiten"
 
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: ../../mod/navigation.php:24 ../../include/nav.php:38
+msgid "Clear notifications"
+msgstr "Bereinige Benachrichtigungen"
 
 #: ../../mod/community.php:23
 msgid "Not available."
 msgstr "Nicht verfügbar."
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "Kontakt hinzugefügt"
+#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:129
+#: ../../include/nav.php:128
+msgid "Community"
+msgstr "Gemeinschaft"
 
-#: ../../mod/notify.php:61 ../../mod/notifications.php:332
-msgid "No more system notifications."
-msgstr "Keine weiteren Systembenachrichtigungen."
+#: ../../mod/filer.php:30 ../../include/conversation.php:1004
+#: ../../include/conversation.php:1022
+msgid "Save to Folder:"
+msgstr "In diesem Ordner speichern:"
 
-#: ../../mod/notify.php:65 ../../mod/notifications.php:336
-msgid "System Notifications"
-msgstr "Systembenachrichtigungen"
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "- auswählen -"
 
-#: ../../mod/message.php:9 ../../include/nav.php:161
-msgid "New Message"
-msgstr "Neue Nachricht"
+#: ../../mod/filer.php:31 ../../mod/notes.php:63 ../../include/text.php:954
+msgid "Save"
+msgstr "Speichern"
 
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Konnte die Kontaktinformationen nicht finden."
+#: ../../mod/wall_attach.php:75
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."
 
-#: ../../mod/message.php:182 ../../mod/notifications.php:103
-#: ../../include/nav.php:158
-msgid "Messages"
-msgstr "Nachrichten"
+#: ../../mod/wall_attach.php:75
+msgid "Or - did you try to upload an empty file?"
+msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
 
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
-msgstr "Möchtest du wirklich diese Nachricht löschen?"
+#: ../../mod/wall_attach.php:81
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Die Datei ist größer als das erlaubte Limit von %d"
 
-#: ../../mod/message.php:227
-msgid "Message deleted."
-msgstr "Nachricht gelöscht."
+#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
+msgid "File upload failed."
+msgstr "Hochladen der Datei fehlgeschlagen."
 
-#: ../../mod/message.php:258
-msgid "Conversation removed."
-msgstr "Unterhaltung gelöscht."
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Ungültiger Profil-Bezeichner."
 
-#: ../../mod/message.php:371
-msgid "No messages."
-msgstr "Keine Nachrichten."
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr "Editor für die Profil-Sichtbarkeit"
 
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "'Unbekannter Absender - %s"
+#: ../../mod/profperm.php:105 ../../mod/group.php:224
+msgid "Click on a contact to add or remove."
+msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
 
-#: ../../mod/message.php:381
-#, php-format
-msgid "You and %s"
-msgstr "Du und %s"
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Sichtbar für"
 
-#: ../../mod/message.php:384
-#, php-format
-msgid "%s and You"
-msgstr "%s und du"
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
 
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
-msgstr "Unterhaltung löschen"
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Möchtest du wirklich diese Empfehlung löschen?"
 
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
-msgstr "D, d. M Y - g:i A"
+#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:527
+#: ../../include/contact_widgets.php:34
+msgid "Friend Suggestions"
+msgstr "Kontaktvorschläge"
 
-#: ../../mod/message.php:411
+#: ../../mod/suggest.php:72
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
+
+#: ../../mod/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1445
+#: ../../include/contact_widgets.php:9
+msgid "Connect"
+msgstr "Verbinden"
+
+#: ../../mod/suggest.php:90
+msgid "Ignore/Hide"
+msgstr "Ignorieren/Verbergen"
+
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Zugriff verweigert."
+
+#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
 #, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d Nachricht"
-msgstr[1] "%d Nachrichten"
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s heißt %2$s herzlich willkommen"
 
-#: ../../mod/message.php:450
-msgid "Message not available."
-msgstr "Nachricht nicht verfügbar."
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Verwalte Identitäten und/oder Seiten"
 
-#: ../../mod/message.php:520
-msgid "Delete message"
-msgstr "Nachricht löschen"
+#: ../../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 "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die deine Kontoinformationen teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast."
 
-#: ../../mod/message.php:548
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Wähle eine Identität zum Verwalten aus: "
+
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
+
+#: ../../mod/delegate.php:124 ../../include/nav.php:167
+msgid "Delegate Page Management"
+msgstr "Delegiere das Management für die Seite"
+
+#: ../../mod/delegate.php:126
 msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst du auf der Profilseite des Absenders antworten."
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!"
 
-#: ../../mod/message.php:552
-msgid "Send Reply"
-msgstr "Antwort senden"
+#: ../../mod/delegate.php:127
+msgid "Existing Page Managers"
+msgstr "Vorhandene Seitenmanager"
 
-#: ../../mod/like.php:169 ../../include/conversation.php:140
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s mag %2$ss %3$s nicht"
+#: ../../mod/delegate.php:129
+msgid "Existing Page Delegates"
+msgstr "Vorhandene Bevollmächtigte für die Seite"
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Beitrag erfolgreich veröffentlicht."
+#: ../../mod/delegate.php:131
+msgid "Potential Delegates"
+msgstr "Potentielle Bevollmächtigte"
+
+#: ../../mod/delegate.php:134
+msgid "Add"
+msgstr "Hinzufügen"
+
+#: ../../mod/delegate.php:135
+msgid "No entries."
+msgstr "Keine Einträge."
+
+#: ../../mod/viewcontacts.php:39
+msgid "No contacts."
+msgstr "Keine Kontakte."
+
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:874
+msgid "View Contacts"
+msgstr "Kontakte anzeigen"
+
+#: ../../mod/notes.php:44 ../../boot.php:2010
+msgid "Personal Notes"
+msgstr "Persönliche Notizen"
+
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Anstupsen"
+
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "Stupse Leute an oder mache anderes mit ihnen"
+
+#: ../../mod/poke.php:194
+msgid "Recipient"
+msgstr "Empfänger"
+
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Was willst du mit dem Empfänger machen:"
+
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr "Diesen Beitrag privat machen"
+
+#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:525
+msgid "Global Directory"
+msgstr "Weltweites Verzeichnis"
+
+#: ../../mod/directory.php:57
+msgid "Find on this site"
+msgstr "Auf diesem Server suchen"
+
+#: ../../mod/directory.php:60
+msgid "Site Directory"
+msgstr "Verzeichnis"
+
+#: ../../mod/directory.php:114
+msgid "Gender: "
+msgstr "Geschlecht:"
+
+#: ../../mod/directory.php:136 ../../boot.php:1515
+#: ../../include/profile_advanced.php:17
+msgid "Gender:"
+msgstr "Geschlecht:"
+
+#: ../../mod/directory.php:138 ../../boot.php:1518
+#: ../../include/profile_advanced.php:37
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../mod/directory.php:140 ../../boot.php:1520
+#: ../../include/profile_advanced.php:48
+msgid "Homepage:"
+msgstr "Homepage:"
+
+#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
+msgid "About:"
+msgstr "Über:"
+
+#: ../../mod/directory.php:187
+msgid "No entries (some entries may be hidden)."
+msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
 
 #: ../../mod/localtime.php:12 ../../include/event.php:11
 #: ../../include/bb2diaspora.php:133
@@ -4722,406 +4630,433 @@ msgstr "Umgerechnete lokale Zeit: %s"
 msgid "Please select your timezone:"
 msgstr "Bitte wähle deine Zeitzone:"
 
-#: ../../mod/filer.php:30 ../../include/conversation.php:1004
-#: ../../include/conversation.php:1022
-msgid "Save to Folder:"
-msgstr "In diesem Ordner speichern:"
-
-#: ../../mod/filer.php:30
-msgid "- select -"
-msgstr "- auswählen -"
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Beitrag erfolgreich veröffentlicht."
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Ungültiger Profil-Bezeichner."
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
 
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "Editor für die Profil-Sichtbarkeit"
+#: ../../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 "Verkleinern der Bildgröße von [%s] scheiterte."
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Sichtbar für"
+#: ../../mod/profile_photo.php:118
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Bild konnte nicht verarbeitet werden"
 
-#: ../../mod/viewcontacts.php:39
-msgid "No contacts."
-msgstr "Keine Kontakte."
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Datei hochladen:"
 
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:861
-msgid "View Contacts"
-msgstr "Kontakte anzeigen"
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Profil auswählen:"
 
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Personensuche"
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Hochladen"
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "Keine Übereinstimmungen"
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "diesen Schritt überspringen"
 
-#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1810
-msgid "Upload New Photos"
-msgstr "Neue Fotos hochladen"
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "wähle ein Foto aus deinen Fotoalben"
 
-#: ../../mod/photos.php:144
-msgid "Contact information unavailable"
-msgstr "Kontaktinformationen nicht verfügbar"
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "Bild zurechtschneiden"
 
-#: ../../mod/photos.php:165
-msgid "Album not found."
-msgstr "Album nicht gefunden."
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
 
-#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
-msgid "Delete Album"
-msgstr "Album löschen"
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Bearbeitung abgeschlossen"
 
-#: ../../mod/photos.php:198
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?"
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "Bild erfolgreich hochgeladen."
 
-#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511
-msgid "Delete Photo"
-msgstr "Foto löschen"
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica-Server für soziale Netzwerke – Setup"
 
-#: ../../mod/photos.php:287
-msgid "Do you really want to delete this photo?"
-msgstr "Möchtest du wirklich dieses Foto löschen?"
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr "Verbindung zur Datenbank gescheitert."
 
-#: ../../mod/photos.php:660
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s wurde von %3$s in %2$s getaggt"
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "Tabelle konnte nicht angelegt werden."
 
-#: ../../mod/photos.php:660
-msgid "a photo"
-msgstr "einem Foto"
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "Die Datenbank deiner Friendicaseite wurde installiert."
 
-#: ../../mod/photos.php:765
-msgid "Image exceeds size limit of "
-msgstr "Die Bildgröße übersteigt das Limit von "
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Möglicherweise musst du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."
 
-#: ../../mod/photos.php:773
-msgid "Image file is empty."
-msgstr "Bilddatei ist leer."
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:521
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Lies bitte die \"INSTALL.txt\"."
 
-#: ../../mod/photos.php:805 ../../mod/wall_upload.php:112
-#: ../../mod/profile_photo.php:153
-msgid "Unable to process image."
-msgstr "Konnte das Bild nicht bearbeiten."
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "Systemtest"
 
-#: ../../mod/photos.php:832 ../../mod/wall_upload.php:138
-#: ../../mod/profile_photo.php:301
-msgid "Image upload failed."
-msgstr "Hochladen des Bildes gescheitert."
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "Noch einmal testen"
 
-#: ../../mod/photos.php:928
-msgid "No photos selected"
-msgstr "Keine Bilder ausgewählt"
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Datenbankverbindung"
 
-#: ../../mod/photos.php:1029 ../../mod/videos.php:226
-msgid "Access to this item is restricted."
-msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit deiner Datenbank Kontakt aufnehmen können."
 
-#: ../../mod/photos.php:1092
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."
+#: ../../mod/install.php:229
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls du Fragen zu diesen Einstellungen haben solltest."
 
-#: ../../mod/photos.php:1127
-msgid "Upload Photos"
-msgstr "Bilder hochladen"
+#: ../../mod/install.php:230
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "Die Datenbank, die du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor du mit der Installation fortfährst."
 
-#: ../../mod/photos.php:1131 ../../mod/photos.php:1199
-msgid "New album name: "
-msgstr "Name des neuen Albums: "
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Datenbank-Server"
 
-#: ../../mod/photos.php:1132
-msgid "or existing album name: "
-msgstr "oder existierender Albumname: "
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Datenbank-Nutzer"
 
-#: ../../mod/photos.php:1133
-msgid "Do not show a status post for this upload"
-msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Datenbank-Passwort"
 
-#: ../../mod/photos.php:1135 ../../mod/photos.php:1506
-msgid "Permissions"
-msgstr "Berechtigungen"
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Datenbank-Name"
 
-#: ../../mod/photos.php:1146
-msgid "Private Photo"
-msgstr "Privates Foto"
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "E-Mail-Adresse des Administrators"
 
-#: ../../mod/photos.php:1147
-msgid "Public Photo"
-msgstr "Öffentliches Foto"
+#: ../../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 "Die E-Mail-Adresse, die in deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit du das Admin-Panel benutzen kannst."
 
-#: ../../mod/photos.php:1214
-msgid "Edit Album"
-msgstr "Album bearbeiten"
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
+msgstr "Bitte wähle die Standardzeitzone deiner Webseite"
 
-#: ../../mod/photos.php:1220
-msgid "Show Newest First"
-msgstr "Zeige neueste zuerst"
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Server-Einstellungen"
 
-#: ../../mod/photos.php:1222
-msgid "Show Oldest First"
-msgstr "Zeige älteste zuerst"
+#: ../../mod/install.php:321
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."
 
-#: ../../mod/photos.php:1255 ../../mod/photos.php:1793
-msgid "View Photo"
-msgstr "Foto betrachten"
+#: ../../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 "Wenn du keine Kommandozeilen Version von PHP auf deinem Server installiert hast, kannst du keine Hintergrundprozesse via cron starten. Siehe <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
 
-#: ../../mod/photos.php:1290
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
+#: ../../mod/install.php:326
+msgid "PHP executable path"
+msgstr "Pfad zu PHP"
 
-#: ../../mod/photos.php:1292
-msgid "Photo not available"
-msgstr "Foto nicht verfügbar"
+#: ../../mod/install.php:326
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."
 
-#: ../../mod/photos.php:1348
-msgid "View photo"
-msgstr "Fotos ansehen"
+#: ../../mod/install.php:331
+msgid "Command line PHP"
+msgstr "Kommandozeilen-PHP"
 
-#: ../../mod/photos.php:1348
-msgid "Edit photo"
-msgstr "Foto bearbeiten"
+#: ../../mod/install.php:340
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"
 
-#: ../../mod/photos.php:1349
-msgid "Use as profile photo"
-msgstr "Als Profilbild verwenden"
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
+msgstr "Gefundene PHP Version:"
 
-#: ../../mod/photos.php:1374
-msgid "View Full Size"
-msgstr "Betrachte Originalgröße"
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
+msgstr "PHP CLI Binary"
 
-#: ../../mod/photos.php:1453
-msgid "Tags: "
-msgstr "Tags: "
+#: ../../mod/install.php:354
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "Die Kommandozeilenversion von PHP auf deinem System hat \"register_argc_argv\" nicht aktiviert."
 
-#: ../../mod/photos.php:1456
-msgid "[Remove any tag]"
-msgstr "[Tag entfernen]"
+#: ../../mod/install.php:355
+msgid "This is required for message delivery to work."
+msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
 
-#: ../../mod/photos.php:1496
-msgid "Rotate CW (right)"
-msgstr "Drehen US (rechts)"
-
-#: ../../mod/photos.php:1497
-msgid "Rotate CCW (left)"
-msgstr "Drehen EUS (links)"
-
-#: ../../mod/photos.php:1499
-msgid "New album name"
-msgstr "Name des neuen Albums"
-
-#: ../../mod/photos.php:1502
-msgid "Caption"
-msgstr "Bildunterschrift"
-
-#: ../../mod/photos.php:1504
-msgid "Add a Tag"
-msgstr "Tag hinzufügen"
+#: ../../mod/install.php:357
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../mod/photos.php:1508
+#: ../../mod/install.php:378
 msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"
 
-#: ../../mod/photos.php:1517
-msgid "Private photo"
-msgstr "Privates Foto"
+#: ../../mod/install.php:379
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Wenn der Server unter Windows läuft, schau dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."
 
-#: ../../mod/photos.php:1518
-msgid "Public photo"
-msgstr "Öffentliches Foto"
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
+msgstr "Schlüssel erzeugen"
 
-#: ../../mod/photos.php:1540 ../../include/conversation.php:1083
-msgid "Share"
-msgstr "Teilen"
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
+msgstr "PHP: libCurl-Modul"
 
-#: ../../mod/photos.php:1799 ../../mod/videos.php:308
-msgid "View Album"
-msgstr "Album betrachten"
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr "PHP: GD-Grafikmodul"
 
-#: ../../mod/photos.php:1808
-msgid "Recent Photos"
-msgstr "Neueste Fotos"
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr "PHP: OpenSSL-Modul"
 
-#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."
+#: ../../mod/install.php:391
+msgid "mysqli PHP module"
+msgstr "PHP: mysqli-Modul"
 
-#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75
-msgid "Or - did you try to upload an empty file?"
-msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
+#: ../../mod/install.php:392
+msgid "mb_string PHP module"
+msgstr "PHP: mb_string-Modul"
 
-#: ../../mod/wall_attach.php:81 ../../wall_attach.php:81
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Die Datei ist größer als das erlaubte Limit von %d"
+#: ../../mod/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite module"
 
-#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
-#: ../../wall_attach.php:122 ../../wall_attach.php:133
-msgid "File upload failed."
-msgstr "Hochladen der Datei fehlgeschlagen."
+#: ../../mod/install.php:397
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."
 
-#: ../../mod/videos.php:125
-msgid "No videos selected"
-msgstr "Keine Videos  ausgewählt"
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
 
-#: ../../mod/videos.php:301 ../../include/text.php:1387
-msgid "View Video"
-msgstr "Video ansehen"
+#: ../../mod/install.php:409
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."
 
-#: ../../mod/videos.php:317
-msgid "Recent Videos"
-msgstr "Neueste Videos"
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
 
-#: ../../mod/videos.php:319
-msgid "Upload New Videos"
-msgstr "Neues Video hochladen"
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert."
 
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Anstupsen"
+#: ../../mod/install.php:421
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
 
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "Stupse Leute an oder mache anderes mit ihnen"
+#: ../../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 "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."
 
-#: ../../mod/poke.php:194
-msgid "Recipient"
-msgstr "Empfänger"
+#: ../../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 "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast."
 
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Was willst du mit dem Empfänger machen:"
+#: ../../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 "Nachdem du alles ausgefüllt hast, erhältst du einen Text, den du in eine Datei namens .htconfig.php in deinem Friendica-Wurzelverzeichnis kopieren musst."
 
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr "Diesen Beitrag privat machen"
+#: ../../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 "Alternativ kannst du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest du in der Datei INSTALL.txt."
 
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s folgt %2$s %3$s"
+#: ../../mod/install.php:444
+msgid ".htconfig.php is writable"
+msgstr "Schreibrechte auf .htconfig.php"
 
-#: ../../mod/uexport.php:77
-msgid "Export account"
-msgstr "Account exportieren"
+#: ../../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 "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."
 
-#: ../../mod/uexport.php:77
+#: ../../mod/install.php:455
 msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
-msgstr "Exportiere deine Accountinformationen und Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."
+"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 "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."
 
-#: ../../mod/uexport.php:78
-msgid "Export all"
-msgstr "Alles exportieren"
+#: ../../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 "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."
 
-#: ../../mod/uexport.php:78
+#: ../../mod/install.php:457
 msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
-msgstr "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Fotos werden nicht exportiert)."
+"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 "Hinweis: aus Sicherheitsgründen solltest du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr "Gemeinsame Freunde"
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 ist schreibbar"
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
-msgstr "Keine gemeinsamen Kontakte."
+#: ../../mod/install.php:472
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."
 
-#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "Bildgröße überschreitet das Limit von %d"
+#: ../../mod/install.php:474
+msgid "Url rewrite is working"
+msgstr "URL rewrite funktioniert"
 
-#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
-#: ../../mod/wall_upload.php:151 ../../mod/item.php:455
-#: ../../include/message.php:144
-msgid "Wall Photos"
-msgstr "Pinnwand-Bilder"
+#: ../../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 "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis deiner Friendica-Installation zu erzeugen."
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
+#: ../../mod/install.php:508
+msgid "Errors encountered creating database tables."
+msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."
 
-#: ../../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 "Verkleinern der Bildgröße von [%s] scheiterte."
+#: ../../mod/install.php:519
+msgid "<h1>What next</h1>"
+msgstr "<h1>Wie geht es weiter?</h1>"
 
-#: ../../mod/profile_photo.php:118
+#: ../../mod/install.php:520
 msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."
 
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Bild konnte nicht verarbeitet werden"
+#: ../../mod/group.php:29
+msgid "Group created."
+msgstr "Gruppe erstellt."
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Datei hochladen:"
+#: ../../mod/group.php:35
+msgid "Could not create group."
+msgstr "Konnte die Gruppe nicht erstellen."
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "Profil auswählen:"
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
+msgstr "Gruppe nicht gefunden."
 
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
-msgstr "Hochladen"
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "Gruppenname geändert."
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "diesen Schritt überspringen"
+#: ../../mod/group.php:87
+msgid "Save Group"
+msgstr "Gruppe speichern"
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "wähle ein Foto aus deinen Fotoalben"
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Eine Gruppe von Kontakten/Freunden anlegen."
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "Bild zurechtschneiden"
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "Gruppenname:"
 
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
+#: ../../mod/group.php:113
+msgid "Group removed."
+msgstr "Gruppe entfernt."
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Bearbeitung abgeschlossen"
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Konnte die Gruppe nicht entfernen."
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "Bild erfolgreich hochgeladen."
+#: ../../mod/group.php:179
+msgid "Group Editor"
+msgstr "Gruppeneditor"
 
-#: ../../mod/apps.php:11
-msgid "Applications"
-msgstr "Anwendungen"
+#: ../../mod/group.php:192
+msgid "Members"
+msgstr "Mitglieder"
 
-#: ../../mod/apps.php:14
-msgid "No installed applications."
-msgstr "Keine Applikationen installiert."
+#: ../../mod/content.php:119 ../../mod/network.php:514
+msgid "No such group"
+msgstr "Es gibt keine solche Gruppe"
 
-#: ../../mod/navigation.php:20 ../../include/nav.php:34
-msgid "Nothing new here"
-msgstr "Keine Neuigkeiten"
+#: ../../mod/content.php:130 ../../mod/network.php:531
+msgid "Group is empty"
+msgstr "Gruppe ist leer"
 
-#: ../../mod/navigation.php:24 ../../include/nav.php:38
-msgid "Clear notifications"
-msgstr "Bereinige Benachrichtigungen"
+#: ../../mod/content.php:134 ../../mod/network.php:538
+msgid "Group: "
+msgstr "Gruppe: "
+
+#: ../../mod/content.php:496 ../../include/conversation.php:688
+msgid "View in context"
+msgstr "Im Zusammenhang betrachten"
+
+#: ../../mod/regmod.php:63
+msgid "Account approved."
+msgstr "Konto freigegeben."
+
+#: ../../mod/regmod.php:100
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registrierung für %s wurde zurückgezogen"
+
+#: ../../mod/regmod.php:112
+msgid "Please login."
+msgstr "Bitte melde dich an."
 
 #: ../../mod/match.php:12
 msgid "Profile Match"
@@ -5135,1452 +5070,1682 @@ msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schl
 msgid "is interested in:"
 msgstr "ist interessiert an:"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Tag entfernt"
+#: ../../mod/item.php:110
+msgid "Unable to locate original post."
+msgstr "Konnte den Originalbeitrag nicht finden."
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Gegenstands-Tag entfernen"
+#: ../../mod/item.php:319
+msgid "Empty post discarded."
+msgstr "Leerer Beitrag wurde verworfen."
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Wähle ein Tag zum Entfernen aus: "
+#: ../../mod/item.php:891
+msgid "System error. Post not saved."
+msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
+
+#: ../../mod/item.php:917
+#, 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:919
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Du kannst sie online unter %s besuchen"
+
+#: ../../mod/item.php:920
+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:924
+#, php-format
+msgid "%s posted an update."
+msgstr "%s hat ein Update veröffentlicht."
+
+#: ../../mod/mood.php:62 ../../include/conversation.php:227
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s ist momentan %2$s"
+
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "Stimmung"
+
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden"
+
+#: ../../mod/network.php:136
+msgid "Search Results For:"
+msgstr "Suchergebnisse für:"
+
+#: ../../mod/network.php:189 ../../include/group.php:275
+msgid "add"
+msgstr "hinzufügen"
+
+#: ../../mod/network.php:350
+msgid "Commented Order"
+msgstr "Neueste Kommentare"
+
+#: ../../mod/network.php:353
+msgid "Sort by Comment Date"
+msgstr "Nach Kommentardatum sortieren"
+
+#: ../../mod/network.php:356
+msgid "Posted Order"
+msgstr "Neueste Beiträge"
+
+#: ../../mod/network.php:359
+msgid "Sort by Post Date"
+msgstr "Nach Beitragsdatum sortieren"
+
+#: ../../mod/network.php:368
+msgid "Posts that mention or involve you"
+msgstr "Beiträge, in denen es um dich geht"
+
+#: ../../mod/network.php:374
+msgid "New"
+msgstr "Neue"
+
+#: ../../mod/network.php:377
+msgid "Activity Stream - by date"
+msgstr "Aktivitäten-Stream - nach Datum"
+
+#: ../../mod/network.php:383
+msgid "Shared Links"
+msgstr "Geteilte Links"
+
+#: ../../mod/network.php:386
+msgid "Interesting Links"
+msgstr "Interessante Links"
+
+#: ../../mod/network.php:392
+msgid "Starred"
+msgstr "Markierte"
+
+#: ../../mod/network.php:395
+msgid "Favourite Posts"
+msgstr "Favorisierte Beiträge"
+
+#: ../../mod/network.php:457
+#, 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] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk."
+msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken."
+
+#: ../../mod/network.php:460
+msgid "Private messages to this group are at risk of public disclosure."
+msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."
+
+#: ../../mod/network.php:548
+msgid "Contact: "
+msgstr "Kontakt: "
+
+#: ../../mod/network.php:550
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."
+
+#: ../../mod/network.php:555
+msgid "Invalid contact."
+msgstr "Ungültiger Kontakt."
+
+#: ../../mod/crepair.php:104
+msgid "Contact settings applied."
+msgstr "Einstellungen zum Kontakt angewandt."
+
+#: ../../mod/crepair.php:106
+msgid "Contact update failed."
+msgstr "Konnte den Kontakt nicht aktualisieren."
+
+#: ../../mod/crepair.php:137
+msgid "Repair Contact Settings"
+msgstr "Kontakteinstellungen reparieren"
+
+#: ../../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: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:146
+msgid "Return to contact editor"
+msgstr "Zurück zum Kontakteditor"
+
+#: ../../mod/crepair.php:151
+msgid "Account Nickname"
+msgstr "Konto-Spitzname"
+
+#: ../../mod/crepair.php:152
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname - überschreibt Name/Spitzname"
+
+#: ../../mod/crepair.php:153
+msgid "Account URL"
+msgstr "Konto-URL"
+
+#: ../../mod/crepair.php:154
+msgid "Friend Request URL"
+msgstr "URL für Freundschaftsanfragen"
+
+#: ../../mod/crepair.php:155
+msgid "Friend Confirm URL"
+msgstr "URL für Bestätigungen von Freundschaftsanfragen"
+
+#: ../../mod/crepair.php:156
+msgid "Notification Endpoint URL"
+msgstr "URL-Endpunkt für Benachrichtigungen"
+
+#: ../../mod/crepair.php:157
+msgid "Poll/Feed URL"
+msgstr "Pull/Feed-URL"
+
+#: ../../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."
+
+#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
+#: ../../include/nav.php:145
+msgid "Your posts and conversations"
+msgstr "Deine Beiträge und Unterhaltungen"
+
+#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
+msgid "Your profile page"
+msgstr "Deine Profilseite"
+
+#: ../../view/theme/diabook/theme.php:125
+msgid "Your contacts"
+msgstr "Deine Kontakte"
+
+#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
+msgid "Your photos"
+msgstr "Deine Fotos"
+
+#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79
+msgid "Your events"
+msgstr "Deine Ereignisse"
+
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
+msgid "Personal notes"
+msgstr "Persönliche Notizen"
+
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
+msgid "Your personal photos"
+msgstr "Deine privaten Fotos"
+
+#: ../../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 "Foren"
+
+#: ../../view/theme/diabook/theme.php:391
+#: ../../view/theme/diabook/theme.php:626
+#: ../../view/theme/diabook/config.php:160
+msgid "Community Profiles"
+msgstr "Community-Profile"
+
+#: ../../view/theme/diabook/theme.php:412
+#: ../../view/theme/diabook/theme.php:630
+#: ../../view/theme/diabook/config.php:164
+msgid "Last users"
+msgstr "Letzte Nutzer"
+
+#: ../../view/theme/diabook/theme.php:441
+#: ../../view/theme/diabook/theme.php:632
+#: ../../view/theme/diabook/config.php:166
+msgid "Last likes"
+msgstr "Zuletzt gemocht"
+
+#: ../../view/theme/diabook/theme.php:463 ../../include/text.php:1953
+#: ../../include/conversation.php:118 ../../include/conversation.php:246
+msgid "event"
+msgstr "Veranstaltung"
+
+#: ../../view/theme/diabook/theme.php:486
+#: ../../view/theme/diabook/theme.php:631
+#: ../../view/theme/diabook/config.php:165
+msgid "Last photos"
+msgstr "Letzte Fotos"
+
+#: ../../view/theme/diabook/theme.php:523
+#: ../../view/theme/diabook/theme.php:629
+#: ../../view/theme/diabook/config.php:163
+msgid "Find Friends"
+msgstr "Freunde finden"
+
+#: ../../view/theme/diabook/theme.php:524
+msgid "Local Directory"
+msgstr "Lokales Verzeichnis"
+
+#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35
+msgid "Similar Interests"
+msgstr "Ähnliche Interessen"
+
+#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37
+msgid "Invite Friends"
+msgstr "Freunde einladen"
+
+#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/theme.php:625
+#: ../../view/theme/diabook/config.php:159
+msgid "Earth Layers"
+msgstr "Earth Layers"
+
+#: ../../view/theme/diabook/theme.php:584
+msgid "Set zoomfactor for Earth Layers"
+msgstr "Zoomfaktor der Earth Layer"
+
+#: ../../view/theme/diabook/theme.php:585
+#: ../../view/theme/diabook/config.php:156
+msgid "Set longitude (X) for Earth Layers"
+msgstr "Longitude (X) der Earth Layer"
+
+#: ../../view/theme/diabook/theme.php:586
+#: ../../view/theme/diabook/config.php:157
+msgid "Set latitude (Y) for Earth Layers"
+msgstr "Latitude (Y) der Earth Layer"
+
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:627
+#: ../../view/theme/diabook/config.php:161
+msgid "Help or @NewHere ?"
+msgstr "Hilfe oder @NewHere"
+
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:628
+#: ../../view/theme/diabook/config.php:162
+msgid "Connect Services"
+msgstr "Verbinde Dienste"
+
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328
+msgid "don't show"
+msgstr "nicht zeigen"
+
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327
+msgid "show"
+msgstr "zeigen"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133
-msgid "Remove"
-msgstr "Entfernen"
+#: ../../view/theme/diabook/theme.php:622
+msgid "Show/hide boxes at right-hand column:"
+msgstr "Rahmen auf der rechten Seite anzeigen/verbergen"
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
-msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
+#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:49
+#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
+#: ../../view/theme/cleanzero/config.php:82
+msgid "Theme settings"
+msgstr "Themeneinstellungen"
 
-#: ../../mod/events.php:291
-msgid "l, F j"
-msgstr "l, F j"
+#: ../../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 "Schriftgröße für Beiträge und Kommentare festlegen"
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "Veranstaltung bearbeiten"
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/dispy/config.php:74
+msgid "Set line-height for posts and comments"
+msgstr "Liniengröße für Beiträge und Kommantare festlegen"
 
-#: ../../mod/events.php:335 ../../include/text.php:1620
-#: ../../include/text.php:1631
-msgid "link to source"
-msgstr "Link zum Originalbeitrag"
+#: ../../view/theme/diabook/config.php:153
+msgid "Set resolution for middle column"
+msgstr "Auflösung für die Mittelspalte setzen"
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "Neue Veranstaltung erstellen"
+#: ../../view/theme/diabook/config.php:154
+msgid "Set color scheme"
+msgstr "Wähle Farbschema"
 
-#: ../../mod/events.php:372
-msgid "Previous"
-msgstr "Vorherige"
+#: ../../view/theme/diabook/config.php:155
+msgid "Set zoomfactor for Earth Layer"
+msgstr "Zoomfaktor der Earth Layer"
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "Stunde:Minute"
+#: ../../view/theme/vier/config.php:50
+msgid "Set style"
+msgstr "Stiel auswählen"
 
-#: ../../mod/events.php:456
-msgid "Event details"
-msgstr "Veranstaltungsdetails"
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Farbschema wählen"
 
-#: ../../mod/events.php:457
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt."
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Ausrichtung"
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
-msgstr "Veranstaltungsbeginn:"
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Links"
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "Benötigt"
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Mitte"
 
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
-msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
+#: ../../view/theme/quattro/config.php:68
+#: ../../view/theme/cleanzero/config.php:86
+msgid "Color scheme"
+msgstr "Farbschema"
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "Veranstaltungsende:"
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "Schriftgröße in Beiträgen"
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "An Zeitzone des Betrachters anpassen"
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "Schriftgröße in Eingabefeldern"
 
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "Beschreibung"
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
+msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"
 
-#: ../../mod/events.php:473
-msgid "Title:"
-msgstr "Titel:"
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Theme Breite festlegen"
 
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "Veranstaltung teilen"
+#: ../../boot.php:692
+msgid "Delete this item?"
+msgstr "Diesen Beitrag löschen?"
 
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
+#: ../../boot.php:695
+msgid "show fewer"
+msgstr "weniger anzeigen"
 
-#: ../../mod/delegate.php:124 ../../include/nav.php:167
-msgid "Delegate Page Management"
-msgstr "Delegiere das Management für die Seite"
+#: ../../boot.php:1023
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
 
-#: ../../mod/delegate.php:126
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!"
+#: ../../boot.php:1025
+#, php-format
+msgid "Update Error at %s"
+msgstr "Updatefehler bei %s"
 
-#: ../../mod/delegate.php:127
-msgid "Existing Page Managers"
-msgstr "Vorhandene Seitenmanager"
+#: ../../boot.php:1135
+msgid "Create a New Account"
+msgstr "Neues Konto erstellen"
 
-#: ../../mod/delegate.php:129
-msgid "Existing Page Delegates"
-msgstr "Vorhandene Bevollmächtigte für die Seite"
+#: ../../boot.php:1160 ../../include/nav.php:73
+msgid "Logout"
+msgstr "Abmelden"
 
-#: ../../mod/delegate.php:131
-msgid "Potential Delegates"
-msgstr "Potentielle Bevollmächtigte"
+#: ../../boot.php:1161 ../../include/nav.php:91
+msgid "Login"
+msgstr "Anmeldung"
 
-#: ../../mod/delegate.php:134
-msgid "Add"
-msgstr "Hinzufügen"
+#: ../../boot.php:1163
+msgid "Nickname or Email address: "
+msgstr "Spitzname oder E-Mail-Adresse: "
 
-#: ../../mod/delegate.php:135
-msgid "No entries."
-msgstr "Keine Einträge."
+#: ../../boot.php:1164
+msgid "Password: "
+msgstr "Passwort: "
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
+#: ../../boot.php:1165
+msgid "Remember me"
+msgstr "Anmeldedaten merken"
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "Dateien"
+#: ../../boot.php:1168
+msgid "Or login using OpenID: "
+msgstr "Oder melde dich mit deiner OpenID an: "
 
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
-msgstr "System zur Wartung abgeschaltet"
+#: ../../boot.php:1174
+msgid "Forgot your password?"
+msgstr "Passwort vergessen?"
 
-#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
-msgid "Remove My Account"
-msgstr "Konto löschen"
+#: ../../boot.php:1177
+msgid "Website Terms of Service"
+msgstr "Website Nutzungsbedingungen"
 
-#: ../../mod/removeme.php:46
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."
+#: ../../boot.php:1178
+msgid "terms of service"
+msgstr "Nutzungsbedingungen"
 
-#: ../../mod/removeme.php:47
-msgid "Please enter your password for verification:"
-msgstr "Bitte gib dein Passwort zur Verifikation ein:"
+#: ../../boot.php:1180
+msgid "Website Privacy Policy"
+msgstr "Website Datenschutzerklärung"
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Kontaktvorschlag gesendet."
+#: ../../boot.php:1181
+msgid "privacy policy"
+msgstr "Datenschutzerklärung"
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Kontakte vorschlagen"
+#: ../../boot.php:1314
+msgid "Requested account is not available."
+msgstr "Das angefragte Profil ist nicht vorhanden."
 
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Schlage %s einen Kontakt vor"
+#: ../../boot.php:1393 ../../boot.php:1497
+msgid "Edit profile"
+msgstr "Profil bearbeiten"
 
-#: ../../mod/item.php:110
-msgid "Unable to locate original post."
-msgstr "Konnte den Originalbeitrag nicht finden."
+#: ../../boot.php:1459
+msgid "Message"
+msgstr "Nachricht"
 
-#: ../../mod/item.php:319
-msgid "Empty post discarded."
-msgstr "Leerer Beitrag wurde verworfen."
+#: ../../boot.php:1467 ../../include/nav.php:171
+msgid "Profiles"
+msgstr "Profile"
 
-#: ../../mod/item.php:891
-msgid "System error. Post not saved."
-msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
+#: ../../boot.php:1467
+msgid "Manage/edit profiles"
+msgstr "Profile verwalten/editieren"
 
-#: ../../mod/item.php:917
-#, 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."
+#: ../../boot.php:1596 ../../boot.php:1682
+msgid "g A l F d"
+msgstr "l, d. F G \\U\\h\\r"
 
-#: ../../mod/item.php:919
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Du kannst sie online unter %s besuchen"
+#: ../../boot.php:1597 ../../boot.php:1683
+msgid "F d"
+msgstr "d. F"
 
-#: ../../mod/item.php:920
-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."
+#: ../../boot.php:1642 ../../boot.php:1723
+msgid "[today]"
+msgstr "[heute]"
 
-#: ../../mod/item.php:924
-#, php-format
-msgid "%s posted an update."
-msgstr "%s hat ein Update veröffentlicht."
+#: ../../boot.php:1654
+msgid "Birthday Reminders"
+msgstr "Geburtstagserinnerungen"
 
-#: ../../mod/ping.php:238
-msgid "{0} wants to be your friend"
-msgstr "{0} möchte mit dir in Kontakt treten"
+#: ../../boot.php:1655
+msgid "Birthdays this week:"
+msgstr "Geburtstage diese Woche:"
 
-#: ../../mod/ping.php:243
-msgid "{0} sent you a message"
-msgstr "{0} schickte dir eine Nachricht"
+#: ../../boot.php:1716
+msgid "[No description]"
+msgstr "[keine Beschreibung]"
 
-#: ../../mod/ping.php:248
-msgid "{0} requested registration"
-msgstr "{0} möchte sich registrieren"
+#: ../../boot.php:1734
+msgid "Event Reminders"
+msgstr "Veranstaltungserinnerungen"
 
-#: ../../mod/ping.php:254
-#, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} kommentierte einen Beitrag von %s"
+#: ../../boot.php:1735
+msgid "Events this week:"
+msgstr "Veranstaltungen diese Woche"
 
-#: ../../mod/ping.php:259
-#, php-format
-msgid "{0} liked %s's post"
-msgstr "{0} mag %ss Beitrag"
+#: ../../boot.php:1972 ../../include/nav.php:76
+msgid "Status"
+msgstr "Status"
 
-#: ../../mod/ping.php:264
-#, php-format
-msgid "{0} disliked %s's post"
-msgstr "{0} mag %ss Beitrag nicht"
+#: ../../boot.php:1975
+msgid "Status Messages and Posts"
+msgstr "Statusnachrichten und Beiträge"
 
-#: ../../mod/ping.php:269
-#, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} ist jetzt mit %s befreundet"
+#: ../../boot.php:1982
+msgid "Profile Details"
+msgstr "Profildetails"
 
-#: ../../mod/ping.php:274
-msgid "{0} posted"
-msgstr "{0} hat etwas veröffentlicht"
+#: ../../boot.php:1993 ../../boot.php:1996
+msgid "Videos"
+msgstr "Videos"
 
-#: ../../mod/ping.php:279
-#, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen"
+#: ../../boot.php:2006
+msgid "Events and Calendar"
+msgstr "Ereignisse und Kalender"
 
-#: ../../mod/ping.php:285
-msgid "{0} mentioned you in a post"
-msgstr "{0} hat dich in einem Beitrag erwähnt"
+#: ../../boot.php:2013
+msgid "Only You Can See This"
+msgstr "Nur du kannst das sehen"
 
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Allgemeine Features"
 
-#: ../../mod/openid.php:53
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr "Mehrere Profile"
 
-#: ../../mod/openid.php:93 ../../include/auth.php:112
-#: ../../include/auth.php:175
-msgid "Login failed."
-msgstr "Anmeldung fehlgeschlagen."
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr "Möglichkeit mehrere Profile zu erstellen"
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Invalid request identifier."
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr "Beitragserstellung Features"
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
-msgstr "Verwerfen"
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr "Web-Editor"
 
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "System"
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr "Den Web-Editor für neue Beiträge aktivieren"
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:142
-msgid "Network"
-msgstr "Netzwerk"
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr "Beitragsvorschau"
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:151
-msgid "Introductions"
-msgstr "Kontaktanfragen"
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "Zeige ignorierte Anfragen"
+#: ../../include/features.php:33
+msgid "Auto-mention Forums"
+msgstr "Foren automatisch erwähnen"
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Verberge ignorierte Anfragen"
+#: ../../include/features.php:33
+msgid ""
+"Add/remove mention when a fourm page is selected/deselected in ACL window."
+msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde."
 
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
-msgstr "Benachrichtigungstyp: "
+#: ../../include/features.php:38
+msgid "Network Sidebar Widgets"
+msgstr "Widgets für Netzwerk und Seitenleiste"
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "Kontaktvorschlag"
+#: ../../include/features.php:39
+msgid "Search by Date"
+msgstr "Archiv"
 
-#: ../../mod/notifications.php:152
-#, php-format
-msgid "suggested by %s"
-msgstr "vorgeschlagen von %s"
+#: ../../include/features.php:39
+msgid "Ability to select posts by date ranges"
+msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
-msgstr "Neue-Kontakt Nachricht senden"
+#: ../../include/features.php:40
+msgid "Group Filter"
+msgstr "Gruppen Filter"
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
-msgstr "falls anwendbar"
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
 
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
-msgstr "Behauptet dich zu kennen: "
+#: ../../include/features.php:41
+msgid "Network Filter"
+msgstr "Netzwerk Filter"
 
-#: ../../mod/notifications.php:181
-msgid "yes"
-msgstr "ja"
+#: ../../include/features.php:41
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."
 
-#: ../../mod/notifications.php:181
-msgid "no"
-msgstr "nein"
+#: ../../include/features.php:42
+msgid "Save search terms for re-use"
+msgstr "Speichere Suchanfragen für spätere Wiederholung."
 
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
-msgstr "Genehmigen als: "
+#: ../../include/features.php:47
+msgid "Network Tabs"
+msgstr "Netzwerk Reiter"
 
-#: ../../mod/notifications.php:189
-msgid "Friend"
-msgstr "Freund"
+#: ../../include/features.php:48
+msgid "Network Personal Tab"
+msgstr "Netzwerk-Reiter: Persönlich"
 
-#: ../../mod/notifications.php:190
-msgid "Sharer"
-msgstr "Teilenden"
+#: ../../include/features.php:48
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast"
 
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
-msgstr "Fan/Verehrer"
+#: ../../include/features.php:49
+msgid "Network New Tab"
+msgstr "Netzwerk-Reiter: Neue"
 
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
-msgstr "Kontakt-/Freundschaftsanfrage"
+#: ../../include/features.php:49
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"
 
-#: ../../mod/notifications.php:196
-msgid "New Follower"
-msgstr "Neuer Bewunderer"
+#: ../../include/features.php:50
+msgid "Network Shared Links Tab"
+msgstr "Netzwerk-Reiter: Geteilte Links"
 
-#: ../../mod/notifications.php:217
-msgid "No introductions."
-msgstr "Keine Kontaktanfragen."
+#: ../../include/features.php:50
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"
 
-#: ../../mod/notifications.php:220 ../../include/nav.php:152
-msgid "Notifications"
-msgstr "Benachrichtigungen"
+#: ../../include/features.php:55
+msgid "Post/Comment Tools"
+msgstr "Werkzeuge für Beiträge und Kommentare"
 
-#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
-#: ../../mod/notifications.php:469
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s mag %ss Beitrag"
+#: ../../include/features.php:56
+msgid "Multiple Deletion"
+msgstr "Mehrere Beiträge löschen"
 
-#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
-#: ../../mod/notifications.php:478
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s mag %ss Beitrag nicht"
+#: ../../include/features.php:56
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
 
-#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
-#: ../../mod/notifications.php:492
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s ist jetzt mit %s befreundet"
+#: ../../include/features.php:57
+msgid "Edit Sent Posts"
+msgstr "Gesendete Beiträge editieren"
 
-#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
-#, php-format
-msgid "%s created a new post"
-msgstr "%s hat einen neuen Beitrag erstellt"
+#: ../../include/features.php:57
+msgid "Edit and correct posts and comments after sending"
+msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren."
 
-#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
-#: ../../mod/notifications.php:501
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s hat %ss Beitrag kommentiert"
+#: ../../include/features.php:58
+msgid "Tagging"
+msgstr "Tagging"
 
-#: ../../mod/notifications.php:302
-msgid "No more network notifications."
-msgstr "Keine weiteren Netzwerk-Benachrichtigungen."
+#: ../../include/features.php:58
+msgid "Ability to tag existing posts"
+msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
 
-#: ../../mod/notifications.php:306
-msgid "Network Notifications"
-msgstr "Netzwerk Benachrichtigungen"
+#: ../../include/features.php:59
+msgid "Post Categories"
+msgstr "Beitragskategorien"
 
-#: ../../mod/notifications.php:427
-msgid "No more personal notifications."
-msgstr "Keine weiteren persönlichen Benachrichtigungen"
+#: ../../include/features.php:59
+msgid "Add categories to your posts"
+msgstr "Eigene Beiträge mit Kategorien versehen"
 
-#: ../../mod/notifications.php:431
-msgid "Personal Notifications"
-msgstr "Persönliche Benachrichtigungen"
+#: ../../include/features.php:60 ../../include/contact_widgets.php:103
+msgid "Saved Folders"
+msgstr "Gespeicherte Ordner"
 
-#: ../../mod/notifications.php:508
-msgid "No more home notifications."
-msgstr "Keine weiteren Pinnwand-Benachrichtigungen"
+#: ../../include/features.php:60
+msgid "Ability to file posts under folders"
+msgstr "Beiträge in Ordnern speichern aktivieren"
 
-#: ../../mod/notifications.php:512
-msgid "Home Notifications"
-msgstr "Pinnwand Benachrichtigungen"
+#: ../../include/features.php:61
+msgid "Dislike Posts"
+msgstr "Beiträge 'nicht mögen'"
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "Limit für Einladungen erreicht."
+#: ../../include/features.php:61
+msgid "Ability to dislike posts/comments"
+msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
 
-#: ../../mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s: Keine gültige Email Adresse."
+#: ../../include/features.php:62
+msgid "Star Posts"
+msgstr "Beiträge Markieren"
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"
+#: ../../include/features.php:62
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren"
 
-#: ../../mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "Abgemeldet."
 
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
+#: ../../include/auth.php:128 ../../include/user.php:66
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast."
 
-#: ../../mod/invite.php:93
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d Nachricht gesendet."
-msgstr[1] "%d Nachrichten gesendet."
+#: ../../include/auth.php:128 ../../include/user.php:66
+msgid "The error message was:"
+msgstr "Die Fehlermeldung lautete:"
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Du hast keine weiteren Einladungen"
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:139
+msgid "Starts:"
+msgstr "Beginnt:"
 
-#: ../../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 "Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:147
+msgid "Finishes:"
+msgstr "Endet:"
 
-#: ../../mod/invite.php:122
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica Website."
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: ../../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 "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen du beitreten kannst."
+#: ../../include/profile_advanced.php:23
+msgid "j F"
+msgstr "j F"
 
-#: ../../mod/invite.php:126
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "Geburtstag:"
 
-#: ../../mod/invite.php:132
-msgid "Send invitations"
-msgstr "Einladungen senden"
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Alter:"
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
+#: ../../include/profile_advanced.php:43
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "für %1$d %2$s"
 
-#: ../../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 "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "Tags"
 
-#: ../../mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
+msgstr "Religion:"
 
-#: ../../mod/invite.php:137
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "Hobbies/Interessen:"
 
-#: ../../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 "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "Kontaktinformationen und Soziale Netzwerke:"
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "Verwalte Identitäten und/oder Seiten"
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Musikalische Interessen:"
 
-#: ../../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 "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die deine Kontoinformationen teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast."
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Literatur/Bücher:"
 
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "Wähle eine Identität zum Verwalten aus: "
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "Fernsehen:"
 
-#: ../../mod/home.php:34
-#, php-format
-msgid "Welcome to %s"
-msgstr "Willkommen zu %s"
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Filme/Tänze/Kultur/Unterhaltung:"
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "Freunde von %s"
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Liebesleben:"
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Keine Freunde zum Anzeigen."
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "Arbeit/Beschäftigung:"
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Neuen Kontakt hinzufügen"
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "Schule/Ausbildung:"
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Adresse oder Web-Link eingeben"
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr "[kein Betreff]"
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Beispiel: bob@example.com, http://example.com/barbara"
+#: ../../include/Scrape.php:584
+msgid " on Last.fm"
+msgstr " bei Last.fm"
 
-#: ../../include/contact_widgets.php:23
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d Einladung verfügbar"
-msgstr[1] "%d Einladungen verfügbar"
+#: ../../include/text.php:296
+msgid "newer"
+msgstr "neuer"
 
-#: ../../include/contact_widgets.php:29
-msgid "Find People"
-msgstr "Leute finden"
+#: ../../include/text.php:298
+msgid "older"
+msgstr "älter"
 
-#: ../../include/contact_widgets.php:30
-msgid "Enter name or interest"
-msgstr "Name oder Interessen eingeben"
+#: ../../include/text.php:303
+msgid "prev"
+msgstr "vorige"
 
-#: ../../include/contact_widgets.php:31
-msgid "Connect/Follow"
-msgstr "Verbinden/Folgen"
+#: ../../include/text.php:305
+msgid "first"
+msgstr "erste"
 
-#: ../../include/contact_widgets.php:32
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Beispiel: Robert Morgenstein, Angeln"
+#: ../../include/text.php:337
+msgid "last"
+msgstr "letzte"
 
-#: ../../include/contact_widgets.php:36
-msgid "Random Profile"
-msgstr "Zufälliges Profil"
+#: ../../include/text.php:340
+msgid "next"
+msgstr "nächste"
 
-#: ../../include/contact_widgets.php:70
-msgid "Networks"
-msgstr "Netzwerke"
+#: ../../include/text.php:853
+msgid "No contacts"
+msgstr "Keine Kontakte"
 
-#: ../../include/contact_widgets.php:73
-msgid "All Networks"
-msgstr "Alle Netzwerke"
+#: ../../include/text.php:862
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d Kontakt"
+msgstr[1] "%d Kontakte"
 
-#: ../../include/contact_widgets.php:103 ../../include/features.php:60
-msgid "Saved Folders"
-msgstr "Gespeicherte Ordner"
+#: ../../include/text.php:1003
+msgid "poke"
+msgstr "anstupsen"
 
-#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
-msgid "Everything"
-msgstr "Alles"
+#: ../../include/text.php:1003 ../../include/conversation.php:211
+msgid "poked"
+msgstr "stupste"
 
-#: ../../include/contact_widgets.php:135
-msgid "Categories"
-msgstr "Kategorien"
+#: ../../include/text.php:1004
+msgid "ping"
+msgstr "anpingen"
 
-#: ../../include/plugin.php:454 ../../include/plugin.php:456
-msgid "Click here to upgrade."
-msgstr "Zum Upgraden hier klicken."
+#: ../../include/text.php:1004
+msgid "pinged"
+msgstr "pingte"
 
-#: ../../include/plugin.php:462
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Diese Aktion überschreitet die Obergrenze deines Abonnements."
+#: ../../include/text.php:1005
+msgid "prod"
+msgstr "knuffen"
 
-#: ../../include/plugin.php:467
-msgid "This action is not available under your subscription plan."
-msgstr "Diese Aktion ist in deinem Abonnement nicht verfügbar."
+#: ../../include/text.php:1005
+msgid "prodded"
+msgstr "knuffte"
 
-#: ../../include/api.php:263 ../../include/api.php:274
-#: ../../include/api.php:375
-msgid "User not found."
-msgstr "Nutzer nicht gefunden."
+#: ../../include/text.php:1006
+msgid "slap"
+msgstr "ohrfeigen"
 
-#: ../../include/api.php:1123
-msgid "There is no status with this id."
-msgstr "Es gibt keinen Status mit dieser ID."
+#: ../../include/text.php:1006
+msgid "slapped"
+msgstr "ohrfeigte"
 
-#: ../../include/api.php:1193
-msgid "There is no conversation with this id."
-msgstr "Es existiert keine Unterhaltung mit dieser ID."
+#: ../../include/text.php:1007
+msgid "finger"
+msgstr "befummeln"
 
-#: ../../include/network.php:886
-msgid "view full size"
-msgstr "Volle Größe anzeigen"
+#: ../../include/text.php:1007
+msgid "fingered"
+msgstr "befummelte"
 
-#: ../../include/event.php:20 ../../include/bb2diaspora.php:139
-msgid "Starts:"
-msgstr "Beginnt:"
+#: ../../include/text.php:1008
+msgid "rebuff"
+msgstr "eine Abfuhr erteilen"
 
-#: ../../include/event.php:30 ../../include/bb2diaspora.php:147
-msgid "Finishes:"
-msgstr "Endet:"
+#: ../../include/text.php:1008
+msgid "rebuffed"
+msgstr "abfuhrerteilte"
 
-#: ../../include/notifier.php:774 ../../include/delivery.php:456
-msgid "(no subject)"
-msgstr "(kein Betreff)"
+#: ../../include/text.php:1022
+msgid "happy"
+msgstr "glücklich"
 
-#: ../../include/notifier.php:784 ../../include/enotify.php:28
-#: ../../include/delivery.php:467
-msgid "noreply"
-msgstr "noreply"
+#: ../../include/text.php:1023
+msgid "sad"
+msgstr "traurig"
 
-#: ../../include/user.php:39
-msgid "An invitation is required."
-msgstr "Du benötigst eine Einladung."
+#: ../../include/text.php:1024
+msgid "mellow"
+msgstr "sanft"
 
-#: ../../include/user.php:44
-msgid "Invitation could not be verified."
-msgstr "Die Einladung konnte nicht überprüft werden."
+#: ../../include/text.php:1025
+msgid "tired"
+msgstr "müde"
 
-#: ../../include/user.php:52
-msgid "Invalid OpenID url"
-msgstr "Ungültige OpenID URL"
+#: ../../include/text.php:1026
+msgid "perky"
+msgstr "frech"
 
-#: ../../include/user.php:66 ../../include/auth.php:128
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast."
+#: ../../include/text.php:1027
+msgid "angry"
+msgstr "sauer"
 
-#: ../../include/user.php:66 ../../include/auth.php:128
-msgid "The error message was:"
-msgstr "Die Fehlermeldung lautete:"
+#: ../../include/text.php:1028
+msgid "stupified"
+msgstr "verblüfft"
 
-#: ../../include/user.php:73
-msgid "Please enter the required information."
-msgstr "Bitte trage die erforderlichen Informationen ein."
+#: ../../include/text.php:1029
+msgid "puzzled"
+msgstr "verwirrt"
 
-#: ../../include/user.php:87
-msgid "Please use a shorter name."
-msgstr "Bitte verwende einen kürzeren Namen."
+#: ../../include/text.php:1030
+msgid "interested"
+msgstr "interessiert"
 
-#: ../../include/user.php:89
-msgid "Name too short."
-msgstr "Der Name ist zu kurz."
+#: ../../include/text.php:1031
+msgid "bitter"
+msgstr "verbittert"
 
-#: ../../include/user.php:104
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein."
+#: ../../include/text.php:1032
+msgid "cheerful"
+msgstr "fröhlich"
 
-#: ../../include/user.php:109
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Die Domain deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."
+#: ../../include/text.php:1033
+msgid "alive"
+msgstr "lebendig"
 
-#: ../../include/user.php:112
-msgid "Not a valid email address."
-msgstr "Keine gültige E-Mail-Adresse."
+#: ../../include/text.php:1034
+msgid "annoyed"
+msgstr "verärgert"
 
-#: ../../include/user.php:125
-msgid "Cannot use that email."
-msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
+#: ../../include/text.php:1035
+msgid "anxious"
+msgstr "unruhig"
 
-#: ../../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/text.php:1036
+msgid "cranky"
+msgstr "schrullig"
 
-#: ../../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/text.php:1037
+msgid "disturbed"
+msgstr "verstört"
 
-#: ../../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/text.php:1038
+msgid "frustrated"
+msgstr "frustriert"
 
-#: ../../include/user.php:163
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
+#: ../../include/text.php:1039
+msgid "motivated"
+msgstr "motiviert"
 
-#: ../../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/text.php:1040
+msgid "relaxed"
+msgstr "entspannt"
 
-#: ../../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/text.php:1041
+msgid "surprised"
+msgstr "überrascht"
 
-#: ../../include/user.php:288 ../../include/user.php:292
-#: ../../include/profile_selectors.php:42
-msgid "Friends"
-msgstr "Freunde"
+#: ../../include/text.php:1209
+msgid "Monday"
+msgstr "Montag"
 
-#: ../../include/conversation.php:207
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s stupste %2$s"
+#: ../../include/text.php:1209
+msgid "Tuesday"
+msgstr "Dienstag"
 
-#: ../../include/conversation.php:211 ../../include/text.php:990
-msgid "poked"
-msgstr "stupste"
+#: ../../include/text.php:1209
+msgid "Wednesday"
+msgstr "Mittwoch"
 
-#: ../../include/conversation.php:291
-msgid "post/item"
-msgstr "Nachricht/Beitrag"
+#: ../../include/text.php:1209
+msgid "Thursday"
+msgstr "Donnerstag"
 
-#: ../../include/conversation.php:292
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
+#: ../../include/text.php:1209
+msgid "Friday"
+msgstr "Freitag"
 
-#: ../../include/conversation.php:770
-msgid "remove"
-msgstr "löschen"
+#: ../../include/text.php:1209
+msgid "Saturday"
+msgstr "Samstag"
 
-#: ../../include/conversation.php:774
-msgid "Delete Selected Items"
-msgstr "Lösche die markierten Beiträge"
+#: ../../include/text.php:1209
+msgid "Sunday"
+msgstr "Sonntag"
 
-#: ../../include/conversation.php:873
-msgid "Follow Thread"
-msgstr "Folge der Unterhaltung"
+#: ../../include/text.php:1213
+msgid "January"
+msgstr "Januar"
 
-#: ../../include/conversation.php:874 ../../include/Contact.php:229
-msgid "View Status"
-msgstr "Pinnwand anschauen"
+#: ../../include/text.php:1213
+msgid "February"
+msgstr "Februar"
 
-#: ../../include/conversation.php:875 ../../include/Contact.php:230
-msgid "View Profile"
-msgstr "Profil anschauen"
+#: ../../include/text.php:1213
+msgid "March"
+msgstr "März"
 
-#: ../../include/conversation.php:876 ../../include/Contact.php:231
-msgid "View Photos"
-msgstr "Bilder anschauen"
+#: ../../include/text.php:1213
+msgid "April"
+msgstr "April"
 
-#: ../../include/conversation.php:877 ../../include/Contact.php:232
-#: ../../include/Contact.php:255
-msgid "Network Posts"
-msgstr "Netzwerkbeiträge"
+#: ../../include/text.php:1213
+msgid "May"
+msgstr "Mai"
 
-#: ../../include/conversation.php:878 ../../include/Contact.php:233
-#: ../../include/Contact.php:255
-msgid "Edit Contact"
-msgstr "Kontakt bearbeiten"
+#: ../../include/text.php:1213
+msgid "June"
+msgstr "Juni"
 
-#: ../../include/conversation.php:879 ../../include/Contact.php:235
-#: ../../include/Contact.php:255
-msgid "Send PM"
-msgstr "Private Nachricht senden"
+#: ../../include/text.php:1213
+msgid "July"
+msgstr "Juli"
 
-#: ../../include/conversation.php:880 ../../include/Contact.php:228
-msgid "Poke"
-msgstr "Anstupsen"
+#: ../../include/text.php:1213
+msgid "August"
+msgstr "August"
 
-#: ../../include/conversation.php:942
-#, php-format
-msgid "%s likes this."
-msgstr "%s mag das."
+#: ../../include/text.php:1213
+msgid "September"
+msgstr "September"
 
-#: ../../include/conversation.php:942
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s mag das nicht."
+#: ../../include/text.php:1213
+msgid "October"
+msgstr "Oktober"
 
-#: ../../include/conversation.php:947
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d Personen</span> mögen das"
+#: ../../include/text.php:1213
+msgid "November"
+msgstr "November"
 
-#: ../../include/conversation.php:950
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d Personen</span> mögen das nicht"
+#: ../../include/text.php:1213
+msgid "December"
+msgstr "Dezember"
 
-#: ../../include/conversation.php:964
-msgid "and"
-msgstr "und"
+#: ../../include/text.php:1432
+msgid "bytes"
+msgstr "Byte"
 
-#: ../../include/conversation.php:970
-#, php-format
-msgid ", and %d other people"
-msgstr " und %d andere"
+#: ../../include/text.php:1456 ../../include/text.php:1468
+msgid "Click to open/close"
+msgstr "Zum öffnen/schließen klicken"
 
-#: ../../include/conversation.php:972
-#, php-format
-msgid "%s like this."
-msgstr "%s mögen das."
+#: ../../include/text.php:1689 ../../include/user.php:246
+msgid "default"
+msgstr "Standard"
 
-#: ../../include/conversation.php:972
-#, php-format
-msgid "%s don't like this."
-msgstr "%s mögen das nicht."
+#: ../../include/text.php:1701
+msgid "Select an alternate language"
+msgstr "Alternative Sprache auswählen"
 
-#: ../../include/conversation.php:999 ../../include/conversation.php:1017
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Für <strong>jedermann</strong> sichtbar"
+#: ../../include/text.php:1957
+msgid "activity"
+msgstr "Aktivität"
 
-#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
-msgid "Please enter a video link/URL:"
-msgstr "Bitte Link/URL zum Video einfügen:"
+#: ../../include/text.php:1960
+msgid "post"
+msgstr "Beitrag"
 
-#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
-msgid "Please enter an audio link/URL:"
-msgstr "Bitte Link/URL zum Audio einfügen:"
+#: ../../include/text.php:2128
+msgid "Item filed"
+msgstr "Beitrag abgelegt"
 
-#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
-msgid "Tag term:"
-msgstr "Tag:"
+#: ../../include/api.php:263 ../../include/api.php:274
+#: ../../include/api.php:375
+msgid "User not found."
+msgstr "Nutzer nicht gefunden."
 
-#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
-msgid "Where are you right now?"
-msgstr "Wo hältst du dich jetzt gerade auf?"
+#: ../../include/api.php:1123
+msgid "There is no status with this id."
+msgstr "Es gibt keinen Status mit dieser ID."
 
-#: ../../include/conversation.php:1006
-msgid "Delete item(s)?"
-msgstr "Einträge löschen?"
+#: ../../include/api.php:1193
+msgid "There is no conversation with this id."
+msgstr "Es existiert keine Unterhaltung mit dieser ID."
 
-#: ../../include/conversation.php:1048
-msgid "Post to Email"
-msgstr "An E-Mail senden"
+#: ../../include/dba.php:51 ../../include/dba_pdo.php:72
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
 
-#: ../../include/conversation.php:1104
-msgid "permissions"
-msgstr "Zugriffsrechte"
+#: ../../include/items.php:1981 ../../include/datetime.php:472
+#, php-format
+msgid "%s's birthday"
+msgstr "%ss Geburtstag"
 
-#: ../../include/conversation.php:1128
-msgid "Post to Groups"
-msgstr "Poste an Gruppe"
+#: ../../include/items.php:1982 ../../include/datetime.php:473
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Herzlichen Glückwunsch %s"
 
-#: ../../include/conversation.php:1129
-msgid "Post to Contacts"
-msgstr "Poste an Kontakte"
+#: ../../include/items.php:3710
+msgid "A new person is sharing with you at "
+msgstr "Eine neue Person teilt mit dir auf "
 
-#: ../../include/conversation.php:1130
-msgid "Private post"
-msgstr "Privater Beitrag"
+#: ../../include/items.php:3710
+msgid "You have a new follower at "
+msgstr "Du hast einen neuen Kontakt auf "
 
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "Abgemeldet."
+#: ../../include/items.php:4233
+msgid "Do you really want to delete this item?"
+msgstr "Möchtest du wirklich dieses Item löschen?"
 
-#: ../../include/uimport.php:94
-msgid "Error decoding account file"
-msgstr "Fehler beim Verarbeiten der Account Datei"
+#: ../../include/items.php:4460
+msgid "Archives"
+msgstr "Archiv"
 
-#: ../../include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"
+#: ../../include/delivery.php:456 ../../include/notifier.php:774
+msgid "(no subject)"
+msgstr "(kein Betreff)"
 
-#: ../../include/uimport.php:116 ../../include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr "Fehler! Konnte den Nickname nicht überprüfen."
+#: ../../include/delivery.php:467 ../../include/notifier.php:784
+#: ../../include/enotify.php:28
+msgid "noreply"
+msgstr "noreply"
 
-#: ../../include/uimport.php:120 ../../include/uimport.php:131
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
+#: ../../include/diaspora.php:703
+msgid "Sharing notification from Diaspora network"
+msgstr "Freigabe-Benachrichtigung von Diaspora"
 
-#: ../../include/uimport.php:153
-msgid "User creation error"
-msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
+#: ../../include/diaspora.php:2299
+msgid "Attachments:"
+msgstr "Anhänge:"
 
-#: ../../include/uimport.php:171
-msgid "User profile creation error"
-msgstr "Fehler beim Anlegen des Nutzerkontos"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "Connect-URL fehlt"
 
-#: ../../include/uimport.php:220
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d Kontakt nicht importiert"
-msgstr[1] "%d Kontakte nicht importiert"
+#: ../../include/follow.php:59
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."
 
-#: ../../include/uimport.php:290
-msgid "Done. You can now login with your username and password"
-msgstr "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden"
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
 
-#: ../../include/text.php:304
-msgid "newer"
-msgstr "neuer"
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
 
-#: ../../include/text.php:306
-msgid "older"
-msgstr "älter"
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "Es wurde kein Autor oder Name gefunden."
 
-#: ../../include/text.php:311
-msgid "prev"
-msgstr "vorige"
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
+msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
 
-#: ../../include/text.php:313
-msgid "first"
-msgstr "erste"
+#: ../../include/follow.php:86
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."
 
-#: ../../include/text.php:345
-msgid "last"
-msgstr "letzte"
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
+msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."
 
-#: ../../include/text.php:348
-msgid "next"
-msgstr "nächste"
+#: ../../include/follow.php:93
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."
 
-#: ../../include/text.php:840
-msgid "No contacts"
-msgstr "Keine Kontakte"
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können."
 
-#: ../../include/text.php:849
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d Kontakt"
-msgstr[1] "%d Kontakte"
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "Konnte die Kontaktinformationen nicht empfangen."
 
-#: ../../include/text.php:990
-msgid "poke"
-msgstr "anstupsen"
+#: ../../include/follow.php:259
+msgid "following"
+msgstr "folgen"
 
-#: ../../include/text.php:991
-msgid "ping"
-msgstr "anpingen"
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Willkommen "
 
-#: ../../include/text.php:991
-msgid "pinged"
-msgstr "pingte"
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Bitte lade ein Profilbild hoch."
 
-#: ../../include/text.php:992
-msgid "prod"
-msgstr "knuffen"
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Willkommen zurück "
 
-#: ../../include/text.php:992
-msgid "prodded"
-msgstr "knuffte"
+#: ../../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 "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
 
-#: ../../include/text.php:993
-msgid "slap"
-msgstr "ohrfeigen"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Männlich"
 
-#: ../../include/text.php:993
-msgid "slapped"
-msgstr "ohrfeigte"
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Weiblich"
 
-#: ../../include/text.php:994
-msgid "finger"
-msgstr "befummeln"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Momentan männlich"
 
-#: ../../include/text.php:994
-msgid "fingered"
-msgstr "befummelte"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Momentan weiblich"
 
-#: ../../include/text.php:995
-msgid "rebuff"
-msgstr "eine Abfuhr erteilen"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Hauptsächlich männlich"
 
-#: ../../include/text.php:995
-msgid "rebuffed"
-msgstr "abfuhrerteilte"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Hauptsächlich weiblich"
 
-#: ../../include/text.php:1009
-msgid "happy"
-msgstr "glücklich"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgender"
 
-#: ../../include/text.php:1010
-msgid "sad"
-msgstr "traurig"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Intersex"
 
-#: ../../include/text.php:1011
-msgid "mellow"
-msgstr "sanft"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transsexuell"
 
-#: ../../include/text.php:1012
-msgid "tired"
-msgstr "müde"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermaphrodit"
 
-#: ../../include/text.php:1013
-msgid "perky"
-msgstr "frech"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Neuter"
 
-#: ../../include/text.php:1014
-msgid "angry"
-msgstr "sauer"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Nicht spezifiziert"
 
-#: ../../include/text.php:1015
-msgid "stupified"
-msgstr "verblüfft"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Andere"
 
-#: ../../include/text.php:1016
-msgid "puzzled"
-msgstr "verwirrt"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Unentschieden"
 
-#: ../../include/text.php:1017
-msgid "interested"
-msgstr "interessiert"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Männer"
 
-#: ../../include/text.php:1018
-msgid "bitter"
-msgstr "verbittert"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Frauen"
 
-#: ../../include/text.php:1019
-msgid "cheerful"
-msgstr "fröhlich"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Schwul"
 
-#: ../../include/text.php:1020
-msgid "alive"
-msgstr "lebendig"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbisch"
 
-#: ../../include/text.php:1021
-msgid "annoyed"
-msgstr "verärgert"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Keine Vorlieben"
 
-#: ../../include/text.php:1022
-msgid "anxious"
-msgstr "unruhig"
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bisexuell"
 
-#: ../../include/text.php:1023
-msgid "cranky"
-msgstr "schrullig"
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autosexual"
 
-#: ../../include/text.php:1024
-msgid "disturbed"
-msgstr "verstört"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Abstinent"
 
-#: ../../include/text.php:1025
-msgid "frustrated"
-msgstr "frustriert"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Jungfrauen"
 
-#: ../../include/text.php:1026
-msgid "motivated"
-msgstr "motiviert"
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Deviant"
 
-#: ../../include/text.php:1027
-msgid "relaxed"
-msgstr "entspannt"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetish"
 
-#: ../../include/text.php:1028
-msgid "surprised"
-msgstr "überrascht"
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Oodles"
 
-#: ../../include/text.php:1196
-msgid "Monday"
-msgstr "Montag"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Nonsexual"
 
-#: ../../include/text.php:1196
-msgid "Tuesday"
-msgstr "Dienstag"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Single"
 
-#: ../../include/text.php:1196
-msgid "Wednesday"
-msgstr "Mittwoch"
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Einsam"
 
-#: ../../include/text.php:1196
-msgid "Thursday"
-msgstr "Donnerstag"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Verfügbar"
 
-#: ../../include/text.php:1196
-msgid "Friday"
-msgstr "Freitag"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Nicht verfügbar"
 
-#: ../../include/text.php:1196
-msgid "Saturday"
-msgstr "Samstag"
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "verknallt"
 
-#: ../../include/text.php:1196
-msgid "Sunday"
-msgstr "Sonntag"
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "verliebt"
 
-#: ../../include/text.php:1200
-msgid "January"
-msgstr "Januar"
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Dating"
 
-#: ../../include/text.php:1200
-msgid "February"
-msgstr "Februar"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Untreu"
 
-#: ../../include/text.php:1200
-msgid "March"
-msgstr "März"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Sexbesessen"
 
-#: ../../include/text.php:1200
-msgid "April"
-msgstr "April"
+#: ../../include/profile_selectors.php:42 ../../include/user.php:288
+#: ../../include/user.php:292
+msgid "Friends"
+msgstr "Freunde"
 
-#: ../../include/text.php:1200
-msgid "May"
-msgstr "Mai"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Freunde/Zuwendungen"
 
-#: ../../include/text.php:1200
-msgid "June"
-msgstr "Juni"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Casual"
 
-#: ../../include/text.php:1200
-msgid "July"
-msgstr "Juli"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Verlobt"
 
-#: ../../include/text.php:1200
-msgid "August"
-msgstr "August"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Verheiratet"
 
-#: ../../include/text.php:1200
-msgid "September"
-msgstr "September"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "imaginär verheiratet"
 
-#: ../../include/text.php:1200
-msgid "October"
-msgstr "Oktober"
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partner"
 
-#: ../../include/text.php:1200
-msgid "November"
-msgstr "November"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "zusammenlebend"
 
-#: ../../include/text.php:1200
-msgid "December"
-msgstr "Dezember"
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "wilde Ehe"
 
-#: ../../include/text.php:1419
-msgid "bytes"
-msgstr "Byte"
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Glücklich"
 
-#: ../../include/text.php:1443 ../../include/text.php:1455
-msgid "Click to open/close"
-msgstr "Zum öffnen/schließen klicken"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Nicht auf der Suche"
 
-#: ../../include/text.php:1688
-msgid "Select an alternate language"
-msgstr "Alternative Sprache auswählen"
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Swinger"
 
-#: ../../include/text.php:1944
-msgid "activity"
-msgstr "Aktivität"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Betrogen"
 
-#: ../../include/text.php:1947
-msgid "post"
-msgstr "Beitrag"
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Getrennt"
 
-#: ../../include/text.php:2115
-msgid "Item filed"
-msgstr "Beitrag abgelegt"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Unstabil"
 
-#: ../../include/enotify.php:16
-msgid "Friendica Notification"
-msgstr "Friendica-Benachrichtigung"
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Geschieden"
 
-#: ../../include/enotify.php:19
-msgid "Thank You,"
-msgstr "Danke,"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "imaginär geschieden"
 
-#: ../../include/enotify.php:21
-#, php-format
-msgid "%s Administrator"
-msgstr "der Administrator von %s"
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Verwitwet"
 
-#: ../../include/enotify.php:40
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Unsicher"
 
-#: ../../include/enotify.php:44
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "Ist kompliziert"
 
-#: ../../include/enotify.php:46
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s hat dir eine neue private Nachricht auf %2$s geschickt."
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Ist mir nicht wichtig"
 
-#: ../../include/enotify.php:47
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s schickte dir %2$s."
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Frag mich"
 
-#: ../../include/enotify.php:47
-msgid "a private message"
-msgstr "eine private Nachricht"
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
+msgstr "Fehler beim Verarbeiten der Account Datei"
 
-#: ../../include/enotify.php:48
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Bitte besuche %s, um deine privaten Nachrichten anzusehen und/oder zu beantworten."
+#: ../../include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"
 
-#: ../../include/enotify.php:91
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]"
+#: ../../include/uimport.php:116 ../../include/uimport.php:127
+msgid "Error! Cannot check nickname"
+msgstr "Fehler! Konnte den Nickname nicht überprüfen."
 
-#: ../../include/enotify.php:98
+#: ../../include/uimport.php:120 ../../include/uimport.php:131
 #, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]"
+msgid "User '%s' already exists on this server!"
+msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
 
-#: ../../include/enotify.php:106
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s kommentierte [url=%2$s]deinen %3$s[/url]"
+#: ../../include/uimport.php:153
+msgid "User creation error"
+msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
 
-#: ../../include/enotify.php:116
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s"
+#: ../../include/uimport.php:171
+msgid "User profile creation error"
+msgstr "Fehler beim Anlegen des Nutzerkontos"
 
-#: ../../include/enotify.php:117
+#: ../../include/uimport.php:220
 #, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s hat einen Beitrag kommentiert, dem du folgst."
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d Kontakt nicht importiert"
+msgstr[1] "%d Kontakte nicht importiert"
 
-#: ../../include/enotify.php:120 ../../include/enotify.php:135
-#: ../../include/enotify.php:148 ../../include/enotify.php:161
-#: ../../include/enotify.php:179 ../../include/enotify.php:192
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
+#: ../../include/uimport.php:290
+msgid "Done. You can now login with your username and password"
+msgstr "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden"
 
-#: ../../include/enotify.php:127
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica-Meldung] %s hat auf deine Pinnwand geschrieben"
+#: ../../include/plugin.php:455 ../../include/plugin.php:457
+msgid "Click here to upgrade."
+msgstr "Zum Upgraden hier klicken."
 
-#: ../../include/enotify.php:129
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s schrieb auf %2$s auf deine Pinnwand"
+#: ../../include/plugin.php:463
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Diese Aktion überschreitet die Obergrenze deines Abonnements."
 
-#: ../../include/enotify.php:131
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s hat etwas auf [url=%2$s]deiner Pinnwand[/url] gepostet"
+#: ../../include/plugin.php:468
+msgid "This action is not available under your subscription plan."
+msgstr "Diese Aktion ist in deinem Abonnement nicht verfügbar."
 
-#: ../../include/enotify.php:142
+#: ../../include/conversation.php:207
 #, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica-Meldung] %s hat dich erwähnt"
+msgid "%1$s poked %2$s"
+msgstr "%1$s stupste %2$s"
 
-#: ../../include/enotify.php:143
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s erwähnte dich auf %2$s"
+#: ../../include/conversation.php:291
+msgid "post/item"
+msgstr "Nachricht/Beitrag"
 
-#: ../../include/enotify.php:144
+#: ../../include/conversation.php:292
 #, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]erwähnte dich[/url]."
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
 
-#: ../../include/enotify.php:155
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"
+#: ../../include/conversation.php:770
+msgid "remove"
+msgstr "löschen"
 
-#: ../../include/enotify.php:156
-#, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt"
+#: ../../include/conversation.php:774
+msgid "Delete Selected Items"
+msgstr "Lösche die markierten Beiträge"
 
-#: ../../include/enotify.php:157
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]."
+#: ../../include/conversation.php:873
+msgid "Follow Thread"
+msgstr "Folge der Unterhaltung"
 
-#: ../../include/enotify.php:169
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica-Meldung] %1$s hat dich angestupst"
+#: ../../include/conversation.php:874 ../../include/Contact.php:229
+msgid "View Status"
+msgstr "Pinnwand anschauen"
 
-#: ../../include/enotify.php:170
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s hat dich auf %2$s angestupst"
+#: ../../include/conversation.php:875 ../../include/Contact.php:230
+msgid "View Profile"
+msgstr "Profil anschauen"
 
-#: ../../include/enotify.php:171
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s [url=%2$s]hat dich angestupst[/url]."
+#: ../../include/conversation.php:876 ../../include/Contact.php:231
+msgid "View Photos"
+msgstr "Bilder anschauen"
 
-#: ../../include/enotify.php:186
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica-Meldung] %s hat deinen Beitrag getaggt"
+#: ../../include/conversation.php:877 ../../include/Contact.php:232
+#: ../../include/Contact.php:255
+msgid "Network Posts"
+msgstr "Netzwerkbeiträge"
 
-#: ../../include/enotify.php:187
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s erwähnte deinen Beitrag auf %2$s"
+#: ../../include/conversation.php:878 ../../include/Contact.php:233
+#: ../../include/Contact.php:255
+msgid "Edit Contact"
+msgstr "Kontakt bearbeiten"
 
-#: ../../include/enotify.php:188
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
+#: ../../include/conversation.php:879 ../../include/Contact.php:235
+#: ../../include/Contact.php:255
+msgid "Send PM"
+msgstr "Private Nachricht senden"
 
-#: ../../include/enotify.php:199
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica-Meldung] Kontaktanfrage erhalten"
+#: ../../include/conversation.php:880 ../../include/Contact.php:228
+msgid "Poke"
+msgstr "Anstupsen"
 
-#: ../../include/enotify.php:200
+#: ../../include/conversation.php:942
 #, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten"
+msgid "%s likes this."
+msgstr "%s mag das."
 
-#: ../../include/enotify.php:201
+#: ../../include/conversation.php:942
 #, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten."
+msgid "%s doesn't like this."
+msgstr "%s mag das nicht."
 
-#: ../../include/enotify.php:204 ../../include/enotify.php:222
+#: ../../include/conversation.php:947
 #, php-format
-msgid "You may visit their profile at %s"
-msgstr "Hier kannst du das Profil betrachten: %s"
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d Personen</span> mögen das"
 
-#: ../../include/enotify.php:206
+#: ../../include/conversation.php:950
 #, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d Personen</span> mögen das nicht"
 
-#: ../../include/enotify.php:213
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten"
+#: ../../include/conversation.php:964
+msgid "and"
+msgstr "und"
 
-#: ../../include/enotify.php:214
+#: ../../include/conversation.php:970
+#, php-format
+msgid ", and %d other people"
+msgstr " und %d andere"
+
+#: ../../include/conversation.php:972
 #, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Du hast einen Freunde-Vorschlag von '%1$s' auf %2$s erhalten"
+msgid "%s like this."
+msgstr "%s mögen das."
 
-#: ../../include/enotify.php:215
+#: ../../include/conversation.php:972
 #, php-format
-msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "Du hast einen [url=%1$s]Freunde-Vorschlag[/url] %2$s von %3$s erhalten."
+msgid "%s don't like this."
+msgstr "%s mögen das nicht."
 
-#: ../../include/enotify.php:220
-msgid "Name:"
-msgstr "Name:"
+#: ../../include/conversation.php:999 ../../include/conversation.php:1017
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Für <strong>jedermann</strong> sichtbar"
 
-#: ../../include/enotify.php:221
-msgid "Photo:"
-msgstr "Foto:"
+#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
+msgid "Please enter a video link/URL:"
+msgstr "Bitte Link/URL zum Video einfügen:"
 
-#: ../../include/enotify.php:224
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
+msgid "Please enter an audio link/URL:"
+msgstr "Bitte Link/URL zum Audio einfügen:"
 
-#: ../../include/Scrape.php:584
-msgid " on Last.fm"
-msgstr " bei Last.fm"
+#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
+msgid "Tag term:"
+msgstr "Tag:"
 
-#: ../../include/group.php:25
-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 "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
+#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
+msgid "Where are you right now?"
+msgstr "Wo hältst du dich jetzt gerade auf?"
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr "Voreingestellte Gruppe für neue Kontakte"
+#: ../../include/conversation.php:1006
+msgid "Delete item(s)?"
+msgstr "Einträge löschen?"
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "Alle Kontakte"
+#: ../../include/conversation.php:1049
+msgid "Post to Email"
+msgstr "An E-Mail senden"
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "bearbeiten"
+#: ../../include/conversation.php:1054
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "Gruppe bearbeiten"
+#: ../../include/conversation.php:1109
+msgid "permissions"
+msgstr "Zugriffsrechte"
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "Neue Gruppe erstellen"
+#: ../../include/conversation.php:1133
+msgid "Post to Groups"
+msgstr "Poste an Gruppe"
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
-msgstr "Kontakte in keiner Gruppe"
+#: ../../include/conversation.php:1134
+msgid "Post to Contacts"
+msgstr "Poste an Kontakte"
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr "Connect-URL fehlt"
+#: ../../include/conversation.php:1135
+msgid "Private post"
+msgstr "Privater Beitrag"
 
-#: ../../include/follow.php:59
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Neuen Kontakt hinzufügen"
 
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Adresse oder Web-Link eingeben"
 
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Beispiel: bob@example.com, http://example.com/barbara"
 
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr "Es wurde kein Autor oder Name gefunden."
+#: ../../include/contact_widgets.php:23
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d Einladung verfügbar"
+msgstr[1] "%d Einladungen verfügbar"
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
+#: ../../include/contact_widgets.php:29
+msgid "Find People"
+msgstr "Leute finden"
 
-#: ../../include/follow.php:86
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."
+#: ../../include/contact_widgets.php:30
+msgid "Enter name or interest"
+msgstr "Name oder Interessen eingeben"
 
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."
+#: ../../include/contact_widgets.php:31
+msgid "Connect/Follow"
+msgstr "Verbinden/Folgen"
 
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."
+#: ../../include/contact_widgets.php:32
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Beispiel: Robert Morgenstein, Angeln"
 
-#: ../../include/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können."
+#: ../../include/contact_widgets.php:36
+msgid "Random Profile"
+msgstr "Zufälliges Profil"
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "Konnte die Kontaktinformationen nicht empfangen."
+#: ../../include/contact_widgets.php:70
+msgid "Networks"
+msgstr "Netzwerke"
 
-#: ../../include/follow.php:259
-msgid "following"
-msgstr "folgen"
+#: ../../include/contact_widgets.php:73
+msgid "All Networks"
+msgstr "Alle Netzwerke"
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr "[kein Betreff]"
+#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
+msgid "Everything"
+msgstr "Alles"
+
+#: ../../include/contact_widgets.php:135
+msgid "Categories"
+msgstr "Kategorien"
 
 #: ../../include/nav.php:73
 msgid "End this session"
@@ -6686,110 +6851,21 @@ msgstr "Kontoeinstellungen"
 msgid "Manage/Edit Profiles"
 msgstr "Profile Verwalten/Editieren"
 
-#: ../../include/nav.php:173
-msgid "Manage/edit friends and contacts"
-msgstr "Freunde und Kontakte verwalten/editieren"
-
-#: ../../include/nav.php:180
-msgid "Site setup and configuration"
-msgstr "Einstellungen der Seite und Konfiguration"
-
-#: ../../include/nav.php:184
-msgid "Navigation"
-msgstr "Navigation"
-
-#: ../../include/nav.php:184
-msgid "Site map"
-msgstr "Sitemap"
-
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "j F, Y"
-
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "j F"
-
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "Geburtstag:"
-
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Alter:"
-
-#: ../../include/profile_advanced.php:43
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "für %1$d %2$s"
-
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Tags"
-
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Religion:"
-
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Hobbies/Interessen:"
-
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Kontaktinformationen und Soziale Netzwerke:"
-
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Musikalische Interessen:"
-
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Literatur/Bücher:"
-
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Fernsehen:"
-
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Filme/Tänze/Kultur/Unterhaltung:"
-
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Liebesleben:"
-
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Arbeit/Beschäftigung:"
-
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "Schule/Ausbildung:"
-
-#: ../../include/bbcode.php:284 ../../include/bbcode.php:917
-#: ../../include/bbcode.php:918
-msgid "Image/photo"
-msgstr "Bild/Foto"
-
-#: ../../include/bbcode.php:354
-#, php-format
-msgid ""
-"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
-"href=\"%s\" target=\"_blank\">post</a>"
-msgstr "<span><a href=\"%s\" target=\"_blank\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"_blank\">Beitrag</a>"
+#: ../../include/nav.php:173
+msgid "Manage/edit friends and contacts"
+msgstr "Freunde und Kontakte verwalten/editieren"
 
-#: ../../include/bbcode.php:453
-msgid "<span><b>"
-msgstr "<span><b>"
+#: ../../include/nav.php:180
+msgid "Site setup and configuration"
+msgstr "Einstellungen der Seite und Konfiguration"
 
-#: ../../include/bbcode.php:881 ../../include/bbcode.php:901
-msgid "$1 wrote:"
-msgstr "$1 hat geschrieben:"
+#: ../../include/nav.php:184
+msgid "Navigation"
+msgstr "Navigation"
 
-#: ../../include/bbcode.php:932 ../../include/bbcode.php:933
-msgid "Encrypted content"
-msgstr "Verschlüsselter Inhalt"
+#: ../../include/nav.php:184
+msgid "Site map"
+msgstr "Sitemap"
 
 #: ../../include/contact_selectors.php:32
 msgid "Unknown | Not categorised"
@@ -6867,537 +6943,424 @@ msgstr "Diaspora"
 msgid "Statusnet"
 msgstr "StatusNet"
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Verschiedenes"
-
-#: ../../include/datetime.php:153 ../../include/datetime.php:285
-msgid "year"
-msgstr "Jahr"
-
-#: ../../include/datetime.php:158 ../../include/datetime.php:286
-msgid "month"
-msgstr "Monat"
-
-#: ../../include/datetime.php:163 ../../include/datetime.php:288
-msgid "day"
-msgstr "Tag"
-
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "nie"
-
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "vor weniger als einer Sekunde"
-
-#: ../../include/datetime.php:285
-msgid "years"
-msgstr "Jahre"
-
-#: ../../include/datetime.php:286
-msgid "months"
-msgstr "Monate"
-
-#: ../../include/datetime.php:287
-msgid "week"
-msgstr "Woche"
-
-#: ../../include/datetime.php:287
-msgid "weeks"
-msgstr "Wochen"
-
-#: ../../include/datetime.php:288
-msgid "days"
-msgstr "Tage"
-
-#: ../../include/datetime.php:289
-msgid "hour"
-msgstr "Stunde"
-
-#: ../../include/datetime.php:289
-msgid "hours"
-msgstr "Stunden"
-
-#: ../../include/datetime.php:290
-msgid "minute"
-msgstr "Minute"
-
-#: ../../include/datetime.php:290
-msgid "minutes"
-msgstr "Minuten"
-
-#: ../../include/datetime.php:291
-msgid "second"
-msgstr "Sekunde"
+#: ../../include/enotify.php:16
+msgid "Friendica Notification"
+msgstr "Friendica-Benachrichtigung"
 
-#: ../../include/datetime.php:291
-msgid "seconds"
-msgstr "Sekunden"
+#: ../../include/enotify.php:19
+msgid "Thank You,"
+msgstr "Danke,"
 
-#: ../../include/datetime.php:300
+#: ../../include/enotify.php:21
 #, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s her"
+msgid "%s Administrator"
+msgstr "der Administrator von %s"
 
-#: ../../include/datetime.php:472 ../../include/items.php:1964
+#: ../../include/enotify.php:40
 #, php-format
-msgid "%s's birthday"
-msgstr "%ss Geburtstag"
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: ../../include/datetime.php:473 ../../include/items.php:1965
+#: ../../include/enotify.php:44
 #, php-format
-msgid "Happy Birthday %s"
-msgstr "Herzlichen Glückwunsch %s"
-
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "Allgemeine Features"
-
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr "Mehrere Profile"
-
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr "Möglichkeit mehrere Profile zu erstellen"
-
-#: ../../include/features.php:30
-msgid "Post Composition Features"
-msgstr "Beitragserstellung Features"
-
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr "Web-Editor"
-
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
-msgstr "Den Web-Editor für neue Beiträge aktivieren"
-
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr "Beitragsvorschau"
-
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
-
-#: ../../include/features.php:33
-msgid "Auto-mention Forums"
-msgstr "Foren automatisch erwähnen"
-
-#: ../../include/features.php:33
-msgid ""
-"Add/remove mention when a fourm page is selected/deselected in ACL window."
-msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde."
-
-#: ../../include/features.php:38
-msgid "Network Sidebar Widgets"
-msgstr "Widgets für Netzwerk und Seitenleiste"
-
-#: ../../include/features.php:39
-msgid "Search by Date"
-msgstr "Archiv"
-
-#: ../../include/features.php:39
-msgid "Ability to select posts by date ranges"
-msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
-
-#: ../../include/features.php:40
-msgid "Group Filter"
-msgstr "Gruppen Filter"
-
-#: ../../include/features.php:40
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
-
-#: ../../include/features.php:41
-msgid "Network Filter"
-msgstr "Netzwerk Filter"
-
-#: ../../include/features.php:41
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."
-
-#: ../../include/features.php:42
-msgid "Save search terms for re-use"
-msgstr "Speichere Suchanfragen für spätere Wiederholung."
-
-#: ../../include/features.php:47
-msgid "Network Tabs"
-msgstr "Netzwerk Reiter"
-
-#: ../../include/features.php:48
-msgid "Network Personal Tab"
-msgstr "Netzwerk-Reiter: Persönlich"
-
-#: ../../include/features.php:48
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast"
-
-#: ../../include/features.php:49
-msgid "Network New Tab"
-msgstr "Netzwerk-Reiter: Neue"
-
-#: ../../include/features.php:49
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"
-
-#: ../../include/features.php:50
-msgid "Network Shared Links Tab"
-msgstr "Netzwerk-Reiter: Geteilte Links"
-
-#: ../../include/features.php:50
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"
-
-#: ../../include/features.php:55
-msgid "Post/Comment Tools"
-msgstr "Werkzeuge für Beiträge und Kommentare"
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s"
 
-#: ../../include/features.php:56
-msgid "Multiple Deletion"
-msgstr "Mehrere Beiträge löschen"
+#: ../../include/enotify.php:46
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s hat dir eine neue private Nachricht auf %2$s geschickt."
 
-#: ../../include/features.php:56
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
+#: ../../include/enotify.php:47
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s schickte dir %2$s."
 
-#: ../../include/features.php:57
-msgid "Edit Sent Posts"
-msgstr "Gesendete Beiträge editieren"
+#: ../../include/enotify.php:47
+msgid "a private message"
+msgstr "eine private Nachricht"
 
-#: ../../include/features.php:57
-msgid "Edit and correct posts and comments after sending"
-msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren."
+#: ../../include/enotify.php:48
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Bitte besuche %s, um deine privaten Nachrichten anzusehen und/oder zu beantworten."
 
-#: ../../include/features.php:58
-msgid "Tagging"
-msgstr "Tagging"
+#: ../../include/enotify.php:91
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]"
 
-#: ../../include/features.php:58
-msgid "Ability to tag existing posts"
-msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
+#: ../../include/enotify.php:98
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]"
 
-#: ../../include/features.php:59
-msgid "Post Categories"
-msgstr "Beitragskategorien"
+#: ../../include/enotify.php:106
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s kommentierte [url=%2$s]deinen %3$s[/url]"
 
-#: ../../include/features.php:59
-msgid "Add categories to your posts"
-msgstr "Eigene Beiträge mit Kategorien versehen"
+#: ../../include/enotify.php:116
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s"
 
-#: ../../include/features.php:60
-msgid "Ability to file posts under folders"
-msgstr "Beiträge in Ordnern speichern aktivieren"
+#: ../../include/enotify.php:117
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s hat einen Beitrag kommentiert, dem du folgst."
 
-#: ../../include/features.php:61
-msgid "Dislike Posts"
-msgstr "Beiträge 'nicht mögen'"
+#: ../../include/enotify.php:120 ../../include/enotify.php:135
+#: ../../include/enotify.php:148 ../../include/enotify.php:161
+#: ../../include/enotify.php:179 ../../include/enotify.php:192
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
 
-#: ../../include/features.php:61
-msgid "Ability to dislike posts/comments"
-msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
+#: ../../include/enotify.php:127
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica-Meldung] %s hat auf deine Pinnwand geschrieben"
 
-#: ../../include/features.php:62
-msgid "Star Posts"
-msgstr "Beiträge Markieren"
+#: ../../include/enotify.php:129
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s schrieb auf %2$s auf deine Pinnwand"
 
-#: ../../include/features.php:62
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren"
+#: ../../include/enotify.php:131
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s hat etwas auf [url=%2$s]deiner Pinnwand[/url] gepostet"
 
-#: ../../include/diaspora.php:703
-msgid "Sharing notification from Diaspora network"
-msgstr "Freigabe-Benachrichtigung von Diaspora"
+#: ../../include/enotify.php:142
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica-Meldung] %s hat dich erwähnt"
 
-#: ../../include/diaspora.php:2299
-msgid "Attachments:"
-msgstr "Anhänge:"
+#: ../../include/enotify.php:143
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s erwähnte dich auf %2$s"
 
-#: ../../include/acl_selectors.php:326
-msgid "Visible to everybody"
-msgstr "Für jeden sichtbar"
+#: ../../include/enotify.php:144
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]erwähnte dich[/url]."
 
-#: ../../include/items.php:3693
-msgid "A new person is sharing with you at "
-msgstr "Eine neue Person teilt mit dir auf "
+#: ../../include/enotify.php:155
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"
 
-#: ../../include/items.php:3693
-msgid "You have a new follower at "
-msgstr "Du hast einen neuen Kontakt auf "
+#: ../../include/enotify.php:156
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt"
 
-#: ../../include/items.php:4216
-msgid "Do you really want to delete this item?"
-msgstr "Möchtest du wirklich dieses Item löschen?"
+#: ../../include/enotify.php:157
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]."
 
-#: ../../include/items.php:4443
-msgid "Archives"
-msgstr "Archiv"
+#: ../../include/enotify.php:169
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica-Meldung] %1$s hat dich angestupst"
 
-#: ../../include/oembed.php:174
-msgid "Embedded content"
-msgstr "Eingebetteter Inhalt"
+#: ../../include/enotify.php:170
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s hat dich auf %2$s angestupst"
 
-#: ../../include/oembed.php:183
-msgid "Embedding disabled"
-msgstr "Einbettungen deaktiviert"
+#: ../../include/enotify.php:171
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s [url=%2$s]hat dich angestupst[/url]."
 
-#: ../../include/security.php:22
-msgid "Welcome "
-msgstr "Willkommen "
+#: ../../include/enotify.php:186
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica-Meldung] %s hat deinen Beitrag getaggt"
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Bitte lade ein Profilbild hoch."
+#: ../../include/enotify.php:187
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s erwähnte deinen Beitrag auf %2$s"
 
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "Willkommen zurück "
+#: ../../include/enotify.php:188
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
 
-#: ../../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 "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
+#: ../../include/enotify.php:199
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica-Meldung] Kontaktanfrage erhalten"
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Männlich"
+#: ../../include/enotify.php:200
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten"
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Weiblich"
+#: ../../include/enotify.php:201
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten."
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Momentan männlich"
+#: ../../include/enotify.php:204 ../../include/enotify.php:222
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Hier kannst du das Profil betrachten: %s"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Momentan weiblich"
+#: ../../include/enotify.php:206
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Hauptsächlich männlich"
+#: ../../include/enotify.php:213
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Hauptsächlich weiblich"
+#: ../../include/enotify.php:214
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Du hast einen Freunde-Vorschlag von '%1$s' auf %2$s erhalten"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgender"
+#: ../../include/enotify.php:215
+#, php-format
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "Du hast einen [url=%1$s]Freunde-Vorschlag[/url] %2$s von %3$s erhalten."
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Intersex"
+#: ../../include/enotify.php:220
+msgid "Name:"
+msgstr "Name:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transsexuell"
+#: ../../include/enotify.php:221
+msgid "Photo:"
+msgstr "Foto:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermaphrodit"
+#: ../../include/enotify.php:224
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Neuter"
+#: ../../include/user.php:39
+msgid "An invitation is required."
+msgstr "Du benötigst eine Einladung."
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Nicht spezifiziert"
+#: ../../include/user.php:44
+msgid "Invitation could not be verified."
+msgstr "Die Einladung konnte nicht überprüft werden."
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Andere"
+#: ../../include/user.php:52
+msgid "Invalid OpenID url"
+msgstr "Ungültige OpenID URL"
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Unentschieden"
+#: ../../include/user.php:73
+msgid "Please enter the required information."
+msgstr "Bitte trage die erforderlichen Informationen ein."
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Männer"
+#: ../../include/user.php:87
+msgid "Please use a shorter name."
+msgstr "Bitte verwende einen kürzeren Namen."
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Frauen"
+#: ../../include/user.php:89
+msgid "Name too short."
+msgstr "Der Name ist zu kurz."
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Schwul"
+#: ../../include/user.php:104
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein."
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbisch"
+#: ../../include/user.php:109
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Die Domain deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Keine Vorlieben"
+#: ../../include/user.php:112
+msgid "Not a valid email address."
+msgstr "Keine gültige E-Mail-Adresse."
+
+#: ../../include/user.php:125
+msgid "Cannot use that email."
+msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bisexuell"
+#: ../../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/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autosexual"
+#: ../../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/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Abstinent"
+#: ../../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/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Jungfrauen"
+#: ../../include/user.php:163
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Deviant"
+#: ../../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/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetish"
+#: ../../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/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Oodles"
+#: ../../include/acl_selectors.php:326
+msgid "Visible to everybody"
+msgstr "Für jeden sichtbar"
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Nonsexual"
+#: ../../include/bbcode.php:287 ../../include/bbcode.php:920
+#: ../../include/bbcode.php:921
+msgid "Image/photo"
+msgstr "Bild/Foto"
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Single"
+#: ../../include/bbcode.php:357
+#, php-format
+msgid ""
+"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"_blank\">post</a>"
+msgstr "<span><a href=\"%s\" target=\"_blank\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"_blank\">Beitrag</a>"
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Einsam"
+#: ../../include/bbcode.php:458
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Verfügbar"
+#: ../../include/bbcode.php:884 ../../include/bbcode.php:904
+msgid "$1 wrote:"
+msgstr "$1 hat geschrieben:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Nicht verfügbar"
+#: ../../include/bbcode.php:935 ../../include/bbcode.php:936
+msgid "Encrypted content"
+msgstr "Verschlüsselter Inhalt"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "verknallt"
+#: ../../include/oembed.php:174
+msgid "Embedded content"
+msgstr "Eingebetteter Inhalt"
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "verliebt"
+#: ../../include/oembed.php:183
+msgid "Embedding disabled"
+msgstr "Einbettungen deaktiviert"
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Dating"
+#: ../../include/group.php:25
+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 "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Untreu"
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr "Voreingestellte Gruppe für neue Kontakte"
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Sexbesessen"
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Alle Kontakte"
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Freunde/Zuwendungen"
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "bearbeiten"
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Casual"
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Gruppe bearbeiten"
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Verlobt"
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Neue Gruppe erstellen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Verheiratet"
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
+msgstr "Kontakte in keiner Gruppe"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "imaginär verheiratet"
+#: ../../include/Contact.php:115
+msgid "stopped following"
+msgstr "wird nicht mehr gefolgt"
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partner"
+#: ../../include/Contact.php:234
+msgid "Drop Contact"
+msgstr "Kontakt löschen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "zusammenlebend"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Verschiedenes"
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr "wilde Ehe"
+#: ../../include/datetime.php:153 ../../include/datetime.php:285
+msgid "year"
+msgstr "Jahr"
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Glücklich"
+#: ../../include/datetime.php:158 ../../include/datetime.php:286
+msgid "month"
+msgstr "Monat"
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Nicht auf der Suche"
+#: ../../include/datetime.php:163 ../../include/datetime.php:288
+msgid "day"
+msgstr "Tag"
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "nie"
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Betrogen"
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "vor weniger als einer Sekunde"
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Getrennt"
+#: ../../include/datetime.php:285
+msgid "years"
+msgstr "Jahre"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Unstabil"
+#: ../../include/datetime.php:286
+msgid "months"
+msgstr "Monate"
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Geschieden"
+#: ../../include/datetime.php:287
+msgid "week"
+msgstr "Woche"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "imaginär geschieden"
+#: ../../include/datetime.php:287
+msgid "weeks"
+msgstr "Wochen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Verwitwet"
+#: ../../include/datetime.php:288
+msgid "days"
+msgstr "Tage"
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Unsicher"
+#: ../../include/datetime.php:289
+msgid "hour"
+msgstr "Stunde"
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "Ist kompliziert"
+#: ../../include/datetime.php:289
+msgid "hours"
+msgstr "Stunden"
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Ist mir nicht wichtig"
+#: ../../include/datetime.php:290
+msgid "minute"
+msgstr "Minute"
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Frag mich"
+#: ../../include/datetime.php:290
+msgid "minutes"
+msgstr "Minuten"
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr "wird nicht mehr gefolgt"
+#: ../../include/datetime.php:291
+msgid "second"
+msgstr "Sekunde"
 
-#: ../../include/Contact.php:234
-msgid "Drop Contact"
-msgstr "Kontakt löschen"
+#: ../../include/datetime.php:291
+msgid "seconds"
+msgstr "Sekunden"
 
-#: ../../include/dba.php:45
+#: ../../include/datetime.php:300
 #, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s her"
+
+#: ../../include/network.php:886
+msgid "view full size"
+msgstr "Volle Größe anzeigen"
index 506e381317f0c31801858e15bb74fc5316590bf2..25d012d49202839bbec670de8e817b5a61e7ef60 100644 (file)
@@ -58,350 +58,136 @@ $a->strings["Page not found."] = "Seite nicht gefunden.";
 $a->strings["Permission denied"] = "Zugriff verweigert";
 $a->strings["Permission denied."] = "Zugriff verweigert.";
 $a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln";
+$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
+$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
+$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
+$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
+$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
+$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden.";
+$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden",
+       1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden",
+);
+$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen.";
+$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler.";
+$a->strings["Profile unavailable."] = "Profil nicht verfügbar.";
+$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Freundschaftsanfragen erhalten.";
+$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen.";
+$a->strings["Invalid locator"] = "Ungültiger Locator";
+$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse.";
+$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen.";
+$a->strings["Unable to resolve your name at the provided location."] = "Konnte deinen Namen an der angegebenen Stelle nicht finden.";
+$a->strings["You have already introduced yourself here."] = "Du hast dich hier bereits vorgestellt.";
+$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob du bereits mit %s befreundet bist.";
+$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
+$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
+$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
+$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
+$a->strings["Please login to confirm introduction."] = "Bitte melde dich an, um die Kontaktanfrage zu bestätigen.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an.";
+$a->strings["Hide this contact"] = "Verberge diesen Kontakt";
+$a->strings["Welcome home %s."] = "Willkommen zurück %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige deine Kontaktanfrage bei %s.";
+$a->strings["Confirm"] = "Bestätigen";
+$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
+$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert.";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:";
+$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Als E-Mail-Kontakt verbinden</strike> (In Kürze verfügbar)";
+$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>."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten.";
+$a->strings["Friend/Connection Request"] = "Freundschafts-/Kontaktanfrage";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:";
+$a->strings["Does %s know you?"] = "Kennt %s dich?";
+$a->strings["Yes"] = "Ja";
+$a->strings["No"] = "Nein";
+$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste.";
+$a->strings["Your Identity Address:"] = "Adresse deines Profils:";
+$a->strings["Submit Request"] = "Anfrage abschicken";
+$a->strings["Cancel"] = "Abbrechen";
+$a->strings["View Video"] = "Video ansehen";
+$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden.";
+$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
+$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
+$a->strings["Invalid request identifier."] = "Invalid request identifier.";
+$a->strings["Discard"] = "Verwerfen";
+$a->strings["Ignore"] = "Ignorieren";
+$a->strings["System"] = "System";
+$a->strings["Network"] = "Netzwerk";
+$a->strings["Personal"] = "Persönlich";
 $a->strings["Home"] = "Pinnwand";
-$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
-$a->strings["Profile"] = "Profil";
-$a->strings["Your profile page"] = "Deine Profilseite";
-$a->strings["Photos"] = "Bilder";
-$a->strings["Your photos"] = "Deine Fotos";
-$a->strings["Events"] = "Veranstaltungen";
-$a->strings["Your events"] = "Deine Ereignisse";
-$a->strings["Personal notes"] = "Persönliche Notizen";
-$a->strings["Your personal photos"] = "Deine privaten Fotos";
-$a->strings["Community"] = "Gemeinschaft";
-$a->strings["don't show"] = "nicht zeigen";
-$a->strings["show"] = "zeigen";
-$a->strings["Theme settings"] = "Themeneinstellungen";
-$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen";
-$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen";
-$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen";
-$a->strings["Contacts"] = "Kontakte";
-$a->strings["Your contacts"] = "Deine Kontakte";
-$a->strings["Community Pages"] = "Foren";
-$a->strings["Community Profiles"] = "Community-Profile";
-$a->strings["Last users"] = "Letzte Nutzer";
-$a->strings["Last likes"] = "Zuletzt gemocht";
-$a->strings["event"] = "Veranstaltung";
-$a->strings["status"] = "Status";
+$a->strings["Introductions"] = "Kontaktanfragen";
+$a->strings["Messages"] = "Nachrichten";
+$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen";
+$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen";
+$a->strings["Notification type: "] = "Benachrichtigungstyp: ";
+$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
+$a->strings["suggested by %s"] = "vorgeschlagen von %s";
+$a->strings["Hide this contact from others"] = "Verberge diesen Kontakt vor anderen";
+$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden";
+$a->strings["if applicable"] = "falls anwendbar";
+$a->strings["Approve"] = "Genehmigen";
+$a->strings["Claims to be known to you: "] = "Behauptet dich zu kennen: ";
+$a->strings["yes"] = "ja";
+$a->strings["no"] = "nein";
+$a->strings["Approve as: "] = "Genehmigen als: ";
+$a->strings["Friend"] = "Freund";
+$a->strings["Sharer"] = "Teilenden";
+$a->strings["Fan/Admirer"] = "Fan/Verehrer";
+$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
+$a->strings["New Follower"] = "Neuer Bewunderer";
+$a->strings["No introductions."] = "Keine Kontaktanfragen.";
+$a->strings["Notifications"] = "Benachrichtigungen";
+$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag";
+$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht";
+$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
+$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
+$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
+$a->strings["No more network notifications."] = "Keine weiteren Netzwerk-Benachrichtigungen.";
+$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
+$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen.";
+$a->strings["System Notifications"] = "Systembenachrichtigungen";
+$a->strings["No more personal notifications."] = "Keine weiteren persönlichen Benachrichtigungen";
+$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
+$a->strings["No more home notifications."] = "Keine weiteren Pinnwand-Benachrichtigungen";
+$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen";
 $a->strings["photo"] = "Foto";
+$a->strings["status"] = "Status";
 $a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s";
-$a->strings["Last photos"] = "Letzte Fotos";
-$a->strings["Contact Photos"] = "Kontaktbilder";
-$a->strings["Profile Photos"] = "Profilbilder";
-$a->strings["Find Friends"] = "Freunde finden";
-$a->strings["Local Directory"] = "Lokales Verzeichnis";
-$a->strings["Global Directory"] = "Weltweites Verzeichnis";
-$a->strings["Similar Interests"] = "Ähnliche Interessen";
-$a->strings["Friend Suggestions"] = "Kontaktvorschläge";
-$a->strings["Invite Friends"] = "Freunde einladen";
-$a->strings["Settings"] = "Einstellungen";
-$a->strings["Earth Layers"] = "Earth Layers";
-$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer";
-$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer";
-$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer";
-$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere";
-$a->strings["Connect Services"] = "Verbinde Dienste";
-$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen";
-$a->strings["Set color scheme"] = "Wähle Farbschema";
-$a->strings["Set zoomfactor for Earth Layer"] = "Zoomfaktor der Earth Layer";
-$a->strings["Alignment"] = "Ausrichtung";
-$a->strings["Left"] = "Links";
-$a->strings["Center"] = "Mitte";
-$a->strings["Color scheme"] = "Farbschema";
-$a->strings["Posts font size"] = "Schriftgröße in Beiträgen";
-$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern";
-$a->strings["Set colour scheme"] = "Farbschema wählen";
-$a->strings["default"] = "Standard";
-$a->strings["Background Image"] = "Hintergrundbild";
-$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = "Die URL eines Bildes (z.B. aus deinem Fotoalbum), das als Hintergrundbild verwendet werden soll.";
-$a->strings["Background Color"] = "Hintergrundfarbe";
-$a->strings["HEX value for the background color. Don't include the #"] = "HEX Wert der Hintergrundfarbe. Gib die # nicht mit an.";
-$a->strings["font size"] = "Schriftgröße";
-$a->strings["base font size for your interface"] = "Basis-Schriftgröße für dein Interface.";
-$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)";
-$a->strings["Set theme width"] = "Theme Breite festlegen";
-$a->strings["Set style"] = "Stiel auswählen";
-$a->strings["Delete this item?"] = "Diesen Beitrag löschen?";
-$a->strings["show fewer"] = "weniger anzeigen";
-$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen.";
-$a->strings["Update Error at %s"] = "Updatefehler bei %s";
-$a->strings["Create a New Account"] = "Neues Konto erstellen";
-$a->strings["Register"] = "Registrieren";
-$a->strings["Logout"] = "Abmelden";
-$a->strings["Login"] = "Anmeldung";
-$a->strings["Nickname or Email address: "] = "Spitzname oder E-Mail-Adresse: ";
-$a->strings["Password: "] = "Passwort: ";
-$a->strings["Remember me"] = "Anmeldedaten merken";
-$a->strings["Or login using OpenID: "] = "Oder melde dich mit deiner OpenID an: ";
-$a->strings["Forgot your password?"] = "Passwort vergessen?";
-$a->strings["Password Reset"] = "Passwort zurücksetzen";
-$a->strings["Website Terms of Service"] = "Website Nutzungsbedingungen";
-$a->strings["terms of service"] = "Nutzungsbedingungen";
-$a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung";
-$a->strings["privacy policy"] = "Datenschutzerklärung";
-$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden.";
-$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden.";
-$a->strings["Edit profile"] = "Profil bearbeiten";
-$a->strings["Connect"] = "Verbinden";
-$a->strings["Message"] = "Nachricht";
-$a->strings["Profiles"] = "Profile";
-$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren";
-$a->strings["Change profile photo"] = "Profilbild ändern";
-$a->strings["Create New Profile"] = "Neues Profil anlegen";
-$a->strings["Profile Image"] = "Profilbild";
-$a->strings["visible to everybody"] = "sichtbar für jeden";
-$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
-$a->strings["Location:"] = "Ort:";
-$a->strings["Gender:"] = "Geschlecht:";
-$a->strings["Status:"] = "Status:";
-$a->strings["Homepage:"] = "Homepage:";
-$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r";
-$a->strings["F d"] = "d. F";
-$a->strings["[today]"] = "[heute]";
-$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen";
-$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:";
-$a->strings["[No description]"] = "[keine Beschreibung]";
-$a->strings["Event Reminders"] = "Veranstaltungserinnerungen";
-$a->strings["Events this week:"] = "Veranstaltungen diese Woche";
-$a->strings["Status"] = "Status";
-$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
-$a->strings["Profile Details"] = "Profildetails";
-$a->strings["Photo Albums"] = "Fotoalben";
-$a->strings["Videos"] = "Videos";
-$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
-$a->strings["Personal Notes"] = "Persönliche Notizen";
-$a->strings["Only You Can See This"] = "Nur du kannst das sehen";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s";
-$a->strings["Mood"] = "Stimmung";
-$a->strings["Set your current mood and tell your friends"] = "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden";
-$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert.";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht";
+$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet.";
+$a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
+$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:";
+$a->strings["Source input: "] = "Originaltext:";
+$a->strings["bb2html (raw HTML): "] = "bb2html (reines 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): "] = "Originaltext (Diaspora Format): ";
+$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
+$a->strings["Site"] = "Seite";
+$a->strings["Users"] = "Nutzer";
+$a->strings["Plugins"] = "Plugins";
+$a->strings["Themes"] = "Themen";
+$a->strings["DB updates"] = "DB Updates";
+$a->strings["Logs"] = "Protokolle";
+$a->strings["Admin"] = "Administration";
+$a->strings["Plugin Features"] = "Plugin Features";
+$a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten";
 $a->strings["Item not found."] = "Beitrag nicht gefunden.";
-$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
-$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
-$a->strings["Access denied."] = "Zugriff verweigert.";
-$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version";
-$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren.";
-$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com";
-$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps";
-$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
-$a->strings["Registration details for %s"] = "Details der Registration von %s";
-$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet.";
-$a->strings["Failed to send email message. Here is the message that failed."] = "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht gesendet werden konnte.";
-$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden.";
-$a->strings["Registration request at %s"] = "Registrierungsanfrage auf %s";
-$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden.";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst.";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus.";
-$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): ";
-$a->strings["Include your profile in member directory?"] = "Soll dein Profil im Nutzerverzeichnis angezeigt werden?";
-$a->strings["Yes"] = "Ja";
-$a->strings["No"] = "Nein";
-$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich.";
-$a->strings["Your invitation ID: "] = "ID deiner Einladung: ";
-$a->strings["Registration"] = "Registrierung";
-$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): ";
-$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: ";
-$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>'."] = "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.";
-$a->strings["Choose a nickname: "] = "Spitznamen wählen: ";
-$a->strings["Import"] = "Import";
-$a->strings["Import your profile to this friendica instance"] = "Importiere dein Profil auf diese Friendica Instanz";
-$a->strings["Profile not found."] = "Profil nicht gefunden.";
-$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde.";
-$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich.";
-$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: ";
-$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen.";
-$a->strings["Remote site reported: "] = "Gegenstelle meldet: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal.";
-$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen.";
-$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern.";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet";
-$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden";
-$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden.";
-$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden.";
-$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server.";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal.";
-$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden.";
-$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für dein Profil konnten nicht gespeichert werden";
-$a->strings["Connection accepted at %s"] = "Auf %s wurde die Verbindung akzeptiert";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
-$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren";
-$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:";
-$a->strings["Please login to continue."] = "Bitte melde dich an um fortzufahren.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?";
-$a->strings["No valid account found."] = "Kein gültiges Konto gefunden.";
-$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail.";
-$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert.";
-$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt.";
-$a->strings["Your new password is"] = "Dein neues Passwort lautet";
-$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere dein neues Passwort - und dann";
-$a->strings["click here to login"] = "hier klicken, um dich anzumelden";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald du dich erfolgreich angemeldet hast.";
-$a->strings["Your password has been changed at %s"] = "Auf %s wurde dein Passwort geändert";
-$a->strings["Forgot your Password?"] = "Hast du dein Passwort vergessen?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet.";
-$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:";
-$a->strings["Reset"] = "Zurücksetzen";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
-$a->strings["No recipient selected."] = "Kein Empfänger gewählt.";
-$a->strings["Unable to check your home location."] = "Konnte deinen Heimatort nicht bestimmen.";
-$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden.";
-$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen.";
-$a->strings["Message sent."] = "Nachricht gesendet.";
-$a->strings["No recipient."] = "Kein Empfänger.";
-$a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:";
-$a->strings["Send Private Message"] = "Private Nachricht senden";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
-$a->strings["To:"] = "An:";
-$a->strings["Subject:"] = "Betreff:";
-$a->strings["Your message:"] = "Deine Nachricht:";
-$a->strings["Upload photo"] = "Foto hochladen";
-$a->strings["Insert web link"] = "Einen Link einfügen";
-$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica";
-$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder";
-$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."] = "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden.";
-$a->strings["Getting Started"] = "Einstieg";
-$a->strings["Friendica Walk-Through"] = "Friendica Rundgang";
-$a->strings["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."] = "Auf der <em>Quick Start</em> Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst.";
-$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen";
-$a->strings["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."] = "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen.";
-$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können.";
-$a->strings["Upload Profile Photo"] = "Profilbild hochladen";
-$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust.";
-$a->strings["Edit Your Profile"] = "Editiere dein Profil";
-$a->strings["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."] = "Editiere dein <strong>Standard</strong> Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils.";
-$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe";
-$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."] = "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen.";
-$a->strings["Connecting"] = "Verbindungen knüpfen";
-$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."] = "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst.";
-$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Wenn</em> dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten.";
-$a->strings["Importing Emails"] = "Emails Importieren";
-$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst.";
-$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite";
-$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein.";
-$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis deiner Friendica Instanz";
-$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."] = "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst.";
-$a->strings["Finding New People"] = "Neue Leute kennenlernen";
-$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."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden.";
-$a->strings["Groups"] = "Gruppen";
-$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte";
-$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."] = "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren.";
-$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?";
-$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch.";
-$a->strings["Getting Help"] = "Hilfe bekommen";
-$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten.";
-$a->strings["Do you really want to delete this suggestion?"] = "Möchtest du wirklich diese Empfehlung löschen?";
-$a->strings["Cancel"] = "Abbrechen";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
-$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
-$a->strings["Search Results For:"] = "Suchergebnisse für:";
-$a->strings["Remove term"] = "Begriff entfernen";
-$a->strings["Saved Searches"] = "Gespeicherte Suchen";
-$a->strings["add"] = "hinzufügen";
-$a->strings["Commented Order"] = "Neueste Kommentare";
-$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren";
-$a->strings["Posted Order"] = "Neueste Beiträge";
-$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren";
-$a->strings["Personal"] = "Persönlich";
-$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um dich geht";
-$a->strings["New"] = "Neue";
-$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum";
-$a->strings["Shared Links"] = "Geteilte Links";
-$a->strings["Interesting Links"] = "Interessante Links";
-$a->strings["Starred"] = "Markierte";
-$a->strings["Favourite Posts"] = "Favorisierte Beiträge";
-$a->strings["Warning: This group contains %s member from an insecure network."] = array(
-       0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk.",
-       1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken.",
-);
-$a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten.";
-$a->strings["No such group"] = "Es gibt keine solche Gruppe";
-$a->strings["Group is empty"] = "Gruppe ist leer";
-$a->strings["Group: "] = "Gruppe: ";
-$a->strings["Contact: "] = "Kontakt: ";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen.";
-$a->strings["Invalid contact."] = "Ungültiger Kontakt.";
-$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup";
-$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert.";
-$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden.";
-$a->strings["Your Friendica site database has been installed."] = "Die Datenbank deiner Friendicaseite wurde installiert.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\".";
-$a->strings["System check"] = "Systemtest";
-$a->strings["Next"] = "Nächste";
-$a->strings["Check again"] = "Noch einmal testen";
-$a->strings["Database connection"] = "Datenbankverbindung";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit deiner Datenbank Kontakt aufnehmen können.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls du Fragen zu diesen Einstellungen haben solltest.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor du mit der Installation fortfährst.";
-$a->strings["Database Server Name"] = "Datenbank-Server";
-$a->strings["Database Login Name"] = "Datenbank-Nutzer";
-$a->strings["Database Login Password"] = "Datenbank-Passwort";
-$a->strings["Database Name"] = "Datenbank-Name";
-$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit du das Admin-Panel benutzen kannst.";
-$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone deiner Webseite";
-$a->strings["Site settings"] = "Server-Einstellungen";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden.";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Wenn du keine Kommandozeilen Version von PHP auf deinem Server installiert hast, kannst du keine Hintergrundprozesse via cron starten. Siehe <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
-$a->strings["PHP executable path"] = "Pfad zu PHP";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren.";
-$a->strings["Command line PHP"] = "Kommandozeilen-PHP";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)";
-$a->strings["Found PHP version: "] = "Gefundene PHP Version:";
-$a->strings["PHP cli binary"] = "PHP CLI Binary";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf deinem System hat \"register_argc_argv\" nicht aktiviert.";
-$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt.";
-$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an.";
-$a->strings["Generate encryption keys"] = "Schlüssel erzeugen";
-$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul";
-$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul";
-$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul";
-$a->strings["mysqli PHP module"] = "PHP: mysqli-Modul";
-$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul";
-$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert.";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun.";
-$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast.";
-$a->strings["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."] = "Nachdem du alles ausgefüllt hast, erhältst du einen Text, den du in eine Datei namens .htconfig.php in deinem Friendica-Wurzelverzeichnis kopieren musst.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest du in der Datei INSTALL.txt.";
-$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen.";
-$a->strings["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."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat.";
-$a->strings["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."] = "Hinweis: aus Sicherheitsgründen solltest du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers.";
-$a->strings["Url rewrite is working"] = "URL rewrite funktioniert";
-$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis deiner Friendica-Installation zu erzeugen.";
-$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen.";
-$a->strings["<h1>What next</h1>"] = "<h1>Wie geht es weiter?</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten.";
-$a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
-$a->strings["Site"] = "Seite";
-$a->strings["Users"] = "Nutzer";
-$a->strings["Plugins"] = "Plugins";
-$a->strings["Themes"] = "Themen";
-$a->strings["DB updates"] = "DB Updates";
-$a->strings["Logs"] = "Protokolle";
-$a->strings["Admin"] = "Administration";
-$a->strings["Plugin Features"] = "Plugin Features";
-$a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten";
 $a->strings["Normal Account"] = "Normales Konto";
 $a->strings["Soapbox Account"] = "Marktschreier-Konto";
 $a->strings["Community/Celebrity Account"] = "Forum/Promi-Konto";
@@ -432,6 +218,7 @@ $a->strings["No SSL policy, links will track page SSL state"] = "Keine SSL Richt
 $a->strings["Force all links to use SSL"] = "SSL für alle Links erzwingen";
 $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)";
 $a->strings["Save Settings"] = "Einstellungen speichern";
+$a->strings["Registration"] = "Registrierung";
 $a->strings["File upload"] = "Datei hochladen";
 $a->strings["Policies"] = "Regeln";
 $a->strings["Advanced"] = "Erweitert";
@@ -540,6 +327,7 @@ $a->strings["Failed Updates"] = "Fehlgeschlagene Updates";
 $a->strings["This does not include updates prior to 1139, which did not return a status."] = "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben.";
 $a->strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (falls das Update manuell installiert wurde)";
 $a->strings["Attempt to execute this update step automatically"] = "Versuchen, diesen Schritt automatisch auszuführen";
+$a->strings["Registration details for %s"] = "Details der Registration von %s";
 $a->strings["Registration successful. Email send to user"] = "Registration erfolgreich. Dem Nutzer wurde eine Email gesended.";
 $a->strings["%s user blocked/unblocked"] = array(
        0 => "%s Benutzer geblockt/freigegeben",
@@ -560,7 +348,6 @@ $a->strings["Request date"] = "Anfragedatum";
 $a->strings["Name"] = "Name";
 $a->strings["Email"] = "E-Mail";
 $a->strings["No registrations."] = "Keine Neuanmeldungen.";
-$a->strings["Approve"] = "Genehmigen";
 $a->strings["Deny"] = "Verwehren";
 $a->strings["Block"] = "Sperren";
 $a->strings["Unblock"] = "Entsperren";
@@ -583,6 +370,7 @@ $a->strings["Plugin %s enabled."] = "Plugin %s aktiviert.";
 $a->strings["Disable"] = "Ausschalten";
 $a->strings["Enable"] = "Einschalten";
 $a->strings["Toggle"] = "Umschalten";
+$a->strings["Settings"] = "Einstellungen";
 $a->strings["Author: "] = "Autor:";
 $a->strings["Maintainer: "] = "Betreuer:";
 $a->strings["No themes found."] = "Keine Themen gefunden.";
@@ -601,11 +389,36 @@ $a->strings["FTP Host"] = "FTP Host";
 $a->strings["FTP Path"] = "FTP Pfad";
 $a->strings["FTP User"] = "FTP Nutzername";
 $a->strings["FTP Password"] = "FTP Passwort";
-$a->strings["Search"] = "Suche";
-$a->strings["No results."] = "Keine Ergebnisse.";
-$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
-$a->strings["link"] = "Link";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt";
+$a->strings["New Message"] = "Neue Nachricht";
+$a->strings["No recipient selected."] = "Kein Empfänger gewählt.";
+$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
+$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden.";
+$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen.";
+$a->strings["Message sent."] = "Nachricht gesendet.";
+$a->strings["Do you really want to delete this message?"] = "Möchtest du wirklich diese Nachricht löschen?";
+$a->strings["Message deleted."] = "Nachricht gelöscht.";
+$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
+$a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:";
+$a->strings["Send Private Message"] = "Private Nachricht senden";
+$a->strings["To:"] = "An:";
+$a->strings["Subject:"] = "Betreff:";
+$a->strings["Your message:"] = "Deine Nachricht:";
+$a->strings["Upload photo"] = "Foto hochladen";
+$a->strings["Insert web link"] = "Einen Link einfügen";
+$a->strings["No messages."] = "Keine Nachrichten.";
+$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s";
+$a->strings["You and %s"] = "Du und %s";
+$a->strings["%s and You"] = "%s und du";
+$a->strings["Delete conversation"] = "Unterhaltung löschen";
+$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d Nachricht",
+       1 => "%d Nachrichten",
+);
+$a->strings["Message not available."] = "Nachricht nicht verfügbar.";
+$a->strings["Delete message"] = "Nachricht löschen";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst du auf der Profilseite des Absenders antworten.";
+$a->strings["Send Reply"] = "Antwort senden";
 $a->strings["Item not found"] = "Beitrag nicht gefunden";
 $a->strings["Edit post"] = "Beitrag bearbeiten";
 $a->strings["upload photo"] = "Bild hochladen";
@@ -626,95 +439,169 @@ $a->strings["Public post"] = "Öffentlicher Beitrag";
 $a->strings["Set title"] = "Titel setzen";
 $a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)";
 $a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com";
-$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
-$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
-$a->strings["Account approved."] = "Konto freigegeben.";
-$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen";
-$a->strings["Please login."] = "Bitte melde dich an.";
-$a->strings["Find on this site"] = "Auf diesem Server suchen";
-$a->strings["Finding: "] = "Funde: ";
-$a->strings["Site Directory"] = "Verzeichnis";
-$a->strings["Find"] = "Finde";
-$a->strings["Age: "] = "Alter: ";
-$a->strings["Gender: "] = "Geschlecht:";
-$a->strings["About:"] = "Über:";
-$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
-$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
-$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
-$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button deines Browsers <strong>jetzt</strong>, wenn du dir unsicher bist, was du tun willst.";
-$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
-$a->strings["Account Nickname"] = "Konto-Spitzname";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
-$a->strings["Account URL"] = "Konto-URL";
-$a->strings["Friend Request URL"] = "URL für Freundschaftsanfragen";
-$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen";
-$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.";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren";
-$a->strings["Account file"] = "Account Datei";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
+$a->strings["Profile not found."] = "Profil nicht gefunden.";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde.";
+$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich.";
+$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: ";
+$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen.";
+$a->strings["Remote site reported: "] = "Gegenstelle meldet: ";
+$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal.";
+$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen.";
+$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern.";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet";
+$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden";
+$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden.";
+$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden.";
+$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server.";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal.";
+$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden.";
+$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für dein Profil konnten nicht gespeichert werden";
+$a->strings["Connection accepted at %s"] = "Auf %s wurde die Verbindung akzeptiert";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
+$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Veranstaltung bearbeiten";
+$a->strings["link to source"] = "Link zum Originalbeitrag";
+$a->strings["Events"] = "Veranstaltungen";
+$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
+$a->strings["Previous"] = "Vorherige";
+$a->strings["Next"] = "Nächste";
+$a->strings["hour:minute"] = "Stunde:Minute";
+$a->strings["Event details"] = "Veranstaltungsdetails";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt.";
+$a->strings["Event Starts:"] = "Veranstaltungsbeginn:";
+$a->strings["Required"] = "Benötigt";
+$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant";
+$a->strings["Event Finishes:"] = "Veranstaltungsende:";
+$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen";
+$a->strings["Description:"] = "Beschreibung";
+$a->strings["Location:"] = "Ort:";
+$a->strings["Title:"] = "Titel:";
+$a->strings["Share this event"] = "Veranstaltung teilen";
+$a->strings["Photos"] = "Bilder";
+$a->strings["Files"] = "Dateien";
+$a->strings["Welcome to %s"] = "Willkommen zu %s";
 $a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
 $a->strings["Visible to:"] = "Sichtbar für:";
-$a->strings["Save"] = "Speichern";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
+$a->strings["Unable to check your home location."] = "Konnte deinen Heimatort nicht bestimmen.";
+$a->strings["No recipient."] = "Kein Empfänger.";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
+$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]";
+$a->strings["Edit contact"] = "Kontakt bearbeiten";
+$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind";
+$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version";
+$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren.";
+$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com";
+$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps";
+$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert";
+$a->strings["Remove My Account"] = "Konto löschen";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
+$a->strings["Please enter your password for verification:"] = "Bitte gib dein Passwort zur Verifikation ein:";
+$a->strings["Image exceeds size limit of %d"] = "Bildgröße überschreitet das Limit von %d";
+$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten.";
+$a->strings["Wall Photos"] = "Pinnwand-Bilder";
+$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
+$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren";
+$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:";
+$a->strings["Please login to continue."] = "Bitte melde dich an um fortzufahren.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt";
+$a->strings["Photo Albums"] = "Fotoalben";
+$a->strings["Contact Photos"] = "Kontaktbilder";
+$a->strings["Upload New Photos"] = "Neue Fotos hochladen";
+$a->strings["everybody"] = "jeder";
+$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar";
+$a->strings["Profile Photos"] = "Profilbilder";
+$a->strings["Album not found."] = "Album nicht gefunden.";
+$a->strings["Delete Album"] = "Album löschen";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?";
+$a->strings["Delete Photo"] = "Foto löschen";
+$a->strings["Do you really want to delete this photo?"] = "Möchtest du wirklich dieses Foto löschen?";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt";
+$a->strings["a photo"] = "einem Foto";
+$a->strings["Image exceeds size limit of "] = "Die Bildgröße übersteigt das Limit von ";
+$a->strings["Image file is empty."] = "Bilddatei ist leer.";
+$a->strings["No photos selected"] = "Keine Bilder ausgewählt";
+$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt.";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers.";
+$a->strings["Upload Photos"] = "Bilder hochladen";
+$a->strings["New album name: "] = "Name des neuen Albums: ";
+$a->strings["or existing album name: "] = "oder existierender Albumname: ";
+$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen";
+$a->strings["Permissions"] = "Berechtigungen";
+$a->strings["Show to Groups"] = "Zeige den Gruppen";
+$a->strings["Show to Contacts"] = "Zeige den Kontakten";
+$a->strings["Private Photo"] = "Privates Foto";
+$a->strings["Public Photo"] = "Öffentliches Foto";
+$a->strings["Edit Album"] = "Album bearbeiten";
+$a->strings["Show Newest First"] = "Zeige neueste zuerst";
+$a->strings["Show Oldest First"] = "Zeige älteste zuerst";
+$a->strings["View Photo"] = "Foto betrachten";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein.";
+$a->strings["Photo not available"] = "Foto nicht verfügbar";
+$a->strings["View photo"] = "Fotos ansehen";
+$a->strings["Edit photo"] = "Foto bearbeiten";
+$a->strings["Use as profile photo"] = "Als Profilbild verwenden";
+$a->strings["View Full Size"] = "Betrachte Originalgröße";
+$a->strings["Tags: "] = "Tags: ";
+$a->strings["[Remove any tag]"] = "[Tag entfernen]";
+$a->strings["Rotate CW (right)"] = "Drehen US (rechts)";
+$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)";
+$a->strings["New album name"] = "Name des neuen Albums";
+$a->strings["Caption"] = "Bildunterschrift";
+$a->strings["Add a Tag"] = "Tag hinzufügen";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
+$a->strings["Private photo"] = "Privates Foto";
+$a->strings["Public photo"] = "Öffentliches Foto";
+$a->strings["Share"] = "Teilen";
+$a->strings["View Album"] = "Album betrachten";
+$a->strings["Recent Photos"] = "Neueste Fotos";
+$a->strings["No profile"] = "Kein Profil";
+$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet.";
+$a->strings["Failed to send email message. Here is the message that failed."] = "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht gesendet werden konnte.";
+$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden.";
+$a->strings["Registration request at %s"] = "Registrierungsanfrage auf %s";
+$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden.";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst.";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus.";
+$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): ";
+$a->strings["Include your profile in member directory?"] = "Soll dein Profil im Nutzerverzeichnis angezeigt werden?";
+$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich.";
+$a->strings["Your invitation ID: "] = "ID deiner Einladung: ";
+$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): ";
+$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: ";
+$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>'."] = "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.";
+$a->strings["Choose a nickname: "] = "Spitznamen wählen: ";
+$a->strings["Register"] = "Registrieren";
+$a->strings["Import"] = "Import";
+$a->strings["Import your profile to this friendica instance"] = "Importiere dein Profil auf diese Friendica Instanz";
+$a->strings["No valid account found."] = "Kein gültiges Konto gefunden.";
+$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail.";
+$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert.";
+$a->strings["Password Reset"] = "Passwort zurücksetzen";
+$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt.";
+$a->strings["Your new password is"] = "Dein neues Passwort lautet";
+$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere dein neues Passwort - und dann";
+$a->strings["click here to login"] = "hier klicken, um dich anzumelden";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald du dich erfolgreich angemeldet hast.";
+$a->strings["Your password has been changed at %s"] = "Auf %s wurde dein Passwort geändert";
+$a->strings["Forgot your Password?"] = "Hast du dein Passwort vergessen?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet.";
+$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:";
+$a->strings["Reset"] = "Zurücksetzen";
+$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
+$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
+$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
+$a->strings["Applications"] = "Anwendungen";
+$a->strings["No installed applications."] = "Keine Applikationen installiert.";
 $a->strings["Help:"] = "Hilfe:";
 $a->strings["Help"] = "Hilfe";
-$a->strings["No profile"] = "Kein Profil";
-$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden.";
-$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden",
-       1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden",
-);
-$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen.";
-$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler.";
-$a->strings["Profile unavailable."] = "Profil nicht verfügbar.";
-$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Freundschaftsanfragen erhalten.";
-$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen.";
-$a->strings["Invalid locator"] = "Ungültiger Locator";
-$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse.";
-$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen.";
-$a->strings["Unable to resolve your name at the provided location."] = "Konnte deinen Namen an der angegebenen Stelle nicht finden.";
-$a->strings["You have already introduced yourself here."] = "Du hast dich hier bereits vorgestellt.";
-$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob du bereits mit %s befreundet bist.";
-$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
-$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
-$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
-$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
-$a->strings["Please login to confirm introduction."] = "Bitte melde dich an, um die Kontaktanfrage zu bestätigen.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an.";
-$a->strings["Hide this contact"] = "Verberge diesen Kontakt";
-$a->strings["Welcome home %s."] = "Willkommen zurück %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige deine Kontaktanfrage bei %s.";
-$a->strings["Confirm"] = "Bestätigen";
-$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:";
-$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Als E-Mail-Kontakt verbinden</strike> (In Kürze verfügbar)";
-$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>."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten.";
-$a->strings["Friend/Connection Request"] = "Freundschafts-/Kontaktanfrage";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:";
-$a->strings["Does %s know you?"] = "Kennt %s dich?";
-$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste.";
-$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",
@@ -745,7 +632,6 @@ $a->strings["%d contact in common"] = array(
 $a->strings["View all contacts"] = "Alle Kontakte anzeigen";
 $a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
 $a->strings["Unignore"] = "Ignorieren aufheben";
-$a->strings["Ignore"] = "Ignorieren";
 $a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
 $a->strings["Unarchive"] = "Aus Archiv zurückholen";
 $a->strings["Archive"] = "Archivieren";
@@ -758,7 +644,6 @@ $a->strings["Profile Visibility"] = "Profil-Sichtbarkeit";
 $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft.";
 $a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen";
 $a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten";
-$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]";
 $a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten";
 $a->strings["Ignore contact"] = "Ignoriere den Kontakt";
 $a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
@@ -769,7 +654,6 @@ $a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
 $a->strings["Currently blocked"] = "Derzeit geblockt";
 $a->strings["Currently ignored"] = "Derzeit ignoriert";
 $a->strings["Currently archived"] = "Momentan archiviert";
-$a->strings["Hide this contact from others"] = "Verberge diesen Kontakt vor anderen";
 $a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein";
 $a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen";
 $a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung wann immer dieser Kontakt einen neuen Beitrag schreibt.";
@@ -791,27 +675,107 @@ $a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen";
 $a->strings["Mutual Friendship"] = "Beidseitige Freundschaft";
 $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["Contacts"] = "Kontakte";
 $a->strings["Search your contacts"] = "Suche in deinen Kontakten";
+$a->strings["Finding: "] = "Funde: ";
+$a->strings["Find"] = "Finde";
 $a->strings["Update"] = "Aktualisierungen";
-$a->strings["everybody"] = "jeder";
-$a->strings["Additional features"] = "Zusätzliche Features";
-$a->strings["Display"] = "Anzeige";
-$a->strings["Social Networks"] = "Soziale Netzwerke";
-$a->strings["Delegations"] = "Delegationen";
-$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["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";
-$a->strings["Relocate message has been send to your contacts"] = "Die Umzugsbenachrichtigung wurde an deine Kontakte versendet.";
-$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert.";
-$a->strings["Wrong password."] = "Falsches Passwort.";
-$a->strings["Password changed."] = "Passwort geändert.";
-$a->strings["Password update failed. Please try again."] = "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal.";
+$a->strings["No videos selected"] = "Keine Videos  ausgewählt";
+$a->strings["Recent Videos"] = "Neueste Videos";
+$a->strings["Upload New Videos"] = "Neues Video hochladen";
+$a->strings["Common Friends"] = "Gemeinsame Freunde";
+$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
+$a->strings["Contact added"] = "Kontakt hinzugefügt";
+$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.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren";
+$a->strings["Account file"] = "Account Datei";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
+$a->strings["Friends of %s"] = "Freunde von %s";
+$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen.";
+$a->strings["Tag removed"] = "Tag entfernt";
+$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen";
+$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: ";
+$a->strings["Remove"] = "Entfernen";
+$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica";
+$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder";
+$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."] = "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden.";
+$a->strings["Getting Started"] = "Einstieg";
+$a->strings["Friendica Walk-Through"] = "Friendica Rundgang";
+$a->strings["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."] = "Auf der <em>Quick Start</em> Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst.";
+$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen";
+$a->strings["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."] = "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen.";
+$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können.";
+$a->strings["Profile"] = "Profil";
+$a->strings["Upload Profile Photo"] = "Profilbild hochladen";
+$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust.";
+$a->strings["Edit Your Profile"] = "Editiere dein Profil";
+$a->strings["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."] = "Editiere dein <strong>Standard</strong> Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils.";
+$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe";
+$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."] = "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen.";
+$a->strings["Connecting"] = "Verbindungen knüpfen";
+$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."] = "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst.";
+$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Wenn</em> dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten.";
+$a->strings["Importing Emails"] = "Emails Importieren";
+$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst.";
+$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite";
+$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein.";
+$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis deiner Friendica Instanz";
+$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."] = "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst.";
+$a->strings["Finding New People"] = "Neue Leute kennenlernen";
+$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."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden.";
+$a->strings["Groups"] = "Gruppen";
+$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte";
+$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."] = "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren.";
+$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?";
+$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch.";
+$a->strings["Getting Help"] = "Hilfe bekommen";
+$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten.";
+$a->strings["Remove term"] = "Begriff entfernen";
+$a->strings["Saved Searches"] = "Gespeicherte Suchen";
+$a->strings["Search"] = "Suche";
+$a->strings["No results."] = "Keine Ergebnisse.";
+$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht.";
+$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse.";
+$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite.";
+$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen.";
+$a->strings["%d message sent."] = array(
+       0 => "%d Nachricht gesendet.",
+       1 => "%d Nachrichten gesendet.",
+);
+$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen";
+$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."] = "Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen 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."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen du beitreten kannst.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen.";
+$a->strings["Send invitations"] = "Einladungen senden";
+$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com";
+$a->strings["Additional features"] = "Zusätzliche Features";
+$a->strings["Display"] = "Anzeige";
+$a->strings["Social Networks"] = "Soziale Netzwerke";
+$a->strings["Delegations"] = "Delegationen";
+$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["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";
+$a->strings["Relocate message has been send to your contacts"] = "Die Umzugsbenachrichtigung wurde an deine Kontakte versendet.";
+$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert.";
+$a->strings["Wrong password."] = "Falsches Passwort.";
+$a->strings["Password changed."] = "Passwort geändert.";
+$a->strings["Password update failed. Please try again."] = "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal.";
 $a->strings[" Please use a shorter name."] = " Bitte verwende einen kürzeren Namen.";
 $a->strings[" Name too short."] = " Name ist zu kurz.";
 $a->strings["Wrong Password"] = "Falsches Passwort";
@@ -866,6 +830,8 @@ $a->strings["Number of items to display per page when viewed from mobile device:
 $a->strings["Don't show emoticons"] = "Keine Smilies anzeigen";
 $a->strings["Don't show notices"] = "Info-Popups nicht anzeigen";
 $a->strings["Infinite scroll"] = "Endloses Scrollen";
+$a->strings["User Types"] = "Nutzer Art";
+$a->strings["Community Types"] = "Gemeinschafts Art";
 $a->strings["Normal Account Page"] = "Normales Konto";
 $a->strings["This account is a normal personal profile"] = "Dieses Konto ist ein normales persönliches Profil";
 $a->strings["Soapbox Page"] = "Marktschreier-Konto";
@@ -917,8 +883,6 @@ $a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl von Freundschafts
 $a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)";
 $a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge";
 $a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)";
-$a->strings["Show to Groups"] = "Zeige den Gruppen";
-$a->strings["Show to Contacts"] = "Zeige den Kontakten";
 $a->strings["Default Private Post"] = "Privater Standardbeitrag";
 $a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag";
 $a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge";
@@ -942,6 +906,9 @@ $a->strings["Change the behaviour of this account for special situations"] = "Ve
 $a->strings["Relocate"] = "Umziehen";
 $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."] = "Wenn du dein Profil von einem anderen Server umgezogen hast und einige deiner Kontakte deine Beiträge nicht erhalten, verwende diesen Button.";
 $a->strings["Resend relocate message to contacts"] = "Umzugsbenachrichtigung erneut an Kontakte senden";
+$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
+$a->strings["People Search"] = "Personensuche";
+$a->strings["No matches"] = "Keine Übereinstimmungen";
 $a->strings["Profile deleted."] = "Profil gelöscht.";
 $a->strings["Profile-"] = "Profil-";
 $a->strings["New profile created."] = "Neues Profil angelegt.";
@@ -1010,7 +977,162 @@ $a->strings["Love/romance"] = "Liebe/Romantik";
 $a->strings["Work/employment"] = "Arbeit/Anstellung";
 $a->strings["School/education"] = "Schule/Ausbildung";
 $a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dies ist dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein.";
+$a->strings["Age: "] = "Alter: ";
 $a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile";
+$a->strings["Change profile photo"] = "Profilbild ändern";
+$a->strings["Create New Profile"] = "Neues Profil anlegen";
+$a->strings["Profile Image"] = "Profilbild";
+$a->strings["visible to everybody"] = "sichtbar für jeden";
+$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
+$a->strings["link"] = "Link";
+$a->strings["Export account"] = "Account exportieren";
+$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."] = "Exportiere deine Accountinformationen und Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen.";
+$a->strings["Export all"] = "Alles exportieren";
+$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)"] = "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Fotos werden nicht exportiert).";
+$a->strings["{0} wants to be your friend"] = "{0} möchte mit dir in Kontakt treten";
+$a->strings["{0} sent you a message"] = "{0} schickte dir eine Nachricht";
+$a->strings["{0} requested registration"] = "{0} möchte sich registrieren";
+$a->strings["{0} commented %s's post"] = "{0} kommentierte einen Beitrag von %s";
+$a->strings["{0} liked %s's post"] = "{0} mag %ss Beitrag";
+$a->strings["{0} disliked %s's post"] = "{0} mag %ss Beitrag nicht";
+$a->strings["{0} is now friends with %s"] = "{0} ist jetzt mit %s befreundet";
+$a->strings["{0} posted"] = "{0} hat etwas veröffentlicht";
+$a->strings["{0} tagged %s's post with #%s"] = "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen";
+$a->strings["{0} mentioned you in a post"] = "{0} hat dich in einem Beitrag erwähnt";
+$a->strings["Nothing new here"] = "Keine Neuigkeiten";
+$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
+$a->strings["Not available."] = "Nicht verfügbar.";
+$a->strings["Community"] = "Gemeinschaft";
+$a->strings["Save to Folder:"] = "In diesem Ordner speichern:";
+$a->strings["- select -"] = "- auswählen -";
+$a->strings["Save"] = "Speichern";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt.";
+$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?";
+$a->strings["File exceeds size limit of %d"] = "Die Datei ist größer als das erlaubte Limit von %d";
+$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
+$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner.";
+$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit";
+$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen";
+$a->strings["Visible To"] = "Sichtbar für";
+$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)";
+$a->strings["Do you really want to delete this suggestion?"] = "Möchtest du wirklich diese Empfehlung löschen?";
+$a->strings["Friend Suggestions"] = "Kontaktvorschläge";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
+$a->strings["Connect"] = "Verbinden";
+$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
+$a->strings["Access denied."] = "Zugriff verweigert.";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
+$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die deine Kontoinformationen teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast.";
+$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: ";
+$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
+$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite";
+$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."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!";
+$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager";
+$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
+$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
+$a->strings["Add"] = "Hinzufügen";
+$a->strings["No entries."] = "Keine Einträge.";
+$a->strings["No contacts."] = "Keine Kontakte.";
+$a->strings["View Contacts"] = "Kontakte anzeigen";
+$a->strings["Personal Notes"] = "Persönliche Notizen";
+$a->strings["Poke/Prod"] = "Anstupsen";
+$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen";
+$a->strings["Recipient"] = "Empfänger";
+$a->strings["Choose what you wish to do to recipient"] = "Was willst du mit dem Empfänger machen:";
+$a->strings["Make this post private"] = "Diesen Beitrag privat machen";
+$a->strings["Global Directory"] = "Weltweites Verzeichnis";
+$a->strings["Find on this site"] = "Auf diesem Server suchen";
+$a->strings["Site Directory"] = "Verzeichnis";
+$a->strings["Gender: "] = "Geschlecht:";
+$a->strings["Gender:"] = "Geschlecht:";
+$a->strings["Status:"] = "Status:";
+$a->strings["Homepage:"] = "Homepage:";
+$a->strings["About:"] = "Über:";
+$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
+$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
+$a->strings["Time Conversion"] = "Zeitumrechnung";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
+$a->strings["UTC time: %s"] = "UTC Zeit: %s";
+$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
+$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
+$a->strings["Please select your timezone:"] = "Bitte wähle deine Zeitzone:";
+$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
+$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl.";
+$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird.";
+$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden";
+$a->strings["Upload File:"] = "Datei hochladen:";
+$a->strings["Select a profile:"] = "Profil auswählen:";
+$a->strings["Upload"] = "Hochladen";
+$a->strings["skip this step"] = "diesen Schritt überspringen";
+$a->strings["select a photo from your photo albums"] = "wähle ein Foto aus deinen Fotoalben";
+$a->strings["Crop Image"] = "Bild zurechtschneiden";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann.";
+$a->strings["Done Editing"] = "Bearbeitung abgeschlossen";
+$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen.";
+$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup";
+$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert.";
+$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden.";
+$a->strings["Your Friendica site database has been installed."] = "Die Datenbank deiner Friendicaseite wurde installiert.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\".";
+$a->strings["System check"] = "Systemtest";
+$a->strings["Check again"] = "Noch einmal testen";
+$a->strings["Database connection"] = "Datenbankverbindung";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit deiner Datenbank Kontakt aufnehmen können.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls du Fragen zu diesen Einstellungen haben solltest.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor du mit der Installation fortfährst.";
+$a->strings["Database Server Name"] = "Datenbank-Server";
+$a->strings["Database Login Name"] = "Datenbank-Nutzer";
+$a->strings["Database Login Password"] = "Datenbank-Passwort";
+$a->strings["Database Name"] = "Datenbank-Name";
+$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit du das Admin-Panel benutzen kannst.";
+$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone deiner Webseite";
+$a->strings["Site settings"] = "Server-Einstellungen";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden.";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Wenn du keine Kommandozeilen Version von PHP auf deinem Server installiert hast, kannst du keine Hintergrundprozesse via cron starten. Siehe <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
+$a->strings["PHP executable path"] = "Pfad zu PHP";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren.";
+$a->strings["Command line PHP"] = "Kommandozeilen-PHP";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)";
+$a->strings["Found PHP version: "] = "Gefundene PHP Version:";
+$a->strings["PHP cli binary"] = "PHP CLI Binary";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf deinem System hat \"register_argc_argv\" nicht aktiviert.";
+$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt.";
+$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an.";
+$a->strings["Generate encryption keys"] = "Schlüssel erzeugen";
+$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul";
+$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul";
+$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul";
+$a->strings["mysqli PHP module"] = "PHP: mysqli-Modul";
+$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul";
+$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert.";
+$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert.";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun.";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast.";
+$a->strings["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."] = "Nachdem du alles ausgefüllt hast, erhältst du einen Text, den du in eine Datei namens .htconfig.php in deinem Friendica-Wurzelverzeichnis kopieren musst.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest du in der Datei INSTALL.txt.";
+$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen.";
+$a->strings["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."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat.";
+$a->strings["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."] = "Hinweis: aus Sicherheitsgründen solltest du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers.";
+$a->strings["Url rewrite is working"] = "URL rewrite funktioniert";
+$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis deiner Friendica-Installation zu erzeugen.";
+$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen.";
+$a->strings["<h1>What next</h1>"] = "<h1>Wie geht es weiter?</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten.";
 $a->strings["Group created."] = "Gruppe erstellt.";
 $a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen.";
 $a->strings["Group not found."] = "Gruppe nicht gefunden.";
@@ -1022,188 +1144,16 @@ $a->strings["Group removed."] = "Gruppe entfernt.";
 $a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
 $a->strings["Group Editor"] = "Gruppeneditor";
 $a->strings["Members"] = "Mitglieder";
-$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen";
-$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:";
-$a->strings["Source input: "] = "Originaltext:";
-$a->strings["bb2html (raw HTML): "] = "bb2html (reines 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): "] = "Originaltext (Diaspora Format): ";
-$a->strings["diaspora2bb: "] = "diaspora2bb: ";
-$a->strings["Not available."] = "Nicht verfügbar.";
-$a->strings["Contact added"] = "Kontakt hinzugefügt";
-$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen.";
-$a->strings["System Notifications"] = "Systembenachrichtigungen";
-$a->strings["New Message"] = "Neue Nachricht";
-$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
-$a->strings["Messages"] = "Nachrichten";
-$a->strings["Do you really want to delete this message?"] = "Möchtest du wirklich diese Nachricht löschen?";
-$a->strings["Message deleted."] = "Nachricht gelöscht.";
-$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
-$a->strings["No messages."] = "Keine Nachrichten.";
-$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s";
-$a->strings["You and %s"] = "Du und %s";
-$a->strings["%s and You"] = "%s und du";
-$a->strings["Delete conversation"] = "Unterhaltung löschen";
-$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d Nachricht",
-       1 => "%d Nachrichten",
-);
-$a->strings["Message not available."] = "Nachricht nicht verfügbar.";
-$a->strings["Delete message"] = "Nachricht löschen";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst du auf der Profilseite des Absenders antworten.";
-$a->strings["Send Reply"] = "Antwort senden";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht";
-$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
-$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
-$a->strings["Time Conversion"] = "Zeitumrechnung";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
-$a->strings["UTC time: %s"] = "UTC Zeit: %s";
-$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
-$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
-$a->strings["Please select your timezone:"] = "Bitte wähle deine Zeitzone:";
-$a->strings["Save to Folder:"] = "In diesem Ordner speichern:";
-$a->strings["- select -"] = "- auswählen -";
-$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner.";
-$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit";
-$a->strings["Visible To"] = "Sichtbar für";
-$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)";
-$a->strings["No contacts."] = "Keine Kontakte.";
-$a->strings["View Contacts"] = "Kontakte anzeigen";
-$a->strings["People Search"] = "Personensuche";
-$a->strings["No matches"] = "Keine Übereinstimmungen";
-$a->strings["Upload New Photos"] = "Neue Fotos hochladen";
-$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar";
-$a->strings["Album not found."] = "Album nicht gefunden.";
-$a->strings["Delete Album"] = "Album löschen";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?";
-$a->strings["Delete Photo"] = "Foto löschen";
-$a->strings["Do you really want to delete this photo?"] = "Möchtest du wirklich dieses Foto löschen?";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt";
-$a->strings["a photo"] = "einem Foto";
-$a->strings["Image exceeds size limit of "] = "Die Bildgröße übersteigt das Limit von ";
-$a->strings["Image file is empty."] = "Bilddatei ist leer.";
-$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten.";
-$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
-$a->strings["No photos selected"] = "Keine Bilder ausgewählt";
-$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt.";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers.";
-$a->strings["Upload Photos"] = "Bilder hochladen";
-$a->strings["New album name: "] = "Name des neuen Albums: ";
-$a->strings["or existing album name: "] = "oder existierender Albumname: ";
-$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen";
-$a->strings["Permissions"] = "Berechtigungen";
-$a->strings["Private Photo"] = "Privates Foto";
-$a->strings["Public Photo"] = "Öffentliches Foto";
-$a->strings["Edit Album"] = "Album bearbeiten";
-$a->strings["Show Newest First"] = "Zeige neueste zuerst";
-$a->strings["Show Oldest First"] = "Zeige älteste zuerst";
-$a->strings["View Photo"] = "Foto betrachten";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein.";
-$a->strings["Photo not available"] = "Foto nicht verfügbar";
-$a->strings["View photo"] = "Fotos ansehen";
-$a->strings["Edit photo"] = "Foto bearbeiten";
-$a->strings["Use as profile photo"] = "Als Profilbild verwenden";
-$a->strings["View Full Size"] = "Betrachte Originalgröße";
-$a->strings["Tags: "] = "Tags: ";
-$a->strings["[Remove any tag]"] = "[Tag entfernen]";
-$a->strings["Rotate CW (right)"] = "Drehen US (rechts)";
-$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)";
-$a->strings["New album name"] = "Name des neuen Albums";
-$a->strings["Caption"] = "Bildunterschrift";
-$a->strings["Add a Tag"] = "Tag hinzufügen";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
-$a->strings["Private photo"] = "Privates Foto";
-$a->strings["Public photo"] = "Öffentliches Foto";
-$a->strings["Share"] = "Teilen";
-$a->strings["View Album"] = "Album betrachten";
-$a->strings["Recent Photos"] = "Neueste Fotos";
-$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt.";
-$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?";
-$a->strings["File exceeds size limit of %d"] = "Die Datei ist größer als das erlaubte Limit von %d";
-$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
-$a->strings["No videos selected"] = "Keine Videos  ausgewählt";
-$a->strings["View Video"] = "Video ansehen";
-$a->strings["Recent Videos"] = "Neueste Videos";
-$a->strings["Upload New Videos"] = "Neues Video hochladen";
-$a->strings["Poke/Prod"] = "Anstupsen";
-$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen";
-$a->strings["Recipient"] = "Empfänger";
-$a->strings["Choose what you wish to do to recipient"] = "Was willst du mit dem Empfänger machen:";
-$a->strings["Make this post private"] = "Diesen Beitrag privat machen";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
-$a->strings["Export account"] = "Account exportieren";
-$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."] = "Exportiere deine Accountinformationen und Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen.";
-$a->strings["Export all"] = "Alles exportieren";
-$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)"] = "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Fotos werden nicht exportiert).";
-$a->strings["Common Friends"] = "Gemeinsame Freunde";
-$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
-$a->strings["Image exceeds size limit of %d"] = "Bildgröße überschreitet das Limit von %d";
-$a->strings["Wall Photos"] = "Pinnwand-Bilder";
-$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl.";
-$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird.";
-$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden";
-$a->strings["Upload File:"] = "Datei hochladen:";
-$a->strings["Select a profile:"] = "Profil auswählen:";
-$a->strings["Upload"] = "Hochladen";
-$a->strings["skip this step"] = "diesen Schritt überspringen";
-$a->strings["select a photo from your photo albums"] = "wähle ein Foto aus deinen Fotoalben";
-$a->strings["Crop Image"] = "Bild zurechtschneiden";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann.";
-$a->strings["Done Editing"] = "Bearbeitung abgeschlossen";
-$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen.";
-$a->strings["Applications"] = "Anwendungen";
-$a->strings["No installed applications."] = "Keine Applikationen installiert.";
-$a->strings["Nothing new here"] = "Keine Neuigkeiten";
-$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
+$a->strings["No such group"] = "Es gibt keine solche Gruppe";
+$a->strings["Group is empty"] = "Gruppe ist leer";
+$a->strings["Group: "] = "Gruppe: ";
+$a->strings["View in context"] = "Im Zusammenhang betrachten";
+$a->strings["Account approved."] = "Konto freigegeben.";
+$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen";
+$a->strings["Please login."] = "Bitte melde dich an.";
 $a->strings["Profile Match"] = "Profilübereinstimmungen";
 $a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Standardprofil hinzu.";
 $a->strings["is interested in:"] = "ist interessiert an:";
-$a->strings["Tag removed"] = "Tag entfernt";
-$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen";
-$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: ";
-$a->strings["Remove"] = "Entfernen";
-$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
-$a->strings["l, F j"] = "l, F j";
-$a->strings["Edit event"] = "Veranstaltung bearbeiten";
-$a->strings["link to source"] = "Link zum Originalbeitrag";
-$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
-$a->strings["Previous"] = "Vorherige";
-$a->strings["hour:minute"] = "Stunde:Minute";
-$a->strings["Event details"] = "Veranstaltungsdetails";
-$a->strings["Format is %s %s. Starting date and Title are required."] = "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt.";
-$a->strings["Event Starts:"] = "Veranstaltungsbeginn:";
-$a->strings["Required"] = "Benötigt";
-$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant";
-$a->strings["Event Finishes:"] = "Veranstaltungsende:";
-$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen";
-$a->strings["Description:"] = "Beschreibung";
-$a->strings["Title:"] = "Titel:";
-$a->strings["Share this event"] = "Veranstaltung teilen";
-$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
-$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite";
-$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."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!";
-$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager";
-$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
-$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
-$a->strings["Add"] = "Hinzufügen";
-$a->strings["No entries."] = "Keine Einträge.";
-$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind";
-$a->strings["Files"] = "Dateien";
-$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
-$a->strings["Remove My Account"] = "Konto löschen";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
-$a->strings["Please enter your password for verification:"] = "Bitte gib dein Passwort zur Verifikation ein:";
-$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
-$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
-$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
 $a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden.";
 $a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen.";
 $a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden.";
@@ -1211,171 +1161,187 @@ $a->strings["This message was sent to you by %s, a member of the Friendica socia
 $a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen";
 $a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest.";
 $a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht.";
-$a->strings["{0} wants to be your friend"] = "{0} möchte mit dir in Kontakt treten";
-$a->strings["{0} sent you a message"] = "{0} schickte dir eine Nachricht";
-$a->strings["{0} requested registration"] = "{0} möchte sich registrieren";
-$a->strings["{0} commented %s's post"] = "{0} kommentierte einen Beitrag von %s";
-$a->strings["{0} liked %s's post"] = "{0} mag %ss Beitrag";
-$a->strings["{0} disliked %s's post"] = "{0} mag %ss Beitrag nicht";
-$a->strings["{0} is now friends with %s"] = "{0} ist jetzt mit %s befreundet";
-$a->strings["{0} posted"] = "{0} hat etwas veröffentlicht";
-$a->strings["{0} tagged %s's post with #%s"] = "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen";
-$a->strings["{0} mentioned you in a post"] = "{0} hat dich in einem Beitrag erwähnt";
-$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet.";
-$a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
-$a->strings["Invalid request identifier."] = "Invalid request identifier.";
-$a->strings["Discard"] = "Verwerfen";
-$a->strings["System"] = "System";
-$a->strings["Network"] = "Netzwerk";
-$a->strings["Introductions"] = "Kontaktanfragen";
-$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen";
-$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen";
-$a->strings["Notification type: "] = "Benachrichtigungstyp: ";
-$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
-$a->strings["suggested by %s"] = "vorgeschlagen von %s";
-$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden";
-$a->strings["if applicable"] = "falls anwendbar";
-$a->strings["Claims to be known to you: "] = "Behauptet dich zu kennen: ";
-$a->strings["yes"] = "ja";
-$a->strings["no"] = "nein";
-$a->strings["Approve as: "] = "Genehmigen als: ";
-$a->strings["Friend"] = "Freund";
-$a->strings["Sharer"] = "Teilenden";
-$a->strings["Fan/Admirer"] = "Fan/Verehrer";
-$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
-$a->strings["New Follower"] = "Neuer Bewunderer";
-$a->strings["No introductions."] = "Keine Kontaktanfragen.";
-$a->strings["Notifications"] = "Benachrichtigungen";
-$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag";
-$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht";
-$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
-$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
-$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
-$a->strings["No more network notifications."] = "Keine weiteren Netzwerk-Benachrichtigungen.";
-$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
-$a->strings["No more personal notifications."] = "Keine weiteren persönlichen Benachrichtigungen";
-$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
-$a->strings["No more home notifications."] = "Keine weiteren Pinnwand-Benachrichtigungen";
-$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen";
-$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht.";
-$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse.";
-$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite.";
-$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen.";
-$a->strings["%d message sent."] = array(
-       0 => "%d Nachricht gesendet.",
-       1 => "%d Nachrichten gesendet.",
-);
-$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen";
-$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."] = "Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen 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."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen du beitreten kannst.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen.";
-$a->strings["Send invitations"] = "Einladungen senden";
-$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com";
-$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die deine Kontoinformationen teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast.";
-$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: ";
-$a->strings["Welcome to %s"] = "Willkommen zu %s";
-$a->strings["Friends of %s"] = "Freunde von %s";
-$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen.";
-$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen";
-$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
-$a->strings["%d invitation available"] = array(
-       0 => "%d Einladung verfügbar",
-       1 => "%d Einladungen verfügbar",
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s";
+$a->strings["Mood"] = "Stimmung";
+$a->strings["Set your current mood and tell your friends"] = "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden";
+$a->strings["Search Results For:"] = "Suchergebnisse für:";
+$a->strings["add"] = "hinzufügen";
+$a->strings["Commented Order"] = "Neueste Kommentare";
+$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren";
+$a->strings["Posted Order"] = "Neueste Beiträge";
+$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren";
+$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um dich geht";
+$a->strings["New"] = "Neue";
+$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum";
+$a->strings["Shared Links"] = "Geteilte Links";
+$a->strings["Interesting Links"] = "Interessante Links";
+$a->strings["Starred"] = "Markierte";
+$a->strings["Favourite Posts"] = "Favorisierte Beiträge";
+$a->strings["Warning: This group contains %s member from an insecure network."] = array(
+       0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk.",
+       1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken.",
 );
-$a->strings["Find People"] = "Leute finden";
-$a->strings["Enter name or interest"] = "Name oder Interessen eingeben";
-$a->strings["Connect/Follow"] = "Verbinden/Folgen";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln";
-$a->strings["Random Profile"] = "Zufälliges Profil";
-$a->strings["Networks"] = "Netzwerke";
-$a->strings["All Networks"] = "Alle Netzwerke";
+$a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten.";
+$a->strings["Contact: "] = "Kontakt: ";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen.";
+$a->strings["Invalid contact."] = "Ungültiger Kontakt.";
+$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
+$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
+$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button deines Browsers <strong>jetzt</strong>, wenn du dir unsicher bist, was du tun willst.";
+$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
+$a->strings["Account Nickname"] = "Konto-Spitzname";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
+$a->strings["Account URL"] = "Konto-URL";
+$a->strings["Friend Request URL"] = "URL für Freundschaftsanfragen";
+$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen";
+$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["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
+$a->strings["Your profile page"] = "Deine Profilseite";
+$a->strings["Your contacts"] = "Deine Kontakte";
+$a->strings["Your photos"] = "Deine Fotos";
+$a->strings["Your events"] = "Deine Ereignisse";
+$a->strings["Personal notes"] = "Persönliche Notizen";
+$a->strings["Your personal photos"] = "Deine privaten Fotos";
+$a->strings["Community Pages"] = "Foren";
+$a->strings["Community Profiles"] = "Community-Profile";
+$a->strings["Last users"] = "Letzte Nutzer";
+$a->strings["Last likes"] = "Zuletzt gemocht";
+$a->strings["event"] = "Veranstaltung";
+$a->strings["Last photos"] = "Letzte Fotos";
+$a->strings["Find Friends"] = "Freunde finden";
+$a->strings["Local Directory"] = "Lokales Verzeichnis";
+$a->strings["Similar Interests"] = "Ähnliche Interessen";
+$a->strings["Invite Friends"] = "Freunde einladen";
+$a->strings["Earth Layers"] = "Earth Layers";
+$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer";
+$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer";
+$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer";
+$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere";
+$a->strings["Connect Services"] = "Verbinde Dienste";
+$a->strings["don't show"] = "nicht zeigen";
+$a->strings["show"] = "zeigen";
+$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen";
+$a->strings["Theme settings"] = "Themeneinstellungen";
+$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen";
+$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen";
+$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen";
+$a->strings["Set color scheme"] = "Wähle Farbschema";
+$a->strings["Set zoomfactor for Earth Layer"] = "Zoomfaktor der Earth Layer";
+$a->strings["Set style"] = "Stiel auswählen";
+$a->strings["Set colour scheme"] = "Farbschema wählen";
+$a->strings["Alignment"] = "Ausrichtung";
+$a->strings["Left"] = "Links";
+$a->strings["Center"] = "Mitte";
+$a->strings["Color scheme"] = "Farbschema";
+$a->strings["Posts font size"] = "Schriftgröße in Beiträgen";
+$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern";
+$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)";
+$a->strings["Set theme width"] = "Theme Breite festlegen";
+$a->strings["Delete this item?"] = "Diesen Beitrag löschen?";
+$a->strings["show fewer"] = "weniger anzeigen";
+$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen.";
+$a->strings["Update Error at %s"] = "Updatefehler bei %s";
+$a->strings["Create a New Account"] = "Neues Konto erstellen";
+$a->strings["Logout"] = "Abmelden";
+$a->strings["Login"] = "Anmeldung";
+$a->strings["Nickname or Email address: "] = "Spitzname oder E-Mail-Adresse: ";
+$a->strings["Password: "] = "Passwort: ";
+$a->strings["Remember me"] = "Anmeldedaten merken";
+$a->strings["Or login using OpenID: "] = "Oder melde dich mit deiner OpenID an: ";
+$a->strings["Forgot your password?"] = "Passwort vergessen?";
+$a->strings["Website Terms of Service"] = "Website Nutzungsbedingungen";
+$a->strings["terms of service"] = "Nutzungsbedingungen";
+$a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung";
+$a->strings["privacy policy"] = "Datenschutzerklärung";
+$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden.";
+$a->strings["Edit profile"] = "Profil bearbeiten";
+$a->strings["Message"] = "Nachricht";
+$a->strings["Profiles"] = "Profile";
+$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren";
+$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r";
+$a->strings["F d"] = "d. F";
+$a->strings["[today]"] = "[heute]";
+$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen";
+$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:";
+$a->strings["[No description]"] = "[keine Beschreibung]";
+$a->strings["Event Reminders"] = "Veranstaltungserinnerungen";
+$a->strings["Events this week:"] = "Veranstaltungen diese Woche";
+$a->strings["Status"] = "Status";
+$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
+$a->strings["Profile Details"] = "Profildetails";
+$a->strings["Videos"] = "Videos";
+$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
+$a->strings["Only You Can See This"] = "Nur du kannst das sehen";
+$a->strings["General Features"] = "Allgemeine Features";
+$a->strings["Multiple Profiles"] = "Mehrere Profile";
+$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen";
+$a->strings["Post Composition Features"] = "Beitragserstellung Features";
+$a->strings["Richtext Editor"] = "Web-Editor";
+$a->strings["Enable richtext editor"] = "Den Web-Editor für neue Beiträge aktivieren";
+$a->strings["Post Preview"] = "Beitragsvorschau";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben.";
+$a->strings["Auto-mention Forums"] = "Foren automatisch erwähnen";
+$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde.";
+$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste";
+$a->strings["Search by Date"] = "Archiv";
+$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren";
+$a->strings["Group Filter"] = "Gruppen Filter";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren.";
+$a->strings["Network Filter"] = "Netzwerk Filter";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren.";
+$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung.";
+$a->strings["Network Tabs"] = "Netzwerk Reiter";
+$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast";
+$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden";
+$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links";
+$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält";
+$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare";
+$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen";
+$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen";
+$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren";
+$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren.";
+$a->strings["Tagging"] = "Tagging";
+$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen.";
+$a->strings["Post Categories"] = "Beitragskategorien";
+$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen";
 $a->strings["Saved Folders"] = "Gespeicherte Ordner";
-$a->strings["Everything"] = "Alles";
-$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["There is no conversation with this id."] = "Es existiert keine Unterhaltung mit dieser ID.";
-$a->strings["view full size"] = "Volle Größe anzeigen";
-$a->strings["Starts:"] = "Beginnt:";
-$a->strings["Finishes:"] = "Endet:";
-$a->strings["(no subject)"] = "(kein Betreff)";
-$a->strings["noreply"] = "noreply";
-$a->strings["An invitation is required."] = "Du benötigst eine Einladung.";
-$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden.";
-$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast.";
-$a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
-$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein.";
-$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen.";
-$a->strings["Name too short."] = "Der Name ist zu kurz.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein.";
-$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt.";
-$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse.";
-$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen.";
-$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden.";
-$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
-$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
-$a->strings["Friends"] = "Freunde";
-$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s";
-$a->strings["poked"] = "stupste";
-$a->strings["post/item"] = "Nachricht/Beitrag";
-$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert";
-$a->strings["remove"] = "löschen";
-$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge";
-$a->strings["Follow Thread"] = "Folge der Unterhaltung";
-$a->strings["View Status"] = "Pinnwand anschauen";
-$a->strings["View Profile"] = "Profil anschauen";
-$a->strings["View Photos"] = "Bilder anschauen";
-$a->strings["Network Posts"] = "Netzwerkbeiträge";
-$a->strings["Edit Contact"] = "Kontakt bearbeiten";
-$a->strings["Send PM"] = "Private Nachricht senden";
-$a->strings["Poke"] = "Anstupsen";
-$a->strings["%s likes this."] = "%s mag das.";
-$a->strings["%s doesn't like this."] = "%s mag das nicht.";
-$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d Personen</span> mögen das";
-$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d Personen</span> mögen das nicht";
-$a->strings["and"] = "und";
-$a->strings[", and %d other people"] = " und %d andere";
-$a->strings["%s like this."] = "%s mögen das.";
-$a->strings["%s don't like this."] = "%s mögen das nicht.";
-$a->strings["Visible to <strong>everybody</strong>"] = "Für <strong>jedermann</strong> sichtbar";
-$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:";
-$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:";
-$a->strings["Tag term:"] = "Tag:";
-$a->strings["Where are you right now?"] = "Wo hältst du dich jetzt gerade auf?";
-$a->strings["Delete item(s)?"] = "Einträge löschen?";
-$a->strings["Post to Email"] = "An E-Mail senden";
-$a->strings["permissions"] = "Zugriffsrechte";
-$a->strings["Post to Groups"] = "Poste an Gruppe";
-$a->strings["Post to Contacts"] = "Poste an Kontakte";
-$a->strings["Private post"] = "Privater Beitrag";
+$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren";
+$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'";
+$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'";
+$a->strings["Star Posts"] = "Beiträge Markieren";
+$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren";
 $a->strings["Logged out."] = "Abgemeldet.";
-$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?";
-$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen.";
-$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!";
-$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten";
-$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d Kontakt nicht importiert",
-       1 => "%d Kontakte nicht importiert",
-);
-$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast.";
+$a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
+$a->strings["Starts:"] = "Beginnt:";
+$a->strings["Finishes:"] = "Endet:";
+$a->strings["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "Geburtstag:";
+$a->strings["Age:"] = "Alter:";
+$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
+$a->strings["Tags:"] = "Tags";
+$a->strings["Religion:"] = "Religion:";
+$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:";
+$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:";
+$a->strings["Musical interests:"] = "Musikalische Interessen:";
+$a->strings["Books, literature:"] = "Literatur/Bücher:";
+$a->strings["Television:"] = "Fernsehen:";
+$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:";
+$a->strings["Love/Romance:"] = "Liebesleben:";
+$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:";
+$a->strings["School/education:"] = "Schule/Ausbildung:";
+$a->strings["[no subject]"] = "[kein Betreff]";
+$a->strings[" on Last.fm"] = " bei Last.fm";
 $a->strings["newer"] = "neuer";
 $a->strings["older"] = "älter";
 $a->strings["prev"] = "vorige";
@@ -1388,6 +1354,7 @@ $a->strings["%d Contact"] = array(
        1 => "%d Kontakte",
 );
 $a->strings["poke"] = "anstupsen";
+$a->strings["poked"] = "stupste";
 $a->strings["ping"] = "anpingen";
 $a->strings["pinged"] = "pingte";
 $a->strings["prod"] = "knuffen";
@@ -1415,234 +1382,61 @@ $a->strings["anxious"] = "unruhig";
 $a->strings["cranky"] = "schrullig";
 $a->strings["disturbed"] = "verstört";
 $a->strings["frustrated"] = "frustriert";
-$a->strings["motivated"] = "motiviert";
-$a->strings["relaxed"] = "entspannt";
-$a->strings["surprised"] = "überrascht";
-$a->strings["Monday"] = "Montag";
-$a->strings["Tuesday"] = "Dienstag";
-$a->strings["Wednesday"] = "Mittwoch";
-$a->strings["Thursday"] = "Donnerstag";
-$a->strings["Friday"] = "Freitag";
-$a->strings["Saturday"] = "Samstag";
-$a->strings["Sunday"] = "Sonntag";
-$a->strings["January"] = "Januar";
-$a->strings["February"] = "Februar";
-$a->strings["March"] = "März";
-$a->strings["April"] = "April";
-$a->strings["May"] = "Mai";
-$a->strings["June"] = "Juni";
-$a->strings["July"] = "Juli";
-$a->strings["August"] = "August";
-$a->strings["September"] = "September";
-$a->strings["October"] = "Oktober";
-$a->strings["November"] = "November";
-$a->strings["December"] = "Dezember";
-$a->strings["bytes"] = "Byte";
-$a->strings["Click to open/close"] = "Zum öffnen/schließen klicken";
-$a->strings["Select an alternate language"] = "Alternative Sprache auswählen";
-$a->strings["activity"] = "Aktivität";
-$a->strings["post"] = "Beitrag";
-$a->strings["Item filed"] = "Beitrag abgelegt";
-$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung";
-$a->strings["Thank You,"] = "Danke,";
-$a->strings["%s Administrator"] = "der Administrator von %s";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Nachricht erhalten von %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat dir eine neue private Nachricht auf %2\$s geschickt.";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte dir %2\$s.";
-$a->strings["a private message"] = "eine private Nachricht";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um deine privaten Nachrichten anzusehen und/oder zu beantworten.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]a %3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$ss %4\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]deinen %3\$s[/url]";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica-Meldung] Kommentar zum Beitrag #%1\$d von %2\$s";
-$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem du folgst.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren.";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica-Meldung] %s hat auf deine Pinnwand geschrieben";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb auf %2\$s auf deine Pinnwand";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]deiner Pinnwand[/url] gepostet";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica-Meldung] %s hat dich erwähnt";
-$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte dich auf %2\$s";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]erwähnte dich[/url].";
-$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt";
-$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s hat einen neuen Beitrag auf %2\$s geteilt";
-$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]hat einen Beitrag geteilt[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica-Meldung] %1\$s hat dich angestupst";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat dich auf %2\$s angestupst";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat dich angestupst[/url].";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica-Meldung] %s hat deinen Beitrag getaggt";
-$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte deinen Beitrag auf %2\$s";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s erwähnte [url=%2\$s]Deinen Beitrag[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica-Meldung] Kontaktanfrage erhalten";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten.";
-$a->strings["You may visit their profile at %s"] = "Hier kannst du das Profil betrachten: %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen.";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Freunde-Vorschlag von '%1\$s' auf %2\$s erhalten";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Freunde-Vorschlag[/url] %2\$s von %3\$s erhalten.";
-$a->strings["Name:"] = "Name:";
-$a->strings["Photo:"] = "Foto:";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen.";
-$a->strings[" on Last.fm"] = " bei 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."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
-$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
-$a->strings["Everybody"] = "Alle Kontakte";
-$a->strings["edit"] = "bearbeiten";
-$a->strings["Edit group"] = "Gruppe bearbeiten";
-$a->strings["Create a new group"] = "Neue Gruppe erstellen";
-$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
-$a->strings["Connect URL missing."] = "Connect-URL fehlt";
-$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden.";
-$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen.";
-$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden.";
-$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden.";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen.";
-$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können.";
-$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
-$a->strings["following"] = "folgen";
-$a->strings["[no subject]"] = "[kein Betreff]";
-$a->strings["End this session"] = "Diese Sitzung beenden";
-$a->strings["Sign in"] = "Anmelden";
-$a->strings["Home Page"] = "Homepage";
-$a->strings["Create an account"] = "Nutzerkonto erstellen";
-$a->strings["Help and documentation"] = "Hilfe und Dokumentation";
-$a->strings["Apps"] = "Apps";
-$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele";
-$a->strings["Search site content"] = "Inhalt der Seite durchsuchen";
-$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite";
-$a->strings["Directory"] = "Verzeichnis";
-$a->strings["People directory"] = "Nutzerverzeichnis";
-$a->strings["Information"] = "Information";
-$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz";
-$a->strings["Conversations from your friends"] = "Unterhaltungen deiner Kontakte";
-$a->strings["Network Reset"] = "Netzwerk zurücksetzen";
-$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden";
-$a->strings["Friend Requests"] = "Kontaktanfragen";
-$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen";
-$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen";
-$a->strings["Private mail"] = "Private E-Mail";
-$a->strings["Inbox"] = "Eingang";
-$a->strings["Outbox"] = "Ausgang";
-$a->strings["Manage"] = "Verwalten";
-$a->strings["Manage other pages"] = "Andere Seiten verwalten";
-$a->strings["Account settings"] = "Kontoeinstellungen";
-$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren";
-$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/editieren";
-$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration";
-$a->strings["Navigation"] = "Navigation";
-$a->strings["Site map"] = "Sitemap";
-$a->strings["j F, Y"] = "j F, Y";
-$a->strings["j F"] = "j F";
-$a->strings["Birthday:"] = "Geburtstag:";
-$a->strings["Age:"] = "Alter:";
-$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
-$a->strings["Tags:"] = "Tags";
-$a->strings["Religion:"] = "Religion:";
-$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:";
-$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:";
-$a->strings["Musical interests:"] = "Musikalische Interessen:";
-$a->strings["Books, literature:"] = "Literatur/Bücher:";
-$a->strings["Television:"] = "Fernsehen:";
-$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:";
-$a->strings["Love/Romance:"] = "Liebesleben:";
-$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:";
-$a->strings["School/education:"] = "Schule/Ausbildung:";
-$a->strings["Image/photo"] = "Bild/Foto";
-$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "<span><a href=\"%s\" target=\"_blank\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"_blank\">Beitrag</a>";
-$a->strings["<span><b>"] = "<span><b>";
-$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
-$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
-$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
-$a->strings["Block immediately"] = "Sofort blockieren";
-$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
-$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung";
-$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos";
-$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen";
-$a->strings["Weekly"] = "Wöchentlich";
-$a->strings["Monthly"] = "Monatlich";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Zot!"] = "Zott";
-$a->strings["LinkedIn"] = "LinkedIn";
-$a->strings["XMPP/IM"] = "XMPP/Chat";
-$a->strings["MySpace"] = "MySpace";
-$a->strings["Google+"] = "Google+";
-$a->strings["pump.io"] = "pump.io";
-$a->strings["Twitter"] = "Twitter";
-$a->strings["Diaspora Connector"] = "Diaspora";
-$a->strings["Statusnet"] = "StatusNet";
-$a->strings["Miscellaneous"] = "Verschiedenes";
-$a->strings["year"] = "Jahr";
-$a->strings["month"] = "Monat";
-$a->strings["day"] = "Tag";
-$a->strings["never"] = "nie";
-$a->strings["less than a second ago"] = "vor weniger als einer Sekunde";
-$a->strings["years"] = "Jahre";
-$a->strings["months"] = "Monate";
-$a->strings["week"] = "Woche";
-$a->strings["weeks"] = "Wochen";
-$a->strings["days"] = "Tage";
-$a->strings["hour"] = "Stunde";
-$a->strings["hours"] = "Stunden";
-$a->strings["minute"] = "Minute";
-$a->strings["minutes"] = "Minuten";
-$a->strings["second"] = "Sekunde";
-$a->strings["seconds"] = "Sekunden";
-$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her";
-$a->strings["%s's birthday"] = "%ss Geburtstag";
-$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
-$a->strings["General Features"] = "Allgemeine Features";
-$a->strings["Multiple Profiles"] = "Mehrere Profile";
-$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen";
-$a->strings["Post Composition Features"] = "Beitragserstellung Features";
-$a->strings["Richtext Editor"] = "Web-Editor";
-$a->strings["Enable richtext editor"] = "Den Web-Editor für neue Beiträge aktivieren";
-$a->strings["Post Preview"] = "Beitragsvorschau";
-$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben.";
-$a->strings["Auto-mention Forums"] = "Foren automatisch erwähnen";
-$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde.";
-$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste";
-$a->strings["Search by Date"] = "Archiv";
-$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren";
-$a->strings["Group Filter"] = "Gruppen Filter";
-$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren.";
-$a->strings["Network Filter"] = "Netzwerk Filter";
-$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren.";
-$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung.";
-$a->strings["Network Tabs"] = "Netzwerk Reiter";
-$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast";
-$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden";
-$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links";
-$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält";
-$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare";
-$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen";
-$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen";
-$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren";
-$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren.";
-$a->strings["Tagging"] = "Tagging";
-$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen.";
-$a->strings["Post Categories"] = "Beitragskategorien";
-$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen";
-$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren";
-$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'";
-$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'";
-$a->strings["Star Posts"] = "Beiträge Markieren";
-$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren";
-$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
-$a->strings["Attachments:"] = "Anhänge:";
-$a->strings["Visible to everybody"] = "Für jeden sichtbar";
+$a->strings["motivated"] = "motiviert";
+$a->strings["relaxed"] = "entspannt";
+$a->strings["surprised"] = "überrascht";
+$a->strings["Monday"] = "Montag";
+$a->strings["Tuesday"] = "Dienstag";
+$a->strings["Wednesday"] = "Mittwoch";
+$a->strings["Thursday"] = "Donnerstag";
+$a->strings["Friday"] = "Freitag";
+$a->strings["Saturday"] = "Samstag";
+$a->strings["Sunday"] = "Sonntag";
+$a->strings["January"] = "Januar";
+$a->strings["February"] = "Februar";
+$a->strings["March"] = "März";
+$a->strings["April"] = "April";
+$a->strings["May"] = "Mai";
+$a->strings["June"] = "Juni";
+$a->strings["July"] = "Juli";
+$a->strings["August"] = "August";
+$a->strings["September"] = "September";
+$a->strings["October"] = "Oktober";
+$a->strings["November"] = "November";
+$a->strings["December"] = "Dezember";
+$a->strings["bytes"] = "Byte";
+$a->strings["Click to open/close"] = "Zum öffnen/schließen klicken";
+$a->strings["default"] = "Standard";
+$a->strings["Select an alternate language"] = "Alternative Sprache auswählen";
+$a->strings["activity"] = "Aktivität";
+$a->strings["post"] = "Beitrag";
+$a->strings["Item filed"] = "Beitrag abgelegt";
+$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["There is no conversation with this id."] = "Es existiert keine Unterhaltung mit dieser ID.";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
+$a->strings["%s's birthday"] = "%ss Geburtstag";
+$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
 $a->strings["A new person is sharing with you at "] = "Eine neue Person teilt mit dir auf ";
 $a->strings["You have a new follower at "] = "Du hast einen neuen Kontakt auf ";
 $a->strings["Do you really want to delete this item?"] = "Möchtest du wirklich dieses Item löschen?";
 $a->strings["Archives"] = "Archiv";
-$a->strings["Embedded content"] = "Eingebetteter Inhalt";
-$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
+$a->strings["(no subject)"] = "(kein Betreff)";
+$a->strings["noreply"] = "noreply";
+$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
+$a->strings["Attachments:"] = "Anhänge:";
+$a->strings["Connect URL missing."] = "Connect-URL fehlt";
+$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden.";
+$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen.";
+$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden.";
+$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen.";
+$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können.";
+$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
+$a->strings["following"] = "folgen";
 $a->strings["Welcome "] = "Willkommen ";
 $a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
 $a->strings["Welcome back "] = "Willkommen zurück ";
@@ -1683,6 +1477,7 @@ $a->strings["Infatuated"] = "verliebt";
 $a->strings["Dating"] = "Dating";
 $a->strings["Unfaithful"] = "Untreu";
 $a->strings["Sex Addict"] = "Sexbesessen";
+$a->strings["Friends"] = "Freunde";
 $a->strings["Friends/Benefits"] = "Freunde/Zuwendungen";
 $a->strings["Casual"] = "Casual";
 $a->strings["Engaged"] = "Verlobt";
@@ -1704,6 +1499,208 @@ $a->strings["Uncertain"] = "Unsicher";
 $a->strings["It's complicated"] = "Ist kompliziert";
 $a->strings["Don't care"] = "Ist mir nicht wichtig";
 $a->strings["Ask me"] = "Frag mich";
+$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?";
+$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen.";
+$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!";
+$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten";
+$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d Kontakt nicht importiert",
+       1 => "%d Kontakte nicht importiert",
+);
+$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden";
+$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["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s";
+$a->strings["post/item"] = "Nachricht/Beitrag";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert";
+$a->strings["remove"] = "löschen";
+$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge";
+$a->strings["Follow Thread"] = "Folge der Unterhaltung";
+$a->strings["View Status"] = "Pinnwand anschauen";
+$a->strings["View Profile"] = "Profil anschauen";
+$a->strings["View Photos"] = "Bilder anschauen";
+$a->strings["Network Posts"] = "Netzwerkbeiträge";
+$a->strings["Edit Contact"] = "Kontakt bearbeiten";
+$a->strings["Send PM"] = "Private Nachricht senden";
+$a->strings["Poke"] = "Anstupsen";
+$a->strings["%s likes this."] = "%s mag das.";
+$a->strings["%s doesn't like this."] = "%s mag das nicht.";
+$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d Personen</span> mögen das";
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d Personen</span> mögen das nicht";
+$a->strings["and"] = "und";
+$a->strings[", and %d other people"] = " und %d andere";
+$a->strings["%s like this."] = "%s mögen das.";
+$a->strings["%s don't like this."] = "%s mögen das nicht.";
+$a->strings["Visible to <strong>everybody</strong>"] = "Für <strong>jedermann</strong> sichtbar";
+$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:";
+$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:";
+$a->strings["Tag term:"] = "Tag:";
+$a->strings["Where are you right now?"] = "Wo hältst du dich jetzt gerade auf?";
+$a->strings["Delete item(s)?"] = "Einträge löschen?";
+$a->strings["Post to Email"] = "An E-Mail senden";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist.";
+$a->strings["permissions"] = "Zugriffsrechte";
+$a->strings["Post to Groups"] = "Poste an Gruppe";
+$a->strings["Post to Contacts"] = "Poste an Kontakte";
+$a->strings["Private post"] = "Privater Beitrag";
+$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen";
+$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
+$a->strings["%d invitation available"] = array(
+       0 => "%d Einladung verfügbar",
+       1 => "%d Einladungen verfügbar",
+);
+$a->strings["Find People"] = "Leute finden";
+$a->strings["Enter name or interest"] = "Name oder Interessen eingeben";
+$a->strings["Connect/Follow"] = "Verbinden/Folgen";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln";
+$a->strings["Random Profile"] = "Zufälliges Profil";
+$a->strings["Networks"] = "Netzwerke";
+$a->strings["All Networks"] = "Alle Netzwerke";
+$a->strings["Everything"] = "Alles";
+$a->strings["Categories"] = "Kategorien";
+$a->strings["End this session"] = "Diese Sitzung beenden";
+$a->strings["Sign in"] = "Anmelden";
+$a->strings["Home Page"] = "Homepage";
+$a->strings["Create an account"] = "Nutzerkonto erstellen";
+$a->strings["Help and documentation"] = "Hilfe und Dokumentation";
+$a->strings["Apps"] = "Apps";
+$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele";
+$a->strings["Search site content"] = "Inhalt der Seite durchsuchen";
+$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite";
+$a->strings["Directory"] = "Verzeichnis";
+$a->strings["People directory"] = "Nutzerverzeichnis";
+$a->strings["Information"] = "Information";
+$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz";
+$a->strings["Conversations from your friends"] = "Unterhaltungen deiner Kontakte";
+$a->strings["Network Reset"] = "Netzwerk zurücksetzen";
+$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden";
+$a->strings["Friend Requests"] = "Kontaktanfragen";
+$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen";
+$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen";
+$a->strings["Private mail"] = "Private E-Mail";
+$a->strings["Inbox"] = "Eingang";
+$a->strings["Outbox"] = "Ausgang";
+$a->strings["Manage"] = "Verwalten";
+$a->strings["Manage other pages"] = "Andere Seiten verwalten";
+$a->strings["Account settings"] = "Kontoeinstellungen";
+$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren";
+$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/editieren";
+$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration";
+$a->strings["Navigation"] = "Navigation";
+$a->strings["Site map"] = "Sitemap";
+$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
+$a->strings["Block immediately"] = "Sofort blockieren";
+$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
+$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung";
+$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos";
+$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen";
+$a->strings["Weekly"] = "Wöchentlich";
+$a->strings["Monthly"] = "Monatlich";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Zot!"] = "Zott";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/Chat";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "Google+";
+$a->strings["pump.io"] = "pump.io";
+$a->strings["Twitter"] = "Twitter";
+$a->strings["Diaspora Connector"] = "Diaspora";
+$a->strings["Statusnet"] = "StatusNet";
+$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung";
+$a->strings["Thank You,"] = "Danke,";
+$a->strings["%s Administrator"] = "der Administrator von %s";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Nachricht erhalten von %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat dir eine neue private Nachricht auf %2\$s geschickt.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte dir %2\$s.";
+$a->strings["a private message"] = "eine private Nachricht";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um deine privaten Nachrichten anzusehen und/oder zu beantworten.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]a %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$ss %4\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]deinen %3\$s[/url]";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica-Meldung] Kommentar zum Beitrag #%1\$d von %2\$s";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem du folgst.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren.";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica-Meldung] %s hat auf deine Pinnwand geschrieben";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb auf %2\$s auf deine Pinnwand";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]deiner Pinnwand[/url] gepostet";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica-Meldung] %s hat dich erwähnt";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte dich auf %2\$s";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]erwähnte dich[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt";
+$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s hat einen neuen Beitrag auf %2\$s geteilt";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]hat einen Beitrag geteilt[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica-Meldung] %1\$s hat dich angestupst";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat dich auf %2\$s angestupst";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat dich angestupst[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica-Meldung] %s hat deinen Beitrag getaggt";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte deinen Beitrag auf %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s erwähnte [url=%2\$s]Deinen Beitrag[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica-Meldung] Kontaktanfrage erhalten";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten.";
+$a->strings["You may visit their profile at %s"] = "Hier kannst du das Profil betrachten: %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen.";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Freunde-Vorschlag von '%1\$s' auf %2\$s erhalten";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Freunde-Vorschlag[/url] %2\$s von %3\$s erhalten.";
+$a->strings["Name:"] = "Name:";
+$a->strings["Photo:"] = "Foto:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen.";
+$a->strings["An invitation is required."] = "Du benötigst eine Einladung.";
+$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden.";
+$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL";
+$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein.";
+$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen.";
+$a->strings["Name too short."] = "Der Name ist zu kurz.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein.";
+$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt.";
+$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse.";
+$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen.";
+$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden.";
+$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
+$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
+$a->strings["Visible to everybody"] = "Für jeden sichtbar";
+$a->strings["Image/photo"] = "Bild/Foto";
+$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "<span><a href=\"%s\" target=\"_blank\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"_blank\">Beitrag</a>";
+$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
+$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
+$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
+$a->strings["Embedded content"] = "Eingebetteter Inhalt";
+$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
+$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."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
+$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
+$a->strings["Everybody"] = "Alle Kontakte";
+$a->strings["edit"] = "bearbeiten";
+$a->strings["Edit group"] = "Gruppe bearbeiten";
+$a->strings["Create a new group"] = "Neue Gruppe erstellen";
+$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
 $a->strings["stopped following"] = "wird nicht mehr gefolgt";
 $a->strings["Drop Contact"] = "Kontakt löschen";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
+$a->strings["Miscellaneous"] = "Verschiedenes";
+$a->strings["year"] = "Jahr";
+$a->strings["month"] = "Monat";
+$a->strings["day"] = "Tag";
+$a->strings["never"] = "nie";
+$a->strings["less than a second ago"] = "vor weniger als einer Sekunde";
+$a->strings["years"] = "Jahre";
+$a->strings["months"] = "Monate";
+$a->strings["week"] = "Woche";
+$a->strings["weeks"] = "Wochen";
+$a->strings["days"] = "Tage";
+$a->strings["hour"] = "Stunde";
+$a->strings["hours"] = "Stunden";
+$a->strings["minute"] = "Minute";
+$a->strings["minutes"] = "Minuten";
+$a->strings["second"] = "Sekunde";
+$a->strings["seconds"] = "Sekunden";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her";
+$a->strings["view full size"] = "Volle Größe anzeigen";
index 59d15830a18cb95069b9e14c980f3b459f4e7795..22d339fab8f822a4e6a4c67e1f60c23e9f4a470b 100644 (file)
@@ -7,14 +7,15 @@
 # ltriay <zapimax38@free.fr>, 2013
 # Marquis_de_Carabas <olivier@free-beer.ch>, 2012
 # Olivier <olivier+transifex@migeot.org>, 2011-2012
-# Tubuntu, 2013-2014
+# tomamplius <thomas@lgy.fr>, 2014
+# Tubuntu <tubuntu@testimonium.be>, 2013-2014
 msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-12-31 18:07+0100\n"
-"PO-Revision-Date: 2014-01-08 11:49+0000\n"
-"Last-Translator: Tubuntu\n"
+"POT-Creation-Date: 2014-05-16 07:51+0200\n"
+"PO-Revision-Date: 2014-05-16 19:00+0000\n"
+"Last-Translator: Tubuntu <tubuntu@testimonium.be>\n"
 "Language-Team: French (http://www.transifex.com/projects/p/friendica/language/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -27,24 +28,25 @@ msgid "This entry was edited"
 msgstr ""
 
 #: ../../object/Item.php:113 ../../mod/content.php:619
-#: ../../mod/photos.php:1351
+#: ../../mod/photos.php:1355
 msgid "Private Message"
 msgstr "Message privé"
 
 #: ../../object/Item.php:117 ../../mod/editpost.php:109
-#: ../../mod/content.php:727 ../../mod/settings.php:663
+#: ../../mod/content.php:727 ../../mod/settings.php:671
 msgid "Edit"
 msgstr "Éditer"
 
 #: ../../object/Item.php:126 ../../mod/content.php:437
-#: ../../mod/content.php:739 ../../include/conversation.php:611
+#: ../../mod/content.php:739 ../../mod/photos.php:1649
+#: ../../include/conversation.php:612
 msgid "Select"
 msgstr "Sélectionner"
 
-#: ../../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
+#: ../../object/Item.php:127 ../../mod/admin.php:910 ../../mod/content.php:438
+#: ../../mod/content.php:740 ../../mod/contacts.php:703
+#: ../../mod/settings.php:672 ../../mod/group.php:171
+#: ../../mod/photos.php:1650 ../../include/conversation.php:613
 msgid "Delete"
 msgstr "Supprimer"
 
@@ -73,7 +75,7 @@ msgid "add tag"
 msgstr "ajouter un tag"
 
 #: ../../object/Item.php:213 ../../mod/content.php:683
-#: ../../mod/photos.php:1529
+#: ../../mod/photos.php:1538
 msgid "I like this (toggle)"
 msgstr "J'aime (bascule)"
 
@@ -82,7 +84,7 @@ msgid "like"
 msgstr "aime"
 
 #: ../../object/Item.php:214 ../../mod/content.php:684
-#: ../../mod/photos.php:1530
+#: ../../mod/photos.php:1539
 msgid "I don't like this (toggle)"
 msgstr "Je n'aime pas (bascule)"
 
@@ -98,199 +100,200 @@ msgstr "Partager"
 msgid "share"
 msgstr "partager"
 
-#: ../../object/Item.php:278 ../../include/conversation.php:663
+#: ../../object/Item.php:298 ../../include/conversation.php:665
 msgid "Categories:"
 msgstr "Catégories:"
 
-#: ../../object/Item.php:279 ../../include/conversation.php:664
+#: ../../object/Item.php:299 ../../include/conversation.php:666
 msgid "Filed under:"
 msgstr "Rangé sous:"
 
-#: ../../object/Item.php:287 ../../object/Item.php:288
+#: ../../object/Item.php:307 ../../object/Item.php:308
 #: ../../mod/content.php:471 ../../mod/content.php:851
-#: ../../mod/content.php:852 ../../include/conversation.php:651
+#: ../../mod/content.php:852 ../../include/conversation.php:653
 #, php-format
 msgid "View %s's profile @ %s"
 msgstr "Voir le profil de %s @ %s"
 
-#: ../../object/Item.php:289 ../../mod/content.php:853
+#: ../../object/Item.php:309 ../../mod/content.php:853
 msgid "to"
 msgstr "à"
 
-#: ../../object/Item.php:290
+#: ../../object/Item.php:310
 msgid "via"
 msgstr "via"
 
-#: ../../object/Item.php:291 ../../mod/content.php:854
+#: ../../object/Item.php:311 ../../mod/content.php:854
 msgid "Wall-to-Wall"
 msgstr "Inter-mur"
 
-#: ../../object/Item.php:292 ../../mod/content.php:855
+#: ../../object/Item.php:312 ../../mod/content.php:855
 msgid "via Wall-To-Wall:"
 msgstr "en Inter-mur:"
 
-#: ../../object/Item.php:301 ../../mod/content.php:481
-#: ../../mod/content.php:863 ../../include/conversation.php:671
+#: ../../object/Item.php:321 ../../mod/content.php:481
+#: ../../mod/content.php:863 ../../include/conversation.php:673
 #, php-format
 msgid "%s from %s"
 msgstr "%s de %s"
 
-#: ../../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
+#: ../../object/Item.php:341 ../../object/Item.php:657 ../../boot.php:693
+#: ../../mod/content.php:708 ../../mod/photos.php:1560
+#: ../../mod/photos.php:1604 ../../mod/photos.php:1692
 msgid "Comment"
 msgstr "Commenter"
 
-#: ../../object/Item.php:322 ../../mod/wallmessage.php:156
+#: ../../object/Item.php:344 ../../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
+#: ../../mod/message.php:565 ../../mod/photos.php:1541
+#: ../../include/conversation.php:690 ../../include/conversation.php:1107
 msgid "Please wait"
 msgstr "Patientez"
 
-#: ../../object/Item.php:345 ../../mod/content.php:602
+#: ../../object/Item.php:367 ../../mod/content.php:602
 #, php-format
 msgid "%d comment"
 msgid_plural "%d comments"
 msgstr[0] "%d commentaire"
 msgstr[1] "%d commentaires"
 
-#: ../../object/Item.php:347 ../../object/Item.php:360
-#: ../../mod/content.php:604 ../../include/text.php:1928
+#: ../../object/Item.php:369 ../../object/Item.php:382
+#: ../../mod/content.php:604 ../../include/text.php:1959
 msgid "comment"
 msgid_plural "comments"
 msgstr[0] ""
 msgstr[1] "commentaire"
 
-#: ../../object/Item.php:348 ../../boot.php:686 ../../mod/content.php:605
+#: ../../object/Item.php:370 ../../boot.php:694 ../../mod/content.php:605
 #: ../../include/contact_widgets.php:204
 msgid "show more"
 msgstr "montrer plus"
 
-#: ../../object/Item.php:633 ../../mod/content.php:706
-#: ../../mod/photos.php:1549 ../../mod/photos.php:1593
-#: ../../mod/photos.php:1676
+#: ../../object/Item.php:655 ../../mod/content.php:706
+#: ../../mod/photos.php:1558 ../../mod/photos.php:1602
+#: ../../mod/photos.php:1690
 msgid "This is you"
 msgstr "C'est vous"
 
-#: ../../object/Item.php:636 ../../view/theme/perihel/config.php:95
+#: ../../object/Item.php:658 ../../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
+#: ../../view/theme/cleanzero/config.php:80
+#: ../../view/theme/vier/config.php:47 ../../mod/mood.php:137
 #: ../../mod/install.php:248 ../../mod/install.php:286
 #: ../../mod/crepair.php:171 ../../mod/content.php:709
-#: ../../mod/contacts.php:458 ../../mod/profiles.php:630
+#: ../../mod/contacts.php:464 ../../mod/profiles.php:634
 #: ../../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/localtime.php:45 ../../mod/photos.php:1082
+#: ../../mod/photos.php:1203 ../../mod/photos.php:1510
+#: ../../mod/photos.php:1561 ../../mod/photos.php:1605
+#: ../../mod/photos.php:1693 ../../mod/poke.php:199 ../../mod/events.php:478
 #: ../../mod/fsuggest.php:107 ../../mod/invite.php:140
 #: ../../mod/manage.php:110
 msgid "Submit"
 msgstr "Envoyer"
 
-#: ../../object/Item.php:637 ../../mod/content.php:710
+#: ../../object/Item.php:659 ../../mod/content.php:710
 msgid "Bold"
 msgstr "Gras"
 
-#: ../../object/Item.php:638 ../../mod/content.php:711
+#: ../../object/Item.php:660 ../../mod/content.php:711
 msgid "Italic"
 msgstr "Italique"
 
-#: ../../object/Item.php:639 ../../mod/content.php:712
+#: ../../object/Item.php:661 ../../mod/content.php:712
 msgid "Underline"
 msgstr "Souligné"
 
-#: ../../object/Item.php:640 ../../mod/content.php:713
+#: ../../object/Item.php:662 ../../mod/content.php:713
 msgid "Quote"
 msgstr "Citation"
 
-#: ../../object/Item.php:641 ../../mod/content.php:714
+#: ../../object/Item.php:663 ../../mod/content.php:714
 msgid "Code"
 msgstr "Code"
 
-#: ../../object/Item.php:642 ../../mod/content.php:715
+#: ../../object/Item.php:664 ../../mod/content.php:715
 msgid "Image"
 msgstr "Image"
 
-#: ../../object/Item.php:643 ../../mod/content.php:716
+#: ../../object/Item.php:665 ../../mod/content.php:716
 msgid "Link"
 msgstr "Lien"
 
-#: ../../object/Item.php:644 ../../mod/content.php:717
+#: ../../object/Item.php:666 ../../mod/content.php:717
 msgid "Video"
 msgstr "Vidéo"
 
-#: ../../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
+#: ../../object/Item.php:667 ../../mod/editpost.php:145
+#: ../../mod/content.php:718 ../../mod/photos.php:1562
+#: ../../mod/photos.php:1606 ../../mod/photos.php:1694
+#: ../../include/conversation.php:1124
 msgid "Preview"
 msgstr "Aperçu"
 
-#: ../../index.php:199 ../../mod/apps.php:7
+#: ../../index.php:203 ../../mod/apps.php:7
 msgid "You must be logged in to use addons. "
 msgstr "Vous devez être connecté pour utiliser les addons."
 
-#: ../../index.php:243 ../../mod/help.php:90
+#: ../../index.php:247 ../../mod/help.php:90
 msgid "Not Found"
 msgstr "Non trouvé"
 
-#: ../../index.php:246 ../../mod/help.php:93
+#: ../../index.php:250 ../../mod/help.php:93
 msgid "Page not found."
 msgstr "Page introuvable."
 
-#: ../../index.php:355 ../../mod/group.php:72 ../../mod/profperm.php:19
+#: ../../index.php:359 ../../mod/group.php:72 ../../mod/profperm.php:19
 msgid "Permission denied"
 msgstr "Permission refusée"
 
-#: ../../index.php:356 ../../mod/mood.php:114 ../../mod/display.php:242
-#: ../../mod/register.php:40 ../../mod/dfrn_confirm.php:53
+#: ../../index.php:360 ../../mod/mood.php:114 ../../mod/display.php:266
+#: ../../mod/register.php:41 ../../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/network.php:4 ../../mod/install.php:151 ../../mod/editpost.php:10
 #: ../../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/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:246
+#: ../../mod/settings.php:102 ../../mod/settings.php:591
+#: ../../mod/settings.php:596 ../../mod/profiles.php:146
+#: ../../mod/profiles.php:575 ../../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/viewcontacts.php:22 ../../mod/photos.php:134
+#: ../../mod/photos.php:1048 ../../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/fsuggest.php:78 ../../mod/item.php:145 ../../mod/item.php:161
 #: ../../mod/notifications.php:66 ../../mod/invite.php:15
 #: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9
-#: ../../include/items.php:4215
+#: ../../include/items.php:4390
 msgid "Permission denied."
 msgstr "Permission refusée."
 
-#: ../../index.php:415
+#: ../../index.php:419
 msgid "toggle mobile"
 msgstr "activ. mobile"
 
 #: ../../view/theme/perihel/theme.php:33
 #: ../../view/theme/diabook/theme.php:123 ../../mod/notifications.php:93
-#: ../../include/nav.php:104 ../../include/nav.php:143
+#: ../../include/nav.php:104 ../../include/nav.php:145
 msgid "Home"
 msgstr "Profil"
 
 #: ../../view/theme/perihel/theme.php:33
 #: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
-#: ../../include/nav.php:143
+#: ../../include/nav.php:145
 msgid "Your posts and conversations"
 msgstr "Vos notices et conversations"
 
 #: ../../view/theme/perihel/theme.php:34
-#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1967
+#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979
 #: ../../mod/newmember.php:32 ../../mod/profperm.php:103
 #: ../../include/nav.php:77 ../../include/profile_advanced.php:7
 #: ../../include/profile_advanced.php:84
@@ -303,7 +306,7 @@ msgid "Your profile page"
 msgstr "Votre page de profil"
 
 #: ../../view/theme/perihel/theme.php:35
-#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1974
+#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1986
 #: ../../mod/fbrowser.php:25 ../../include/nav.php:78
 msgid "Photos"
 msgstr "Photos"
@@ -314,7 +317,7 @@ msgid "Your photos"
 msgstr "Vos photos"
 
 #: ../../view/theme/perihel/theme.php:36
-#: ../../view/theme/diabook/theme.php:127 ../../boot.php:1991
+#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2003
 #: ../../mod/events.php:370 ../../include/nav.php:79
 msgid "Events"
 msgstr "Événements"
@@ -342,13 +345,13 @@ msgstr "Communauté"
 
 #: ../../view/theme/perihel/config.php:89
 #: ../../view/theme/diabook/theme.php:621
-#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328
 msgid "don't show"
 msgstr "cacher"
 
 #: ../../view/theme/perihel/config.php:89
 #: ../../view/theme/diabook/theme.php:621
-#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:326
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327
 msgid "show"
 msgstr "montrer"
 
@@ -357,6 +360,7 @@ msgstr "montrer"
 #: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72
 #: ../../view/theme/clean/config.php:73
 #: ../../view/theme/cleanzero/config.php:82
+#: ../../view/theme/vier/config.php:49
 msgid "Theme settings"
 msgstr "Réglages du thème graphique"
 
@@ -378,8 +382,8 @@ msgstr "Réglez 'line-height' (hauteur de police) pour publications et commentai
 msgid "Set resolution for middle column"
 msgstr "Réglez la résolution de la colonne centrale"
 
-#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:680
-#: ../../include/nav.php:171
+#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:688
+#: ../../include/nav.php:173
 msgid "Contacts"
 msgstr "Contacts"
 
@@ -413,28 +417,28 @@ msgid "Last likes"
 msgstr "Dernièrement aimé"
 
 #: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118
-#: ../../include/conversation.php:246 ../../include/text.php:1922
+#: ../../include/conversation.php:246 ../../include/text.php:1953
 msgid "event"
 msgstr "évènement"
 
 #: ../../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
+#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/subthread.php:87
 #: ../../include/conversation.php:121 ../../include/conversation.php:130
 #: ../../include/conversation.php:249 ../../include/conversation.php:258
-#: ../../include/diaspora.php:1878
+#: ../../include/diaspora.php:1908
 msgid "status"
 msgstr "le statut"
 
 #: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62
-#: ../../mod/like.php:151 ../../mod/subthread.php:87
+#: ../../mod/like.php:150 ../../mod/subthread.php:87
 #: ../../include/conversation.php:126 ../../include/conversation.php:254
-#: ../../include/text.php:1924 ../../include/diaspora.php:1878
+#: ../../include/text.php:1955 ../../include/diaspora.php:1908
 msgid "photo"
 msgstr "photo"
 
-#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:168
-#: ../../include/conversation.php:137 ../../include/diaspora.php:1894
+#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:167
+#: ../../include/conversation.php:137 ../../include/diaspora.php:1924
 #, php-format
 msgid "%1$s likes %2$s's %3$s"
 msgstr "%1$s aime %3$s de %2$s"
@@ -445,16 +449,16 @@ msgstr "%1$s aime %3$s de %2$s"
 msgid "Last photos"
 msgstr "Dernières photos"
 
-#: ../../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
+#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60
+#: ../../mod/photos.php:155 ../../mod/photos.php:1062
+#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
+#: ../../mod/photos.php:1756 ../../mod/photos.php:1768
 msgid "Contact Photos"
 msgstr "Photos du contact"
 
-#: ../../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
+#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:155
+#: ../../mod/photos.php:729 ../../mod/photos.php:1187
+#: ../../mod/photos.php:1210 ../../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:334
@@ -491,8 +495,8 @@ msgstr "Inviter des amis"
 
 #: ../../view/theme/diabook/theme.php:544
 #: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22
-#: ../../mod/admin.php:1004 ../../mod/admin.php:1212 ../../mod/settings.php:79
-#: ../../mod/uexport.php:48 ../../include/nav.php:167
+#: ../../mod/admin.php:1007 ../../mod/admin.php:1226 ../../mod/settings.php:85
+#: ../../include/nav.php:169
 msgid "Settings"
 msgstr "Réglages"
 
@@ -563,20 +567,20 @@ msgstr "Taille de texte des messages"
 
 #: ../../view/theme/quattro/config.php:70
 msgid "Textareas font size"
-msgstr ""
+msgstr "Taille de police des zones de texte"
 
 #: ../../view/theme/dispy/config.php:75
 msgid "Set colour scheme"
 msgstr "Choisir le schéma de couleurs"
 
 #: ../../view/theme/clean/config.php:54 ../../include/user.php:246
-#: ../../include/text.php:1658
+#: ../../include/text.php:1689
 msgid "default"
 msgstr "défaut"
 
 #: ../../view/theme/clean/config.php:74
 msgid "Background Image"
-msgstr ""
+msgstr "Image de fond"
 
 #: ../../view/theme/clean/config.php:74
 msgid ""
@@ -586,7 +590,7 @@ msgstr ""
 
 #: ../../view/theme/clean/config.php:75
 msgid "Background Color"
-msgstr ""
+msgstr "Couleur de fond"
 
 #: ../../view/theme/clean/config.php:75
 msgid "HEX value for the background color. Don't include the #"
@@ -594,7 +598,7 @@ msgstr ""
 
 #: ../../view/theme/clean/config.php:77
 msgid "font size"
-msgstr ""
+msgstr "Taille de police"
 
 #: ../../view/theme/clean/config.php:77
 msgid "base font size for your interface"
@@ -608,210 +612,214 @@ msgstr "Choisir une taille pour les images dans les publications et commentaires
 msgid "Set theme width"
 msgstr "Largeur du thème"
 
-#: ../../boot.php:684
+#: ../../view/theme/vier/config.php:50
+msgid "Set style"
+msgstr "Définir le style"
+
+#: ../../boot.php:692
 msgid "Delete this item?"
 msgstr "Effacer cet élément?"
 
-#: ../../boot.php:687
+#: ../../boot.php:695
 msgid "show fewer"
 msgstr "montrer moins"
 
-#: ../../boot.php:1015
+#: ../../boot.php:1023
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "Mise-à-jour %s échouée. Voir les journaux d'erreur."
 
-#: ../../boot.php:1017
+#: ../../boot.php:1025
 #, php-format
 msgid "Update Error at %s"
 msgstr "Erreur de mise-à-jour à %s"
 
-#: ../../boot.php:1127
+#: ../../boot.php:1135
 msgid "Create a New Account"
 msgstr "Créer un nouveau compte"
 
-#: ../../boot.php:1128 ../../mod/register.php:278 ../../include/nav.php:108
+#: ../../boot.php:1136 ../../mod/register.php:279 ../../include/nav.php:108
 msgid "Register"
 msgstr "S'inscrire"
 
-#: ../../boot.php:1152 ../../include/nav.php:73
+#: ../../boot.php:1160 ../../include/nav.php:73
 msgid "Logout"
 msgstr "Se déconnecter"
 
-#: ../../boot.php:1153 ../../include/nav.php:91
+#: ../../boot.php:1161 ../../include/nav.php:91
 msgid "Login"
 msgstr "Connexion"
 
-#: ../../boot.php:1155
+#: ../../boot.php:1163
 msgid "Nickname or Email address: "
 msgstr "Pseudo ou courriel: "
 
-#: ../../boot.php:1156
+#: ../../boot.php:1164
 msgid "Password: "
 msgstr "Mot de passe: "
 
-#: ../../boot.php:1157
+#: ../../boot.php:1165
 msgid "Remember me"
 msgstr "Se souvenir de moi"
 
-#: ../../boot.php:1160
+#: ../../boot.php:1168
 msgid "Or login using OpenID: "
 msgstr "Ou connectez-vous via OpenID: "
 
-#: ../../boot.php:1166
+#: ../../boot.php:1174
 msgid "Forgot your password?"
 msgstr "Mot de passe oublié?"
 
-#: ../../boot.php:1167 ../../mod/lostpass.php:84
+#: ../../boot.php:1175 ../../mod/lostpass.php:84
 msgid "Password Reset"
 msgstr "Réinitialiser le mot de passe"
 
-#: ../../boot.php:1169
+#: ../../boot.php:1177
 msgid "Website Terms of Service"
-msgstr ""
+msgstr "Conditions d'utilisation du site internet"
 
-#: ../../boot.php:1170
+#: ../../boot.php:1178
 msgid "terms of service"
-msgstr ""
+msgstr "conditions d'utilisation"
 
-#: ../../boot.php:1172
+#: ../../boot.php:1180
 msgid "Website Privacy Policy"
-msgstr ""
+msgstr "Politique de confidentialité du site internet"
 
-#: ../../boot.php:1173
+#: ../../boot.php:1181
 msgid "privacy policy"
-msgstr ""
+msgstr "politique de confidentialité"
 
-#: ../../boot.php:1302
+#: ../../boot.php:1314
 msgid "Requested account is not available."
 msgstr "Le compte demandé n'est pas disponible."
 
-#: ../../boot.php:1341 ../../mod/profile.php:21
+#: ../../boot.php:1353 ../../mod/profile.php:21
 msgid "Requested profile is not available."
 msgstr "Le profil demandé n'est pas disponible."
 
-#: ../../boot.php:1381 ../../boot.php:1485
+#: ../../boot.php:1393 ../../boot.php:1497
 msgid "Edit profile"
 msgstr "Editer le profil"
 
-#: ../../boot.php:1433 ../../mod/suggest.php:88 ../../mod/match.php:58
+#: ../../boot.php:1445 ../../mod/suggest.php:88 ../../mod/match.php:58
 #: ../../include/contact_widgets.php:9
 msgid "Connect"
 msgstr "Relier"
 
-#: ../../boot.php:1447
+#: ../../boot.php:1459
 msgid "Message"
 msgstr "Message"
 
-#: ../../boot.php:1455 ../../include/nav.php:169
+#: ../../boot.php:1467 ../../include/nav.php:171
 msgid "Profiles"
 msgstr "Profils"
 
-#: ../../boot.php:1455
+#: ../../boot.php:1467
 msgid "Manage/edit profiles"
 msgstr "Gérer/éditer les profils"
 
-#: ../../boot.php:1461 ../../boot.php:1487 ../../mod/profiles.php:726
+#: ../../boot.php:1473 ../../boot.php:1499 ../../mod/profiles.php:730
 msgid "Change profile photo"
 msgstr "Changer de photo de profil"
 
-#: ../../boot.php:1462 ../../mod/profiles.php:727
+#: ../../boot.php:1474 ../../mod/profiles.php:731
 msgid "Create New Profile"
 msgstr "Créer un nouveau profil"
 
-#: ../../boot.php:1472 ../../mod/profiles.php:738
+#: ../../boot.php:1484 ../../mod/profiles.php:742
 msgid "Profile Image"
 msgstr "Image du profil"
 
-#: ../../boot.php:1475 ../../mod/profiles.php:740
+#: ../../boot.php:1487 ../../mod/profiles.php:744
 msgid "visible to everybody"
 msgstr "visible par tous"
 
-#: ../../boot.php:1476 ../../mod/profiles.php:741
+#: ../../boot.php:1488 ../../mod/profiles.php:745
 msgid "Edit visibility"
 msgstr "Changer la visibilité"
 
-#: ../../boot.php:1501 ../../mod/directory.php:134 ../../mod/events.php:471
-#: ../../include/event.php:40 ../../include/bb2diaspora.php:415
+#: ../../boot.php:1513 ../../mod/directory.php:134 ../../mod/events.php:471
+#: ../../include/event.php:40 ../../include/bb2diaspora.php:155
 msgid "Location:"
 msgstr "Localisation:"
 
-#: ../../boot.php:1503 ../../mod/directory.php:136
+#: ../../boot.php:1515 ../../mod/directory.php:136
 #: ../../include/profile_advanced.php:17
 msgid "Gender:"
 msgstr "Genre:"
 
-#: ../../boot.php:1506 ../../mod/directory.php:138
+#: ../../boot.php:1518 ../../mod/directory.php:138
 #: ../../include/profile_advanced.php:37
 msgid "Status:"
 msgstr "Statut:"
 
-#: ../../boot.php:1508 ../../mod/directory.php:140
+#: ../../boot.php:1520 ../../mod/directory.php:140
 #: ../../include/profile_advanced.php:48
 msgid "Homepage:"
 msgstr "Page personnelle:"
 
-#: ../../boot.php:1584 ../../boot.php:1670
+#: ../../boot.php:1596 ../../boot.php:1682
 msgid "g A l F d"
 msgstr "g A | F d"
 
-#: ../../boot.php:1585 ../../boot.php:1671
+#: ../../boot.php:1597 ../../boot.php:1683
 msgid "F d"
 msgstr "F d"
 
-#: ../../boot.php:1630 ../../boot.php:1711
+#: ../../boot.php:1642 ../../boot.php:1723
 msgid "[today]"
 msgstr "[aujourd'hui]"
 
-#: ../../boot.php:1642
+#: ../../boot.php:1654
 msgid "Birthday Reminders"
 msgstr "Rappels d'anniversaires"
 
-#: ../../boot.php:1643
+#: ../../boot.php:1655
 msgid "Birthdays this week:"
 msgstr "Anniversaires cette semaine:"
 
-#: ../../boot.php:1704
+#: ../../boot.php:1716
 msgid "[No description]"
 msgstr "[Sans description]"
 
-#: ../../boot.php:1722
+#: ../../boot.php:1734
 msgid "Event Reminders"
 msgstr "Rappels d'événements"
 
-#: ../../boot.php:1723
+#: ../../boot.php:1735
 msgid "Events this week:"
 msgstr "Evénements cette semaine:"
 
-#: ../../boot.php:1960 ../../include/nav.php:76
+#: ../../boot.php:1972 ../../include/nav.php:76
 msgid "Status"
 msgstr "Statut"
 
-#: ../../boot.php:1963
+#: ../../boot.php:1975
 msgid "Status Messages and Posts"
 msgstr "Messages d'état et publications"
 
-#: ../../boot.php:1970
+#: ../../boot.php:1982
 msgid "Profile Details"
 msgstr "Détails du profil"
 
-#: ../../boot.php:1977 ../../mod/photos.php:51
+#: ../../boot.php:1989 ../../mod/photos.php:52
 msgid "Photo Albums"
 msgstr "Albums photo"
 
-#: ../../boot.php:1981 ../../boot.php:1984
+#: ../../boot.php:1993 ../../boot.php:1996
 msgid "Videos"
-msgstr ""
+msgstr "Vidéos"
 
-#: ../../boot.php:1994
+#: ../../boot.php:2006
 msgid "Events and Calendar"
 msgstr "Événements et agenda"
 
-#: ../../boot.php:1998 ../../mod/notes.php:44
+#: ../../boot.php:2010 ../../mod/notes.php:44
 msgid "Personal Notes"
 msgstr "Notes personnelles"
 
-#: ../../boot.php:2001
+#: ../../boot.php:2013
 msgid "Only You Can See This"
 msgstr "Vous seul pouvez voir ça"
 
@@ -831,15 +839,15 @@ msgstr "Spécifiez votre humeur du moment, et informez vos amis"
 #: ../../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/viewcontacts.php:17 ../../mod/photos.php:918
 #: ../../mod/videos.php:115
 msgid "Public access denied."
 msgstr "Accès public refusé."
 
-#: ../../mod/display.php:51 ../../mod/display.php:246 ../../mod/decrypt.php:15
-#: ../../mod/admin.php:163 ../../mod/admin.php:952 ../../mod/admin.php:1152
+#: ../../mod/display.php:51 ../../mod/display.php:270 ../../mod/decrypt.php:15
+#: ../../mod/admin.php:164 ../../mod/admin.php:955 ../../mod/admin.php:1166
 #: ../../mod/notice.php:15 ../../mod/viewsrc.php:15
-#: ../../include/items.php:4023
+#: ../../include/items.php:4194
 msgid "Item not found."
 msgstr "Élément introuvable."
 
@@ -847,7 +855,7 @@ msgstr "Élément introuvable."
 msgid "Access to this profile has been restricted."
 msgstr "L'accès au profil a été restreint."
 
-#: ../../mod/display.php:239
+#: ../../mod/display.php:263
 msgid "Item has been removed."
 msgstr "Cet élément a été enlevé."
 
@@ -892,126 +900,126 @@ msgstr "Aucune extension/greffon/application installée"
 msgid "%1$s welcomes %2$s"
 msgstr "%1$s accueille %2$s"
 
-#: ../../mod/register.php:91 ../../mod/admin.php:734 ../../mod/regmod.php:54
+#: ../../mod/register.php:92 ../../mod/admin.php:737 ../../mod/regmod.php:54
 #, php-format
 msgid "Registration details for %s"
 msgstr "Détails d'inscription pour %s"
 
-#: ../../mod/register.php:99
+#: ../../mod/register.php:100
 msgid ""
 "Registration successful. Please check your email for further instructions."
 msgstr "Inscription réussie. Vérifiez vos emails pour la suite des instructions."
 
-#: ../../mod/register.php:103
+#: ../../mod/register.php:104
 msgid "Failed to send email message. Here is the message that failed."
 msgstr "Impossible d'envoyer un email. Voici le message qui a échoué."
 
-#: ../../mod/register.php:108
+#: ../../mod/register.php:109
 msgid "Your registration can not be processed."
 msgstr "Votre inscription ne peut être traitée."
 
-#: ../../mod/register.php:148
+#: ../../mod/register.php:149
 #, php-format
 msgid "Registration request at %s"
 msgstr "Demande d'inscription à %s"
 
-#: ../../mod/register.php:157
+#: ../../mod/register.php:158
 msgid "Your registration is pending approval by the site owner."
 msgstr "Votre inscription attend une validation du propriétaire du site."
 
-#: ../../mod/register.php:195 ../../mod/uimport.php:50
+#: ../../mod/register.php:196 ../../mod/uimport.php:50
 msgid ""
 "This site has exceeded the number of allowed daily account registrations. "
 "Please try again tomorrow."
 msgstr "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain."
 
-#: ../../mod/register.php:223
+#: ../../mod/register.php:224
 msgid ""
 "You may (optionally) fill in this form via OpenID by supplying your OpenID "
 "and clicking 'Register'."
 msgstr "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\"."
 
-#: ../../mod/register.php:224
+#: ../../mod/register.php:225
 msgid ""
 "If you are not familiar with OpenID, please leave that field blank and fill "
 "in the rest of the items."
 msgstr "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste."
 
-#: ../../mod/register.php:225
+#: ../../mod/register.php:226
 msgid "Your OpenID (optional): "
 msgstr "Votre OpenID (facultatif): "
 
-#: ../../mod/register.php:239
+#: ../../mod/register.php:240
 msgid "Include your profile in member directory?"
 msgstr "Inclure votre profil dans l'annuaire des membres?"
 
-#: ../../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
+#: ../../mod/register.php:243 ../../mod/api.php:105 ../../mod/suggest.php:29
+#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:326
+#: ../../mod/settings.php:1001 ../../mod/settings.php:1007
+#: ../../mod/settings.php:1015 ../../mod/settings.php:1019
+#: ../../mod/settings.php:1024 ../../mod/settings.php:1030
+#: ../../mod/settings.php:1036 ../../mod/settings.php:1042
+#: ../../mod/settings.php:1072 ../../mod/settings.php:1073
+#: ../../mod/settings.php:1074 ../../mod/settings.php:1075
+#: ../../mod/settings.php:1076 ../../mod/profiles.php:614
+#: ../../mod/message.php:209 ../../include/items.php:4235
 msgid "Yes"
 msgstr "Oui"
 
-#: ../../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
+#: ../../mod/register.php:244 ../../mod/api.php:106
+#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:1001
+#: ../../mod/settings.php:1007 ../../mod/settings.php:1015
+#: ../../mod/settings.php:1019 ../../mod/settings.php:1024
+#: ../../mod/settings.php:1030 ../../mod/settings.php:1036
+#: ../../mod/settings.php:1042 ../../mod/settings.php:1072
+#: ../../mod/settings.php:1073 ../../mod/settings.php:1074
+#: ../../mod/settings.php:1075 ../../mod/settings.php:1076
+#: ../../mod/profiles.php:615
 msgid "No"
 msgstr "Non"
 
-#: ../../mod/register.php:260
+#: ../../mod/register.php:261
 msgid "Membership on this site is by invitation only."
 msgstr "L'inscription à ce site se fait uniquement sur invitation."
 
-#: ../../mod/register.php:261
+#: ../../mod/register.php:262
 msgid "Your invitation ID: "
 msgstr "Votre ID d'invitation: "
 
-#: ../../mod/register.php:264 ../../mod/admin.php:572
+#: ../../mod/register.php:265 ../../mod/admin.php:575
 msgid "Registration"
 msgstr "Inscription"
 
-#: ../../mod/register.php:272
+#: ../../mod/register.php:273
 msgid "Your Full Name (e.g. Joe Smith): "
 msgstr "Votre nom complet (p.ex. Michel Dupont): "
 
-#: ../../mod/register.php:273
+#: ../../mod/register.php:274
 msgid "Your Email Address: "
 msgstr "Votre adresse courriel: "
 
-#: ../../mod/register.php:274
+#: ../../mod/register.php:275
 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 "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '&lt;strong&gt;pseudo@$sitename&lt;/strong&gt;'."
 
-#: ../../mod/register.php:275
+#: ../../mod/register.php:276
 msgid "Choose a nickname: "
 msgstr "Choisir un pseudo: "
 
-#: ../../mod/register.php:284 ../../mod/uimport.php:64
+#: ../../mod/register.php:285 ../../mod/uimport.php:64
 msgid "Import"
 msgstr "Importer"
 
-#: ../../mod/register.php:285
+#: ../../mod/register.php:286
 msgid "Import your profile to this friendica instance"
-msgstr ""
+msgstr "Importer votre profile dans cette instance de friendica"
 
 #: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18
 #: ../../mod/profiles.php:133 ../../mod/profiles.php:160
-#: ../../mod/profiles.php:583
+#: ../../mod/profiles.php:587
 msgid "Profile not found."
 msgstr "Profil introuvable."
 
@@ -1056,7 +1064,7 @@ msgid "Unable to set contact photo."
 msgstr "Impossible de définir la photo du contact."
 
 #: ../../mod/dfrn_confirm.php:477 ../../include/conversation.php:172
-#: ../../include/diaspora.php:621
+#: ../../include/diaspora.php:620
 #, php-format
 msgid "%1$s is now friends with %2$s"
 msgstr "%1$s est désormais lié à %2$s"
@@ -1123,7 +1131,7 @@ msgstr "Merci de vous connecter pour continuer."
 msgid ""
 "Do you want to authorize this application to access your posts and contacts,"
 " and/or create new posts for you?"
-msgstr "Voulez-vous autoriser cette application à accéder à vos notices et contacts, et/ou à créer des notices à votre place?"
+msgstr "Voulez-vous autoriser cette application à accéder à vos billets et contacts, et/ou à créer des billets à votre place?"
 
 #: ../../mod/lostpass.php:17
 msgid "No valid account found."
@@ -1221,7 +1229,7 @@ msgstr "Pas de destinataire."
 #: ../../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
+#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
 msgid "Please enter a link URL:"
 msgstr "Entrez un lien web:"
 
@@ -1253,13 +1261,13 @@ msgstr "Votre message:"
 
 #: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
 #: ../../mod/message.php:332 ../../mod/message.php:562
-#: ../../include/conversation.php:1081
+#: ../../include/conversation.php:1089
 msgid "Upload photo"
 msgstr "Joindre photo"
 
 #: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114
 #: ../../mod/message.php:333 ../../mod/message.php:563
-#: ../../include/conversation.php:1085
+#: ../../include/conversation.php:1093
 msgid "Insert web link"
 msgstr "Insérer lien web"
 
@@ -1458,12 +1466,12 @@ msgid "Do you really want to delete this suggestion?"
 msgstr "Voulez-vous vraiment supprimer cette suggestion ?"
 
 #: ../../mod/suggest.php:32 ../../mod/editpost.php:148
-#: ../../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/dfrn_request.php:848 ../../mod/contacts.php:329
+#: ../../mod/settings.php:610 ../../mod/settings.php:636
+#: ../../mod/message.php:212 ../../mod/photos.php:203 ../../mod/photos.php:292
 #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81
-#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1119
-#: ../../include/items.php:4067
+#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1127
+#: ../../include/items.php:4238
 msgid "Cancel"
 msgstr "Annuler"
 
@@ -1477,72 +1485,72 @@ msgstr "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h
 msgid "Ignore/Hide"
 msgstr "Ignorer/cacher"
 
-#: ../../mod/network.php:179
+#: ../../mod/network.php:136
 msgid "Search Results For:"
 msgstr "Résultats pour:"
 
-#: ../../mod/network.php:222 ../../mod/_search.php:21 ../../mod/search.php:21
+#: ../../mod/network.php:179 ../../mod/_search.php:21 ../../mod/search.php:21
 msgid "Remove term"
 msgstr "Retirer le terme"
 
-#: ../../mod/network.php:231 ../../mod/_search.php:30 ../../mod/search.php:30
-#: ../../include/features.php:41
+#: ../../mod/network.php:188 ../../mod/_search.php:30 ../../mod/search.php:30
+#: ../../include/features.php:42
 msgid "Saved Searches"
 msgstr "Recherches"
 
-#: ../../mod/network.php:232 ../../include/group.php:275
+#: ../../mod/network.php:189 ../../include/group.php:275
 msgid "add"
 msgstr "ajouter"
 
-#: ../../mod/network.php:394
+#: ../../mod/network.php:350
 msgid "Commented Order"
 msgstr "Tri par commentaires"
 
-#: ../../mod/network.php:397
+#: ../../mod/network.php:353
 msgid "Sort by Comment Date"
 msgstr "Trier par date de commentaire"
 
-#: ../../mod/network.php:400
+#: ../../mod/network.php:356
 msgid "Posted Order"
 msgstr "Tri par publications"
 
-#: ../../mod/network.php:403
+#: ../../mod/network.php:359
 msgid "Sort by Post Date"
 msgstr "Trier par date de publication"
 
-#: ../../mod/network.php:441 ../../mod/notifications.php:88
+#: ../../mod/network.php:365 ../../mod/notifications.php:88
 msgid "Personal"
 msgstr "Personnel"
 
-#: ../../mod/network.php:444
+#: ../../mod/network.php:368
 msgid "Posts that mention or involve you"
 msgstr "Publications qui vous concernent"
 
-#: ../../mod/network.php:450
+#: ../../mod/network.php:374
 msgid "New"
 msgstr "Nouveau"
 
-#: ../../mod/network.php:453
+#: ../../mod/network.php:377
 msgid "Activity Stream - by date"
 msgstr "Flux d'activités - par date"
 
-#: ../../mod/network.php:459
+#: ../../mod/network.php:383
 msgid "Shared Links"
 msgstr "Liens partagés"
 
-#: ../../mod/network.php:462
+#: ../../mod/network.php:386
 msgid "Interesting Links"
 msgstr "Liens intéressants"
 
-#: ../../mod/network.php:468
+#: ../../mod/network.php:392
 msgid "Starred"
 msgstr "Mis en avant"
 
-#: ../../mod/network.php:471
+#: ../../mod/network.php:395
 msgid "Favourite Posts"
 msgstr "Publications favorites"
 
-#: ../../mod/network.php:539
+#: ../../mod/network.php:457
 #, php-format
 msgid "Warning: This group contains %s member from an insecure network."
 msgid_plural ""
@@ -1550,31 +1558,31 @@ msgid_plural ""
 msgstr[0] "Attention: Ce groupe contient %s membre d'un réseau non-sûr."
 msgstr[1] "Attention: Ce groupe contient %s membres d'un réseau non-sûr."
 
-#: ../../mod/network.php:542
+#: ../../mod/network.php:460
 msgid "Private messages to this group are at risk of public disclosure."
 msgstr "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée."
 
-#: ../../mod/network.php:588 ../../mod/content.php:119
+#: ../../mod/network.php:514 ../../mod/content.php:119
 msgid "No such group"
 msgstr "Groupe inexistant"
 
-#: ../../mod/network.php:599 ../../mod/content.php:130
+#: ../../mod/network.php:531 ../../mod/content.php:130
 msgid "Group is empty"
 msgstr "Groupe vide"
 
-#: ../../mod/network.php:605 ../../mod/content.php:134
+#: ../../mod/network.php:538 ../../mod/content.php:134
 msgid "Group: "
 msgstr "Groupe: "
 
-#: ../../mod/network.php:617
+#: ../../mod/network.php:548
 msgid "Contact: "
 msgstr "Contact: "
 
-#: ../../mod/network.php:619
+#: ../../mod/network.php:550
 msgid "Private messages to this person are at risk of public disclosure."
 msgstr "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée."
 
-#: ../../mod/network.php:624
+#: ../../mod/network.php:555
 msgid "Invalid contact."
 msgstr "Contact invalide."
 
@@ -1700,15 +1708,15 @@ msgstr "Version \"ligne de commande\" de PHP"
 
 #: ../../mod/install.php:340
 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr ""
+msgstr "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)"
 
 #: ../../mod/install.php:341
 msgid "Found PHP version: "
-msgstr ""
+msgstr "Version de PHP:"
 
 #: ../../mod/install.php:343
 msgid "PHP cli binary"
-msgstr ""
+msgstr "PHP cli binary"
 
 #: ../../mod/install.php:354
 msgid ""
@@ -1822,30 +1830,30 @@ msgstr "Fichier .htconfig.php accessible en écriture"
 msgid ""
 "Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
 "compiles templates to PHP to speed up rendering."
-msgstr ""
+msgstr "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu."
 
 #: ../../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 ""
+msgstr "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica."
 
 #: ../../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 ""
+msgstr "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier."
 
 #: ../../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 ""
+msgstr "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient."
 
 #: ../../mod/install.php:460
 msgid "view/smarty3 is writable"
-msgstr ""
+msgstr "view/smarty3 est autorisé à l écriture"
 
 #: ../../mod/install.php:472
 msgid ""
@@ -1881,414 +1889,419 @@ msgstr "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée p
 msgid "Theme settings updated."
 msgstr "Réglages du thème sauvés."
 
-#: ../../mod/admin.php:101 ../../mod/admin.php:570
+#: ../../mod/admin.php:102 ../../mod/admin.php:573
 msgid "Site"
 msgstr "Site"
 
-#: ../../mod/admin.php:102 ../../mod/admin.php:898 ../../mod/admin.php:913
+#: ../../mod/admin.php:103 ../../mod/admin.php:901 ../../mod/admin.php:916
 msgid "Users"
 msgstr "Utilisateurs"
 
-#: ../../mod/admin.php:103 ../../mod/admin.php:1002 ../../mod/admin.php:1044
+#: ../../mod/admin.php:104 ../../mod/admin.php:1005 ../../mod/admin.php:1058
+#: ../../mod/settings.php:57
 msgid "Plugins"
 msgstr "Extensions"
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:1210 ../../mod/admin.php:1244
+#: ../../mod/admin.php:105 ../../mod/admin.php:1224 ../../mod/admin.php:1258
 msgid "Themes"
 msgstr "Thèmes"
 
-#: ../../mod/admin.php:105
+#: ../../mod/admin.php:106
 msgid "DB updates"
 msgstr "Mise-à-jour de la base"
 
-#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1331
+#: ../../mod/admin.php:121 ../../mod/admin.php:128 ../../mod/admin.php:1345
 msgid "Logs"
 msgstr "Journaux"
 
-#: ../../mod/admin.php:125 ../../include/nav.php:178
+#: ../../mod/admin.php:126 ../../include/nav.php:180
 msgid "Admin"
 msgstr "Admin"
 
-#: ../../mod/admin.php:126
+#: ../../mod/admin.php:127
 msgid "Plugin Features"
 msgstr "Propriétés des extensions"
 
-#: ../../mod/admin.php:128
+#: ../../mod/admin.php:129
 msgid "User registrations waiting for confirmation"
 msgstr "Inscriptions en attente de confirmation"
 
-#: ../../mod/admin.php:187 ../../mod/admin.php:852
+#: ../../mod/admin.php:188 ../../mod/admin.php:855
 msgid "Normal Account"
 msgstr "Compte normal"
 
-#: ../../mod/admin.php:188 ../../mod/admin.php:853
+#: ../../mod/admin.php:189 ../../mod/admin.php:856
 msgid "Soapbox Account"
 msgstr "Compte \"boîte à savon\""
 
-#: ../../mod/admin.php:189 ../../mod/admin.php:854
+#: ../../mod/admin.php:190 ../../mod/admin.php:857
 msgid "Community/Celebrity Account"
 msgstr "Compte de communauté/célébrité"
 
-#: ../../mod/admin.php:190 ../../mod/admin.php:855
+#: ../../mod/admin.php:191 ../../mod/admin.php:858
 msgid "Automatic Friend Account"
 msgstr "Compte auto-amical"
 
-#: ../../mod/admin.php:191
+#: ../../mod/admin.php:192
 msgid "Blog Account"
 msgstr "Compte de blog"
 
-#: ../../mod/admin.php:192
+#: ../../mod/admin.php:193
 msgid "Private Forum"
 msgstr "Forum privé"
 
-#: ../../mod/admin.php:211
+#: ../../mod/admin.php:212
 msgid "Message queues"
 msgstr "Files d'attente des messages"
 
-#: ../../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
+#: ../../mod/admin.php:217 ../../mod/admin.php:572 ../../mod/admin.php:900
+#: ../../mod/admin.php:1004 ../../mod/admin.php:1057 ../../mod/admin.php:1223
+#: ../../mod/admin.php:1257 ../../mod/admin.php:1344
 msgid "Administration"
 msgstr "Administration"
 
-#: ../../mod/admin.php:217
+#: ../../mod/admin.php:218
 msgid "Summary"
 msgstr "Résumé"
 
-#: ../../mod/admin.php:219
+#: ../../mod/admin.php:220
 msgid "Registered users"
 msgstr "Utilisateurs inscrits"
 
-#: ../../mod/admin.php:221
+#: ../../mod/admin.php:222
 msgid "Pending registrations"
 msgstr "Inscriptions en attente"
 
-#: ../../mod/admin.php:222
+#: ../../mod/admin.php:223
 msgid "Version"
 msgstr "Versio"
 
-#: ../../mod/admin.php:224
+#: ../../mod/admin.php:225
 msgid "Active plugins"
 msgstr "Extensions activés"
 
-#: ../../mod/admin.php:247
+#: ../../mod/admin.php:248
 msgid "Can not parse base url. Must have at least <scheme>://<domain>"
 msgstr ""
 
-#: ../../mod/admin.php:483
+#: ../../mod/admin.php:485
 msgid "Site settings updated."
 msgstr "Réglages du site mis-à-jour."
 
-#: ../../mod/admin.php:512 ../../mod/settings.php:810
+#: ../../mod/admin.php:514 ../../mod/settings.php:823
 msgid "No special theme for mobile devices"
 msgstr "Pas de thème particulier pour les terminaux mobiles"
 
-#: ../../mod/admin.php:529 ../../mod/contacts.php:402
+#: ../../mod/admin.php:531 ../../mod/contacts.php:408
 msgid "Never"
 msgstr "Jamais"
 
-#: ../../mod/admin.php:530 ../../include/contact_selectors.php:56
+#: ../../mod/admin.php:532
+msgid "At post arrival"
+msgstr "A l'arrivé d'une publication"
+
+#: ../../mod/admin.php:533 ../../include/contact_selectors.php:56
 msgid "Frequently"
 msgstr "Fréquemment"
 
-#: ../../mod/admin.php:531 ../../include/contact_selectors.php:57
+#: ../../mod/admin.php:534 ../../include/contact_selectors.php:57
 msgid "Hourly"
 msgstr "Toutes les heures"
 
-#: ../../mod/admin.php:532 ../../include/contact_selectors.php:58
+#: ../../mod/admin.php:535 ../../include/contact_selectors.php:58
 msgid "Twice daily"
 msgstr "Deux fois par jour"
 
-#: ../../mod/admin.php:533 ../../include/contact_selectors.php:59
+#: ../../mod/admin.php:536 ../../include/contact_selectors.php:59
 msgid "Daily"
 msgstr "Chaque jour"
 
-#: ../../mod/admin.php:538
+#: ../../mod/admin.php:541
 msgid "Multi user instance"
 msgstr "Instance multi-utilisateurs"
 
-#: ../../mod/admin.php:556
+#: ../../mod/admin.php:559
 msgid "Closed"
 msgstr "Fermé"
 
-#: ../../mod/admin.php:557
+#: ../../mod/admin.php:560
 msgid "Requires approval"
 msgstr "Demande une apptrobation"
 
-#: ../../mod/admin.php:558
+#: ../../mod/admin.php:561
 msgid "Open"
 msgstr "Ouvert"
 
-#: ../../mod/admin.php:562
+#: ../../mod/admin.php:565
 msgid "No SSL policy, links will track page SSL state"
 msgstr "Pas de politique SSL, le liens conserveront l'état SSL de la page"
 
-#: ../../mod/admin.php:563
+#: ../../mod/admin.php:566
 msgid "Force all links to use SSL"
 msgstr "Forcer tous les liens à utiliser SSL"
 
-#: ../../mod/admin.php:564
+#: ../../mod/admin.php:567
 msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)"
 
-#: ../../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
+#: ../../mod/admin.php:574 ../../mod/admin.php:1059 ../../mod/admin.php:1259
+#: ../../mod/admin.php:1346 ../../mod/settings.php:609
+#: ../../mod/settings.php:719 ../../mod/settings.php:793
+#: ../../mod/settings.php:872 ../../mod/settings.php:1104
 msgid "Save Settings"
-msgstr ""
+msgstr "Sauvegarder les paramétres"
 
-#: ../../mod/admin.php:573
+#: ../../mod/admin.php:576
 msgid "File upload"
 msgstr "Téléversement de fichier"
 
-#: ../../mod/admin.php:574
+#: ../../mod/admin.php:577
 msgid "Policies"
 msgstr "Politiques"
 
-#: ../../mod/admin.php:575
+#: ../../mod/admin.php:578
 msgid "Advanced"
 msgstr "Avancé"
 
-#: ../../mod/admin.php:576
+#: ../../mod/admin.php:579
 msgid "Performance"
 msgstr "Performance"
 
-#: ../../mod/admin.php:577
+#: ../../mod/admin.php:580
 msgid ""
 "Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr ""
 
-#: ../../mod/admin.php:580
+#: ../../mod/admin.php:583
 msgid "Site name"
 msgstr "Nom du site"
 
-#: ../../mod/admin.php:581
+#: ../../mod/admin.php:584
 msgid "Banner/Logo"
 msgstr "Bannière/Logo"
 
-#: ../../mod/admin.php:582
+#: ../../mod/admin.php:585
 msgid "Additional Info"
-msgstr ""
+msgstr "Informations supplémentaires"
 
-#: ../../mod/admin.php:582
+#: ../../mod/admin.php:585
 msgid ""
 "For public servers: you can add additional information here that will be "
 "listed at dir.friendica.com/siteinfo."
 msgstr ""
 
-#: ../../mod/admin.php:583
+#: ../../mod/admin.php:586
 msgid "System language"
 msgstr "Langue du système"
 
-#: ../../mod/admin.php:584
+#: ../../mod/admin.php:587
 msgid "System theme"
 msgstr "Thème du système"
 
-#: ../../mod/admin.php:584
+#: ../../mod/admin.php:587
 msgid ""
 "Default system theme - may be over-ridden by user profiles - <a href='#' "
 "id='cnftheme'>change theme settings</a>"
-msgstr "Thème par défaut sur ce site - peut être changé en fonction des profils - <a href='#' id='cnftheme'>changer les réglages du thème</a>"
+msgstr "Thème par défaut sur ce site - peut être changé au niveau du profile utilisateur - <a href='#' id='cnftheme'>changer les réglages du thème</a>"
 
-#: ../../mod/admin.php:585
+#: ../../mod/admin.php:588
 msgid "Mobile system theme"
 msgstr "Thème mobile"
 
-#: ../../mod/admin.php:585
+#: ../../mod/admin.php:588
 msgid "Theme for mobile devices"
 msgstr "Thème pour les terminaux mobiles"
 
-#: ../../mod/admin.php:586
+#: ../../mod/admin.php:589
 msgid "SSL link policy"
 msgstr "Politique SSL pour les liens"
 
-#: ../../mod/admin.php:586
+#: ../../mod/admin.php:589
 msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Détermine si les liens générés doivent forcer l'usage de SSL"
+msgstr "Détermine si les liens générés doivent forcer l'utilisation de SSL"
 
-#: ../../mod/admin.php:587
+#: ../../mod/admin.php:590
 msgid "Old style 'Share'"
 msgstr ""
 
-#: ../../mod/admin.php:587
+#: ../../mod/admin.php:590
 msgid "Deactivates the bbcode element 'share' for repeating items."
 msgstr ""
 
-#: ../../mod/admin.php:588
+#: ../../mod/admin.php:591
 msgid "Hide help entry from navigation menu"
 msgstr "Cacher l'aide du menu de navigation"
 
-#: ../../mod/admin.php:588
+#: ../../mod/admin.php:591
 msgid ""
 "Hides the menu entry for the Help pages from the navigation menu. You can "
 "still access it calling /help directly."
-msgstr "Cacher l'entrée du menu pour les pages d'Aide dans le menu de navigation. Vous pouvez toujours y accéder en tapant /help directement."
+msgstr "Cacher du menu de navigation le l'entrée des vers les pages d'aide. Vous pouvez toujours y accéder en tapant directement /help."
 
-#: ../../mod/admin.php:589
+#: ../../mod/admin.php:592
 msgid "Single user instance"
 msgstr "Instance mono-utilisateur"
 
-#: ../../mod/admin.php:589
+#: ../../mod/admin.php:592
 msgid "Make this instance multi-user or single-user for the named user"
 msgstr "Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l'utilisateur."
 
-#: ../../mod/admin.php:590
+#: ../../mod/admin.php:593
 msgid "Maximum image size"
 msgstr "Taille maximale des images"
 
-#: ../../mod/admin.php:590
+#: ../../mod/admin.php:593
 msgid ""
 "Maximum size in bytes of uploaded images. Default is 0, which means no "
 "limits."
 msgstr "Taille maximale des images envoyées (en octets). 0 par défaut, c'est à dire \"aucune limite\"."
 
-#: ../../mod/admin.php:591
+#: ../../mod/admin.php:594
 msgid "Maximum image length"
 msgstr "Longueur maximale des images"
 
-#: ../../mod/admin.php:591
+#: ../../mod/admin.php:594
 msgid ""
 "Maximum length in pixels of the longest side of uploaded images. Default is "
 "-1, which means no limits."
 msgstr "Longueur maximale (en pixels) du plus long côté des images téléversées. La valeur par défaut est -1, soit une absence de limite."
 
-#: ../../mod/admin.php:592
+#: ../../mod/admin.php:595
 msgid "JPEG image quality"
 msgstr "Qualité JPEG des images"
 
-#: ../../mod/admin.php:592
+#: ../../mod/admin.php:595
 msgid ""
 "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
 "100, which is full quality."
 msgstr "Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale."
 
-#: ../../mod/admin.php:594
+#: ../../mod/admin.php:597
 msgid "Register policy"
 msgstr "Politique d'inscription"
 
-#: ../../mod/admin.php:595
+#: ../../mod/admin.php:598
 msgid "Maximum Daily Registrations"
 msgstr "Inscriptions maximum par jour"
 
-#: ../../mod/admin.php:595
+#: ../../mod/admin.php:598
 msgid ""
 "If registration is permitted above, this sets the maximum number of new user"
 " registrations to accept per day.  If register is set to closed, this "
 "setting has no effect."
 msgstr "Si les inscriptions sont permises ci-dessus, ceci fixe le nombre maximum d'inscriptions de nouveaux utilisateurs acceptées par jour. Si les inscriptions ne sont pas ouvertes, ce paramètre n'a aucun effet."
 
-#: ../../mod/admin.php:596
+#: ../../mod/admin.php:599
 msgid "Register text"
 msgstr "Texte d'inscription"
 
-#: ../../mod/admin.php:596
+#: ../../mod/admin.php:599
 msgid "Will be displayed prominently on the registration page."
 msgstr "Sera affiché de manière bien visible sur la page d'accueil."
 
-#: ../../mod/admin.php:597
+#: ../../mod/admin.php:600
 msgid "Accounts abandoned after x days"
 msgstr "Les comptes sont abandonnés après x jours"
 
-#: ../../mod/admin.php:597
+#: ../../mod/admin.php:600
 msgid ""
 "Will not waste system resources polling external sites for abandonded "
 "accounts. Enter 0 for no time limit."
 msgstr "Pour ne pas gaspiller les ressources système, on cesse d'interroger les sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette fonction."
 
-#: ../../mod/admin.php:598
+#: ../../mod/admin.php:601
 msgid "Allowed friend domains"
 msgstr "Domaines autorisés"
 
-#: ../../mod/admin.php:598
+#: ../../mod/admin.php:601
 msgid ""
 "Comma separated list of domains which are allowed to establish friendships "
 "with this site. Wildcards are accepted. Empty to allow any domains"
 msgstr "Une liste de domaines, séparés par des virgules, autorisés à établir des relations avec les utilisateurs de ce site. Les '*' sont acceptés. Laissez vide pour autoriser tous les domaines"
 
-#: ../../mod/admin.php:599
+#: ../../mod/admin.php:602
 msgid "Allowed email domains"
 msgstr "Domaines courriel autorisés"
 
-#: ../../mod/admin.php:599
+#: ../../mod/admin.php:602
 msgid ""
 "Comma separated list of domains which are allowed in email addresses for "
 "registrations to this site. Wildcards are accepted. Empty to allow any "
 "domains"
 msgstr "Liste de domaines - séparés par des virgules - dont les adresses e-mail sont autorisées à s'inscrire sur ce site. Les '*' sont acceptées. Laissez vide pour autoriser tous les domaines"
 
-#: ../../mod/admin.php:600
+#: ../../mod/admin.php:603
 msgid "Block public"
 msgstr "Interdire la publication globale"
 
-#: ../../mod/admin.php:600
+#: ../../mod/admin.php:603
 msgid ""
 "Check to block public access to all otherwise public personal pages on this "
 "site unless you are currently logged in."
 msgstr "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques."
 
-#: ../../mod/admin.php:601
+#: ../../mod/admin.php:604
 msgid "Force publish"
 msgstr "Forcer la publication globale"
 
-#: ../../mod/admin.php:601
+#: ../../mod/admin.php:604
 msgid ""
 "Check to force all profiles on this site to be listed in the site directory."
 msgstr "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site."
 
-#: ../../mod/admin.php:602
+#: ../../mod/admin.php:605
 msgid "Global directory update URL"
 msgstr "URL de mise-à-jour de l'annuaire global"
 
-#: ../../mod/admin.php:602
+#: ../../mod/admin.php:605
 msgid ""
 "URL to update the global directory. If this is not set, the global directory"
 " is completely unavailable to the application."
 msgstr "URL de mise-à-jour de l'annuaire global. Si vide, l'annuaire global sera complètement indisponible."
 
-#: ../../mod/admin.php:603
+#: ../../mod/admin.php:606
 msgid "Allow threaded items"
-msgstr "Activer les commentaires imbriqués"
+msgstr "autoriser le suivi des éléments par fil conducteur"
 
-#: ../../mod/admin.php:603
+#: ../../mod/admin.php:606
 msgid "Allow infinite level threading for items on this site."
 msgstr "Permettre une imbrication infinie des commentaires."
 
-#: ../../mod/admin.php:604
+#: ../../mod/admin.php:607
 msgid "Private posts by default for new users"
 msgstr "Publications privées par défaut pour les nouveaux utilisateurs"
 
-#: ../../mod/admin.php:604
+#: ../../mod/admin.php:607
 msgid ""
 "Set default post permissions for all new members to the default privacy "
 "group rather than public."
-msgstr "Rendre les posts de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde."
+msgstr "Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde."
 
-#: ../../mod/admin.php:605
+#: ../../mod/admin.php:608
 msgid "Don't include post content in email notifications"
 msgstr "Ne pas inclure le contenu posté dans l'e-mail de notification"
 
-#: ../../mod/admin.php:605
+#: ../../mod/admin.php:608
 msgid ""
 "Don't include the content of a post/comment/private message/etc. in the "
 "email notifications that are sent out from this site, as a privacy measure."
-msgstr "Ne pas inclure le contenu d'un postage/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité."
+msgstr "Ne pas inclure le contenu d'un billet/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité."
 
-#: ../../mod/admin.php:606
+#: ../../mod/admin.php:609
 msgid "Disallow public access to addons listed in the apps menu."
-msgstr ""
+msgstr "Interdire l'acces public pour les extentions listées dans le menu apps."
 
-#: ../../mod/admin.php:606
+#: ../../mod/admin.php:609
 msgid ""
 "Checking this box will restrict addons listed in the apps menu to members "
 "only."
 msgstr ""
 
-#: ../../mod/admin.php:607
+#: ../../mod/admin.php:610
 msgid "Don't embed private images in posts"
 msgstr ""
 
-#: ../../mod/admin.php:607
+#: ../../mod/admin.php:610
 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 "
@@ -2296,501 +2309,501 @@ msgid ""
 "while."
 msgstr ""
 
-#: ../../mod/admin.php:608
+#: ../../mod/admin.php:611
 msgid "Allow Users to set remote_self"
-msgstr ""
+msgstr "Autoriser les utilisateurs à définir remote_self"
 
-#: ../../mod/admin.php:608
+#: ../../mod/admin.php:611
 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
+#: ../../mod/admin.php:612
 msgid "Block multiple registrations"
 msgstr "Interdire les inscriptions multiples"
 
-#: ../../mod/admin.php:609
+#: ../../mod/admin.php:612
 msgid "Disallow users to register additional accounts for use as pages."
 msgstr "Ne pas permettre l'inscription de comptes multiples comme des pages."
 
-#: ../../mod/admin.php:610
+#: ../../mod/admin.php:613
 msgid "OpenID support"
 msgstr "Support OpenID"
 
-#: ../../mod/admin.php:610
+#: ../../mod/admin.php:613
 msgid "OpenID support for registration and logins."
 msgstr "Supporter OpenID pour les inscriptions et connexions."
 
-#: ../../mod/admin.php:611
+#: ../../mod/admin.php:614
 msgid "Fullname check"
 msgstr "Vérification du \"Prénom Nom\""
 
-#: ../../mod/admin.php:611
+#: ../../mod/admin.php:614
 msgid ""
 "Force users to register with a space between firstname and lastname in Full "
 "name, as an antispam measure"
 msgstr "Imposer l'utilisation d'un espace entre le prénom et le nom (dans le Nom complet), pour limiter les abus"
 
-#: ../../mod/admin.php:612
+#: ../../mod/admin.php:615
 msgid "UTF-8 Regular expressions"
 msgstr "Regex UTF-8"
 
-#: ../../mod/admin.php:612
+#: ../../mod/admin.php:615
 msgid "Use PHP UTF8 regular expressions"
 msgstr "Utiliser les expressions rationnelles de PHP en UTF8"
 
-#: ../../mod/admin.php:613
+#: ../../mod/admin.php:616
 msgid "Show Community Page"
 msgstr "Montrer la \"Place publique\""
 
-#: ../../mod/admin.php:613
+#: ../../mod/admin.php:616
 msgid ""
 "Display a Community page showing all recent public postings on this site."
 msgstr "Afficher une page Communauté avec toutes les publications publiques récentes du site."
 
-#: ../../mod/admin.php:614
+#: ../../mod/admin.php:617
 msgid "Enable OStatus support"
 msgstr "Activer le support d'OStatus"
 
-#: ../../mod/admin.php:614
+#: ../../mod/admin.php:617
 msgid ""
-"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
 "communications in OStatus are public, so privacy warnings will be "
 "occasionally displayed."
-msgstr "Fournir une compatibilité OStatus (identi.ca, status.net, etc.). Toutes les communications d'OStatus sont publiques, des avertissements liés à la vie privée seront affichés si utile."
+msgstr "Fourni nativement la compatibilité avec OStatus (StatusNet, GNU Social etc.). Touts les communications utilisant OStatus sont public, des avertissements liés à la vie privée seront affichés si utile."
 
-#: ../../mod/admin.php:615
+#: ../../mod/admin.php:618
 msgid "OStatus conversation completion interval"
 msgstr ""
 
-#: ../../mod/admin.php:615
+#: ../../mod/admin.php:618
 msgid ""
 "How often shall the poller check for new entries in OStatus conversations? "
 "This can be a very ressource task."
 msgstr ""
 
-#: ../../mod/admin.php:616
+#: ../../mod/admin.php:619
 msgid "Enable Diaspora support"
 msgstr "Activer le support de Diaspora"
 
-#: ../../mod/admin.php:616
+#: ../../mod/admin.php:619
 msgid "Provide built-in Diaspora network compatibility."
 msgstr "Fournir une compatibilité Diaspora intégrée."
 
-#: ../../mod/admin.php:617
+#: ../../mod/admin.php:620
 msgid "Only allow Friendica contacts"
 msgstr "N'autoriser que les contacts Friendica"
 
-#: ../../mod/admin.php:617
+#: ../../mod/admin.php:620
 msgid ""
 "All contacts must use Friendica protocols. All other built-in communication "
 "protocols disabled."
 msgstr "Tous les contacts doivent utiliser les protocoles de Friendica. Tous les autres protocoles de communication intégrés sont désactivés."
 
-#: ../../mod/admin.php:618
+#: ../../mod/admin.php:621
 msgid "Verify SSL"
 msgstr "Vérifier SSL"
 
-#: ../../mod/admin.php:618
+#: ../../mod/admin.php:621
 msgid ""
 "If you wish, you can turn on strict certificate checking. This will mean you"
 " cannot connect (at all) to self-signed SSL sites."
 msgstr "Si vous le souhaitez, vous pouvez activier la vérification stricte des certificats. Cela signifie que vous ne pourrez pas vous connecter (du tout) aux sites SSL munis d'un certificat auto-signé."
 
-#: ../../mod/admin.php:619
+#: ../../mod/admin.php:622
 msgid "Proxy user"
 msgstr "Utilisateur du proxy"
 
-#: ../../mod/admin.php:620
+#: ../../mod/admin.php:623
 msgid "Proxy URL"
 msgstr "URL du proxy"
 
-#: ../../mod/admin.php:621
+#: ../../mod/admin.php:624
 msgid "Network timeout"
 msgstr "Dépassement du délai d'attente du réseau"
 
-#: ../../mod/admin.php:621
+#: ../../mod/admin.php:624
 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)."
 
-#: ../../mod/admin.php:622
+#: ../../mod/admin.php:625
 msgid "Delivery interval"
 msgstr "Intervalle de transmission"
 
-#: ../../mod/admin.php:622
+#: ../../mod/admin.php:625
 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 "Rallonge le processus de transmissions pour réduire la charge système (en secondes). Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS, 0-1 pour les gros servers dédiés."
 
-#: ../../mod/admin.php:623
+#: ../../mod/admin.php:626
 msgid "Poll interval"
 msgstr "Intervalle de réception"
 
-#: ../../mod/admin.php:623
+#: ../../mod/admin.php:626
 msgid ""
 "Delay background polling processes by this many seconds to reduce system "
 "load. If 0, use delivery interval."
 msgstr "Rajouter un délai - en secondes - au processus de 'polling', afin de réduire la charge système. Mettre à 0 pour utiliser l'intervalle d'émission."
 
-#: ../../mod/admin.php:624
+#: ../../mod/admin.php:627
 msgid "Maximum Load Average"
 msgstr "Plafond de la charge moyenne"
 
-#: ../../mod/admin.php:624
+#: ../../mod/admin.php:627
 msgid ""
 "Maximum system load before delivery and poll processes are deferred - "
 "default 50."
 msgstr "Charge système maximale à partir de laquelle l'émission et la réception seront soumises à un délai supplémentaire. Par défaut, 50."
 
-#: ../../mod/admin.php:626
+#: ../../mod/admin.php:629
 msgid "Use MySQL full text engine"
 msgstr "Utiliser le moteur de recherche plein texte de MySQL"
 
-#: ../../mod/admin.php:626
+#: ../../mod/admin.php:629
 msgid ""
 "Activates the full text engine. Speeds up search - but can only search for "
 "four and more characters."
 msgstr "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus."
 
-#: ../../mod/admin.php:627
+#: ../../mod/admin.php:630
 msgid "Suppress Language"
-msgstr ""
+msgstr "Supprimer un langage"
 
-#: ../../mod/admin.php:627
+#: ../../mod/admin.php:630
 msgid "Suppress language information in meta information about a posting."
 msgstr ""
 
-#: ../../mod/admin.php:628
+#: ../../mod/admin.php:631
 msgid "Path to item cache"
 msgstr "Chemin vers le cache des objets."
 
-#: ../../mod/admin.php:629
+#: ../../mod/admin.php:632
 msgid "Cache duration in seconds"
 msgstr "Durée du cache en secondes"
 
-#: ../../mod/admin.php:629
+#: ../../mod/admin.php:632
 msgid ""
 "How long should the cache files be hold? Default value is 86400 seconds (One"
 " day)."
 msgstr "Combien de temps faut-il garder les fichiers du cache? La valeur par défaut est de 86400 secondes (un jour)."
 
-#: ../../mod/admin.php:630
+#: ../../mod/admin.php:633
 msgid "Path for lock file"
 msgstr "Chemin vers le ficher de verrouillage"
 
-#: ../../mod/admin.php:631
+#: ../../mod/admin.php:634
 msgid "Temp path"
 msgstr "Chemin des fichiers temporaires"
 
-#: ../../mod/admin.php:632
+#: ../../mod/admin.php:635
 msgid "Base path to installation"
 msgstr "Chemin de base de l'installation"
 
-#: ../../mod/admin.php:634
+#: ../../mod/admin.php:637
 msgid "New base url"
 msgstr ""
 
-#: ../../mod/admin.php:652
+#: ../../mod/admin.php:655
 msgid "Update has been marked successful"
 msgstr "Mise-à-jour validée comme 'réussie'"
 
-#: ../../mod/admin.php:662
+#: ../../mod/admin.php:665
 #, php-format
 msgid "Executing %s failed. Check system logs."
 msgstr "L'éxecution de %s a échoué. Vérifiez les journaux du système."
 
-#: ../../mod/admin.php:665
+#: ../../mod/admin.php:668
 #, php-format
 msgid "Update %s was successfully applied."
 msgstr "Mise-à-jour %s appliquée avec succès."
 
-#: ../../mod/admin.php:669
+#: ../../mod/admin.php:672
 #, php-format
 msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr "La mise-à-jour %s n'a pas retourné de détails. Impossible de savoir si elle a réussi."
 
-#: ../../mod/admin.php:672
+#: ../../mod/admin.php:675
 #, php-format
 msgid "Update function %s could not be found."
 msgstr "La fonction %s de la mise-à-jour n'a pu être trouvée."
 
-#: ../../mod/admin.php:687
+#: ../../mod/admin.php:690
 msgid "No failed updates."
 msgstr "Pas de mises-à-jour échouées."
 
-#: ../../mod/admin.php:691
+#: ../../mod/admin.php:694
 msgid "Failed Updates"
 msgstr "Mises-à-jour échouées"
 
-#: ../../mod/admin.php:692
+#: ../../mod/admin.php:695
 msgid ""
 "This does not include updates prior to 1139, which did not return a status."
 msgstr "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails."
 
-#: ../../mod/admin.php:693
+#: ../../mod/admin.php:696
 msgid "Mark success (if update was manually applied)"
 msgstr "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)"
 
-#: ../../mod/admin.php:694
+#: ../../mod/admin.php:697
 msgid "Attempt to execute this update step automatically"
 msgstr "Tenter d'éxecuter cette étape automatiquement"
 
-#: ../../mod/admin.php:740
+#: ../../mod/admin.php:743
 msgid "Registration successful. Email send to user"
-msgstr ""
+msgstr "Souscription réussi. Mail envoyé à l'utilisateur"
 
-#: ../../mod/admin.php:750
+#: ../../mod/admin.php:753
 #, php-format
 msgid "%s user blocked/unblocked"
 msgid_plural "%s users blocked/unblocked"
 msgstr[0] "%s utilisateur a (dé)bloqué"
 msgstr[1] "%s utilisateurs ont (dé)bloqué"
 
-#: ../../mod/admin.php:757
+#: ../../mod/admin.php:760
 #, php-format
 msgid "%s user deleted"
 msgid_plural "%s users deleted"
 msgstr[0] "%s utilisateur supprimé"
 msgstr[1] "%s utilisateurs supprimés"
 
-#: ../../mod/admin.php:796
+#: ../../mod/admin.php:799
 #, php-format
 msgid "User '%s' deleted"
 msgstr "Utilisateur '%s' supprimé"
 
-#: ../../mod/admin.php:804
+#: ../../mod/admin.php:807
 #, php-format
 msgid "User '%s' unblocked"
 msgstr "Utilisateur '%s' débloqué"
 
-#: ../../mod/admin.php:804
+#: ../../mod/admin.php:807
 #, php-format
 msgid "User '%s' blocked"
 msgstr "Utilisateur '%s' bloqué"
 
-#: ../../mod/admin.php:899
+#: ../../mod/admin.php:902
 msgid "Add User"
-msgstr ""
+msgstr "Ajouter l'utilisateur"
 
-#: ../../mod/admin.php:900
+#: ../../mod/admin.php:903
 msgid "select all"
 msgstr "tout sélectionner"
 
-#: ../../mod/admin.php:901
+#: ../../mod/admin.php:904
 msgid "User registrations waiting for confirm"
 msgstr "Inscriptions d'utilisateurs en attente de confirmation"
 
-#: ../../mod/admin.php:902
+#: ../../mod/admin.php:905
 msgid "User waiting for permanent deletion"
 msgstr ""
 
-#: ../../mod/admin.php:903
+#: ../../mod/admin.php:906
 msgid "Request date"
 msgstr "Date de la demande"
 
-#: ../../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
+#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919
+#: ../../mod/admin.php:932 ../../mod/crepair.php:150
+#: ../../mod/settings.php:611 ../../mod/settings.php:637
 msgid "Name"
 msgstr "Nom"
 
-#: ../../mod/admin.php:903 ../../mod/admin.php:915 ../../mod/admin.php:916
-#: ../../mod/admin.php:931 ../../include/contact_selectors.php:79
+#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919
+#: ../../mod/admin.php:934 ../../include/contact_selectors.php:79
 #: ../../include/contact_selectors.php:86
 msgid "Email"
 msgstr "Courriel"
 
-#: ../../mod/admin.php:904
+#: ../../mod/admin.php:907
 msgid "No registrations."
 msgstr "Pas d'inscriptions."
 
-#: ../../mod/admin.php:905 ../../mod/notifications.php:161
+#: ../../mod/admin.php:908 ../../mod/notifications.php:161
 #: ../../mod/notifications.php:208
 msgid "Approve"
 msgstr "Approuver"
 
-#: ../../mod/admin.php:906
+#: ../../mod/admin.php:909
 msgid "Deny"
 msgstr "Rejetter"
 
-#: ../../mod/admin.php:908 ../../mod/contacts.php:425
-#: ../../mod/contacts.php:484 ../../mod/contacts.php:692
+#: ../../mod/admin.php:911 ../../mod/contacts.php:431
+#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
 msgid "Block"
 msgstr "Bloquer"
 
-#: ../../mod/admin.php:909 ../../mod/contacts.php:425
-#: ../../mod/contacts.php:484 ../../mod/contacts.php:692
+#: ../../mod/admin.php:912 ../../mod/contacts.php:431
+#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
 msgid "Unblock"
 msgstr "Débloquer"
 
-#: ../../mod/admin.php:910
+#: ../../mod/admin.php:913
 msgid "Site admin"
 msgstr "Administration du Site"
 
-#: ../../mod/admin.php:911
+#: ../../mod/admin.php:914
 msgid "Account expired"
 msgstr "Compte expiré"
 
-#: ../../mod/admin.php:914
+#: ../../mod/admin.php:917
 msgid "New User"
-msgstr ""
+msgstr "Nouvel utilisateur"
 
-#: ../../mod/admin.php:915 ../../mod/admin.php:916
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
 msgid "Register date"
 msgstr "Date d'inscription"
 
-#: ../../mod/admin.php:915 ../../mod/admin.php:916
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
 msgid "Last login"
 msgstr "Dernière connexion"
 
-#: ../../mod/admin.php:915 ../../mod/admin.php:916
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
 msgid "Last item"
 msgstr "Dernier élément"
 
-#: ../../mod/admin.php:915
+#: ../../mod/admin.php:918
 msgid "Deleted since"
 msgstr ""
 
-#: ../../mod/admin.php:916
+#: ../../mod/admin.php:919 ../../mod/settings.php:36
 msgid "Account"
 msgstr "Compte"
 
-#: ../../mod/admin.php:918
+#: ../../mod/admin.php:921
 msgid ""
 "Selected users will be deleted!\\n\\nEverything these users had posted on "
 "this site will be permanently deleted!\\n\\nAre you sure?"
 msgstr "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?"
 
-#: ../../mod/admin.php:919
+#: ../../mod/admin.php:922
 msgid ""
 "The user {0} will be deleted!\\n\\nEverything this user has posted on this "
 "site will be permanently deleted!\\n\\nAre you sure?"
 msgstr "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?"
 
-#: ../../mod/admin.php:929
+#: ../../mod/admin.php:932
 msgid "Name of the new user."
-msgstr ""
+msgstr "Nom du nouvel utilisateur."
 
-#: ../../mod/admin.php:930
+#: ../../mod/admin.php:933
 msgid "Nickname"
-msgstr ""
+msgstr "Pseudo"
 
-#: ../../mod/admin.php:930
+#: ../../mod/admin.php:933
 msgid "Nickname of the new user."
-msgstr ""
+msgstr "Pseudo du nouvel utilisateur."
 
-#: ../../mod/admin.php:931
+#: ../../mod/admin.php:934
 msgid "Email address of the new user."
-msgstr ""
+msgstr "Adresse mail du nouvel utilisateur."
 
-#: ../../mod/admin.php:964
+#: ../../mod/admin.php:967
 #, php-format
 msgid "Plugin %s disabled."
 msgstr "Extension %s désactivée."
 
-#: ../../mod/admin.php:968
+#: ../../mod/admin.php:971
 #, php-format
 msgid "Plugin %s enabled."
 msgstr "Extension %s activée."
 
-#: ../../mod/admin.php:978 ../../mod/admin.php:1181
+#: ../../mod/admin.php:981 ../../mod/admin.php:1195
 msgid "Disable"
 msgstr "Désactiver"
 
-#: ../../mod/admin.php:980 ../../mod/admin.php:1183
+#: ../../mod/admin.php:983 ../../mod/admin.php:1197
 msgid "Enable"
 msgstr "Activer"
 
-#: ../../mod/admin.php:1003 ../../mod/admin.php:1211
+#: ../../mod/admin.php:1006 ../../mod/admin.php:1225
 msgid "Toggle"
 msgstr "Activer/Désactiver"
 
-#: ../../mod/admin.php:1011 ../../mod/admin.php:1221
+#: ../../mod/admin.php:1014 ../../mod/admin.php:1235
 msgid "Author: "
 msgstr "Auteur: "
 
-#: ../../mod/admin.php:1012 ../../mod/admin.php:1222
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1236
 msgid "Maintainer: "
 msgstr "Mainteneur: "
 
-#: ../../mod/admin.php:1141
+#: ../../mod/admin.php:1155
 msgid "No themes found."
 msgstr "Aucun thème trouvé."
 
-#: ../../mod/admin.php:1203
+#: ../../mod/admin.php:1217
 msgid "Screenshot"
 msgstr "Capture d'écran"
 
-#: ../../mod/admin.php:1249
+#: ../../mod/admin.php:1263
 msgid "[Experimental]"
 msgstr "[Expérimental]"
 
-#: ../../mod/admin.php:1250
+#: ../../mod/admin.php:1264
 msgid "[Unsupported]"
 msgstr "[Non supporté]"
 
-#: ../../mod/admin.php:1277
+#: ../../mod/admin.php:1291
 msgid "Log settings updated."
 msgstr "Réglages des journaux mis-à-jour."
 
-#: ../../mod/admin.php:1333
+#: ../../mod/admin.php:1347
 msgid "Clear"
 msgstr "Effacer"
 
-#: ../../mod/admin.php:1339
+#: ../../mod/admin.php:1353
 msgid "Enable Debugging"
-msgstr ""
+msgstr "Activer le déboggage"
 
-#: ../../mod/admin.php:1340
+#: ../../mod/admin.php:1354
 msgid "Log file"
 msgstr "Fichier de journaux"
 
-#: ../../mod/admin.php:1340
+#: ../../mod/admin.php:1354
 msgid ""
 "Must be writable by web server. Relative to your Friendica top-level "
 "directory."
 msgstr "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica."
 
-#: ../../mod/admin.php:1341
+#: ../../mod/admin.php:1355
 msgid "Log level"
 msgstr "Niveau de journalisaton"
 
-#: ../../mod/admin.php:1390 ../../mod/contacts.php:481
+#: ../../mod/admin.php:1404 ../../mod/contacts.php:487
 msgid "Update now"
 msgstr "Mettre à jour"
 
-#: ../../mod/admin.php:1391
+#: ../../mod/admin.php:1405
 msgid "Close"
 msgstr "Fermer"
 
-#: ../../mod/admin.php:1397
+#: ../../mod/admin.php:1411
 msgid "FTP Host"
 msgstr "Hôte FTP"
 
-#: ../../mod/admin.php:1398
+#: ../../mod/admin.php:1412
 msgid "FTP Path"
 msgstr "Chemin FTP"
 
-#: ../../mod/admin.php:1399
+#: ../../mod/admin.php:1413
 msgid "FTP User"
 msgstr "Utilisateur FTP"
 
-#: ../../mod/admin.php:1400
+#: ../../mod/admin.php:1414
 msgid "FTP Password"
 msgstr "Mot de passe FTP"
 
-#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:934
-#: ../../include/text.php:935 ../../include/nav.php:118
+#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:951
+#: ../../include/text.php:952 ../../include/nav.php:118
 msgid "Search"
 msgstr "Recherche"
 
 #: ../../mod/_search.php:180 ../../mod/_search.php:206
-#: ../../mod/search.php:179 ../../mod/search.php:205
-#: ../../mod/community.php:61 ../../mod/community.php:91
+#: ../../mod/search.php:170 ../../mod/search.php:196
+#: ../../mod/community.php:62 ../../mod/community.php:89
 msgid "No results."
 msgstr "Aucun résultat."
 
@@ -2813,77 +2826,77 @@ msgstr "Élément introuvable"
 
 #: ../../mod/editpost.php:39
 msgid "Edit post"
-msgstr "Éditer la publication"
+msgstr "Éditer le billet"
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1082
+#: ../../mod/editpost.php:111 ../../include/conversation.php:1090
 msgid "upload photo"
 msgstr "envoi image"
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1083
+#: ../../mod/editpost.php:112 ../../include/conversation.php:1091
 msgid "Attach file"
 msgstr "Joindre fichier"
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1084
+#: ../../mod/editpost.php:113 ../../include/conversation.php:1092
 msgid "attach file"
 msgstr "ajout fichier"
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1086
+#: ../../mod/editpost.php:115 ../../include/conversation.php:1094
 msgid "web link"
 msgstr "lien web"
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:1087
+#: ../../mod/editpost.php:116 ../../include/conversation.php:1095
 msgid "Insert video link"
 msgstr "Insérer un lien video"
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:1088
+#: ../../mod/editpost.php:117 ../../include/conversation.php:1096
 msgid "video link"
 msgstr "lien vidéo"
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1089
+#: ../../mod/editpost.php:118 ../../include/conversation.php:1097
 msgid "Insert audio link"
 msgstr "Insérer un lien audio"
 
-#: ../../mod/editpost.php:119 ../../include/conversation.php:1090
+#: ../../mod/editpost.php:119 ../../include/conversation.php:1098
 msgid "audio link"
 msgstr "lien audio"
 
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1091
+#: ../../mod/editpost.php:120 ../../include/conversation.php:1099
 msgid "Set your location"
 msgstr "Définir votre localisation"
 
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1092
+#: ../../mod/editpost.php:121 ../../include/conversation.php:1100
 msgid "set location"
 msgstr "spéc. localisation"
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1093
+#: ../../mod/editpost.php:122 ../../include/conversation.php:1101
 msgid "Clear browser location"
 msgstr "Effacer la localisation du navigateur"
 
-#: ../../mod/editpost.php:123 ../../include/conversation.php:1094
+#: ../../mod/editpost.php:123 ../../include/conversation.php:1102
 msgid "clear location"
 msgstr "supp. localisation"
 
-#: ../../mod/editpost.php:125 ../../include/conversation.php:1100
+#: ../../mod/editpost.php:125 ../../include/conversation.php:1108
 msgid "Permission settings"
 msgstr "Réglages des permissions"
 
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1109
+#: ../../mod/editpost.php:133 ../../include/conversation.php:1117
 msgid "CC: email addresses"
 msgstr "CC: adresses de courriel"
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1110
+#: ../../mod/editpost.php:134 ../../include/conversation.php:1118
 msgid "Public post"
-msgstr "Notice publique"
+msgstr "Billet publique"
 
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1096
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1104
 msgid "Set title"
 msgstr "Définir un titre"
 
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1098
+#: ../../mod/editpost.php:139 ../../include/conversation.php:1106
 msgid "Categories (comma-separated list)"
 msgstr "Catégories (séparées par des virgules)"
 
-#: ../../mod/editpost.php:140 ../../include/conversation.php:1112
+#: ../../mod/editpost.php:140 ../../include/conversation.php:1120
 msgid "Example: bob@example.com, mary@example.com"
 msgstr "Exemple: bob@exemple.com, mary@exemple.com"
 
@@ -2912,7 +2925,7 @@ msgstr "Merci de vous connecter."
 msgid "Find on this site"
 msgstr "Trouver sur ce site"
 
-#: ../../mod/directory.php:59 ../../mod/contacts.php:685
+#: ../../mod/directory.php:59 ../../mod/contacts.php:693
 msgid "Finding: "
 msgstr "Trouvé: "
 
@@ -2920,12 +2933,12 @@ msgstr "Trouvé: "
 msgid "Site Directory"
 msgstr "Annuaire local"
 
-#: ../../mod/directory.php:61 ../../mod/contacts.php:686
+#: ../../mod/directory.php:61 ../../mod/contacts.php:694
 #: ../../include/contact_widgets.php:33
 msgid "Find"
 msgstr "Trouver"
 
-#: ../../mod/directory.php:111 ../../mod/profiles.php:686
+#: ../../mod/directory.php:111 ../../mod/profiles.php:690
 msgid "Age: "
 msgstr "Age: "
 
@@ -3054,7 +3067,7 @@ msgstr "Informations de confidentialité indisponibles."
 msgid "Visible to:"
 msgstr "Visible par:"
 
-#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:937
+#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:954
 msgid "Save"
 msgstr "Sauver"
 
@@ -3151,7 +3164,7 @@ msgstr "URL de profil invalide."
 msgid "Disallowed profile URL."
 msgstr "URL de profil interdite."
 
-#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:174
+#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180
 msgid "Failed to update contact record."
 msgstr "Échec de mise-à-jour du contact."
 
@@ -3187,7 +3200,7 @@ msgstr "Merci de confirmer votre demande d'introduction auprès de %s."
 msgid "Confirm"
 msgstr "Confirmer"
 
-#: ../../mod/dfrn_request.php:716 ../../include/items.php:3532
+#: ../../mod/dfrn_request.php:716 ../../include/items.php:3703
 msgid "[Name Withheld]"
 msgstr "[Nom non-publié]"
 
@@ -3239,7 +3252,7 @@ msgstr "Friendica"
 msgid "StatusNet/Federated Social Web"
 msgstr "StatusNet/Federated Social Web"
 
-#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:722
+#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:731
 #: ../../include/contact_selectors.php:80
 msgid "Diaspora"
 msgstr "Diaspora"
@@ -3265,7 +3278,7 @@ msgstr "Envoyer la requête"
 msgid "[Embedded content - reload page to view]"
 msgstr "[contenu incorporé - rechargez la page pour le voir]"
 
-#: ../../mod/content.php:496 ../../include/conversation.php:686
+#: ../../mod/content.php:496 ../../include/conversation.php:688
 msgid "View in context"
 msgstr "Voir dans le contexte"
 
@@ -3273,10 +3286,10 @@ msgstr "Voir dans le contexte"
 #, php-format
 msgid "%d contact edited."
 msgid_plural "%d contacts edited"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "%d contact édité"
+msgstr[1] "%d contacts édités."
 
-#: ../../mod/contacts.php:135 ../../mod/contacts.php:258
+#: ../../mod/contacts.php:135 ../../mod/contacts.php:264
 msgid "Could not access contact record."
 msgstr "Impossible d'accéder à l'enregistrement du contact."
 
@@ -3284,894 +3297,910 @@ msgstr "Impossible d'accéder à l'enregistrement du contact."
 msgid "Could not locate selected profile."
 msgstr "Impossible de localiser le profil séléctionné."
 
-#: ../../mod/contacts.php:172
+#: ../../mod/contacts.php:178
 msgid "Contact updated."
 msgstr "Contact mis-à-jour."
 
-#: ../../mod/contacts.php:272
+#: ../../mod/contacts.php:278
 msgid "Contact has been blocked"
 msgstr "Le contact a été bloqué"
 
-#: ../../mod/contacts.php:272
+#: ../../mod/contacts.php:278
 msgid "Contact has been unblocked"
 msgstr "Le contact n'est plus bloqué"
 
-#: ../../mod/contacts.php:282
+#: ../../mod/contacts.php:288
 msgid "Contact has been ignored"
 msgstr "Le contact a été ignoré"
 
-#: ../../mod/contacts.php:282
+#: ../../mod/contacts.php:288
 msgid "Contact has been unignored"
 msgstr "Le contact n'est plus ignoré"
 
-#: ../../mod/contacts.php:293
+#: ../../mod/contacts.php:299
 msgid "Contact has been archived"
 msgstr "Contact archivé"
 
-#: ../../mod/contacts.php:293
+#: ../../mod/contacts.php:299
 msgid "Contact has been unarchived"
 msgstr "Contact désarchivé"
 
-#: ../../mod/contacts.php:318 ../../mod/contacts.php:689
+#: ../../mod/contacts.php:324 ../../mod/contacts.php:697
 msgid "Do you really want to delete this contact?"
 msgstr "Voulez-vous vraiment supprimer ce contact?"
 
-#: ../../mod/contacts.php:335
+#: ../../mod/contacts.php:341
 msgid "Contact has been removed."
 msgstr "Ce contact a été retiré."
 
-#: ../../mod/contacts.php:373
+#: ../../mod/contacts.php:379
 #, php-format
 msgid "You are mutual friends with %s"
 msgstr "Vous êtes ami (et réciproquement) avec %s"
 
-#: ../../mod/contacts.php:377
+#: ../../mod/contacts.php:383
 #, php-format
 msgid "You are sharing with %s"
 msgstr "Vous partagez avec %s"
 
-#: ../../mod/contacts.php:382
+#: ../../mod/contacts.php:388
 #, php-format
 msgid "%s is sharing with you"
 msgstr "%s partage avec vous"
 
-#: ../../mod/contacts.php:399
+#: ../../mod/contacts.php:405
 msgid "Private communications are not available for this contact."
 msgstr "Les communications privées ne sont pas disponibles pour ce contact."
 
-#: ../../mod/contacts.php:406
+#: ../../mod/contacts.php:412
 msgid "(Update was successful)"
 msgstr "(Mise à jour effectuée avec succès)"
 
-#: ../../mod/contacts.php:406
+#: ../../mod/contacts.php:412
 msgid "(Update was not successful)"
 msgstr "(Mise à jour échouée)"
 
-#: ../../mod/contacts.php:408
+#: ../../mod/contacts.php:414
 msgid "Suggest friends"
 msgstr "Suggérer amitié/contact"
 
-#: ../../mod/contacts.php:412
+#: ../../mod/contacts.php:418
 #, php-format
 msgid "Network type: %s"
 msgstr "Type de réseau %s"
 
-#: ../../mod/contacts.php:415 ../../include/contact_widgets.php:199
+#: ../../mod/contacts.php:421 ../../include/contact_widgets.php:199
 #, php-format
 msgid "%d contact in common"
 msgid_plural "%d contacts in common"
 msgstr[0] "%d contact en commun"
 msgstr[1] "%d contacts en commun"
 
-#: ../../mod/contacts.php:420
+#: ../../mod/contacts.php:426
 msgid "View all contacts"
 msgstr "Voir tous les contacts"
 
-#: ../../mod/contacts.php:428
+#: ../../mod/contacts.php:434
 msgid "Toggle Blocked status"
 msgstr "(dés)activer l'état \"bloqué\""
 
-#: ../../mod/contacts.php:431 ../../mod/contacts.php:485
-#: ../../mod/contacts.php:693
+#: ../../mod/contacts.php:437 ../../mod/contacts.php:491
+#: ../../mod/contacts.php:701
 msgid "Unignore"
 msgstr "Ne plus ignorer"
 
-#: ../../mod/contacts.php:431 ../../mod/contacts.php:485
-#: ../../mod/contacts.php:693 ../../mod/notifications.php:51
+#: ../../mod/contacts.php:437 ../../mod/contacts.php:491
+#: ../../mod/contacts.php:701 ../../mod/notifications.php:51
 #: ../../mod/notifications.php:164 ../../mod/notifications.php:210
 msgid "Ignore"
 msgstr "Ignorer"
 
-#: ../../mod/contacts.php:434
+#: ../../mod/contacts.php:440
 msgid "Toggle Ignored status"
 msgstr "(dés)activer l'état \"ignoré\""
 
-#: ../../mod/contacts.php:438 ../../mod/contacts.php:694
+#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
 msgid "Unarchive"
 msgstr "Désarchiver"
 
-#: ../../mod/contacts.php:438 ../../mod/contacts.php:694
+#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
 msgid "Archive"
 msgstr "Archiver"
 
-#: ../../mod/contacts.php:441
+#: ../../mod/contacts.php:447
 msgid "Toggle Archive status"
 msgstr "(dés)activer l'état \"archivé\""
 
-#: ../../mod/contacts.php:444
+#: ../../mod/contacts.php:450
 msgid "Repair"
 msgstr "Réparer"
 
-#: ../../mod/contacts.php:447
+#: ../../mod/contacts.php:453
 msgid "Advanced Contact Settings"
 msgstr "Réglages avancés du contact"
 
-#: ../../mod/contacts.php:453
+#: ../../mod/contacts.php:459
 msgid "Communications lost with this contact!"
 msgstr "Communications perdues avec ce contact !"
 
-#: ../../mod/contacts.php:456
+#: ../../mod/contacts.php:462
 msgid "Contact Editor"
 msgstr "Éditeur de contact"
 
-#: ../../mod/contacts.php:459
+#: ../../mod/contacts.php:465
 msgid "Profile Visibility"
 msgstr "Visibilité du profil"
 
-#: ../../mod/contacts.php:460
+#: ../../mod/contacts.php:466
 #, php-format
 msgid ""
 "Please choose the profile you would like to display to %s when viewing your "
 "profile securely."
 msgstr "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée."
 
-#: ../../mod/contacts.php:461
+#: ../../mod/contacts.php:467
 msgid "Contact Information / Notes"
 msgstr "Informations de contact / Notes"
 
-#: ../../mod/contacts.php:462
+#: ../../mod/contacts.php:468
 msgid "Edit contact notes"
 msgstr "Éditer les notes des contacts"
 
-#: ../../mod/contacts.php:467 ../../mod/contacts.php:657
+#: ../../mod/contacts.php:473 ../../mod/contacts.php:665
 #: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
 #, php-format
 msgid "Visit %s's profile [%s]"
 msgstr "Visiter le profil de %s [%s]"
 
-#: ../../mod/contacts.php:468
+#: ../../mod/contacts.php:474
 msgid "Block/Unblock contact"
 msgstr "Bloquer/débloquer ce contact"
 
-#: ../../mod/contacts.php:469
+#: ../../mod/contacts.php:475
 msgid "Ignore contact"
 msgstr "Ignorer ce contact"
 
-#: ../../mod/contacts.php:470
+#: ../../mod/contacts.php:476
 msgid "Repair URL settings"
 msgstr "Réparer les réglages d'URL"
 
-#: ../../mod/contacts.php:471
+#: ../../mod/contacts.php:477
 msgid "View conversations"
 msgstr "Voir les conversations"
 
-#: ../../mod/contacts.php:473
+#: ../../mod/contacts.php:479
 msgid "Delete contact"
 msgstr "Effacer ce contact"
 
-#: ../../mod/contacts.php:477
+#: ../../mod/contacts.php:483
 msgid "Last update:"
 msgstr "Dernière mise-à-jour :"
 
-#: ../../mod/contacts.php:479
+#: ../../mod/contacts.php:485
 msgid "Update public posts"
 msgstr "Met ses entrées publiques à jour: "
 
-#: ../../mod/contacts.php:488
+#: ../../mod/contacts.php:494
 msgid "Currently blocked"
 msgstr "Actuellement bloqué"
 
-#: ../../mod/contacts.php:489
+#: ../../mod/contacts.php:495
 msgid "Currently ignored"
 msgstr "Actuellement ignoré"
 
-#: ../../mod/contacts.php:490
+#: ../../mod/contacts.php:496
 msgid "Currently archived"
 msgstr "Actuellement archivé"
 
-#: ../../mod/contacts.php:491 ../../mod/notifications.php:157
+#: ../../mod/contacts.php:497 ../../mod/notifications.php:157
 #: ../../mod/notifications.php:204
 msgid "Hide this contact from others"
 msgstr "Cacher ce contact aux autres"
 
-#: ../../mod/contacts.php:491
+#: ../../mod/contacts.php:497
 msgid ""
 "Replies/likes to your public posts <strong>may</strong> still be visible"
 msgstr "Les réponses et \"j'aime\" à vos contenus publics <strong>peuvent</strong> être toujours visibles"
 
-#: ../../mod/contacts.php:542
+#: ../../mod/contacts.php:498
+msgid "Notification for new posts"
+msgstr "Notification des nouvelles publications"
+
+#: ../../mod/contacts.php:498
+msgid "Send a notification of every new post of this contact"
+msgstr ""
+
+#: ../../mod/contacts.php:499
+msgid "Fetch further information for feeds"
+msgstr ""
+
+#: ../../mod/contacts.php:550
 msgid "Suggestions"
 msgstr "Suggestions"
 
-#: ../../mod/contacts.php:545
+#: ../../mod/contacts.php:553
 msgid "Suggest potential friends"
 msgstr "Suggérer des amis potentiels"
 
-#: ../../mod/contacts.php:548 ../../mod/group.php:194
+#: ../../mod/contacts.php:556 ../../mod/group.php:194
 msgid "All Contacts"
 msgstr "Tous les contacts"
 
-#: ../../mod/contacts.php:551
+#: ../../mod/contacts.php:559
 msgid "Show all contacts"
 msgstr "Montrer tous les contacts"
 
-#: ../../mod/contacts.php:554
+#: ../../mod/contacts.php:562
 msgid "Unblocked"
 msgstr "Non-bloqués"
 
-#: ../../mod/contacts.php:557
+#: ../../mod/contacts.php:565
 msgid "Only show unblocked contacts"
 msgstr "Ne montrer que les contacts non-bloqués"
 
-#: ../../mod/contacts.php:561
+#: ../../mod/contacts.php:569
 msgid "Blocked"
 msgstr "Bloqués"
 
-#: ../../mod/contacts.php:564
+#: ../../mod/contacts.php:572
 msgid "Only show blocked contacts"
 msgstr "Ne montrer que les contacts bloqués"
 
-#: ../../mod/contacts.php:568
+#: ../../mod/contacts.php:576
 msgid "Ignored"
 msgstr "Ignorés"
 
-#: ../../mod/contacts.php:571
+#: ../../mod/contacts.php:579
 msgid "Only show ignored contacts"
 msgstr "Ne montrer que les contacts ignorés"
 
-#: ../../mod/contacts.php:575
+#: ../../mod/contacts.php:583
 msgid "Archived"
 msgstr "Archivés"
 
-#: ../../mod/contacts.php:578
+#: ../../mod/contacts.php:586
 msgid "Only show archived contacts"
 msgstr "Ne montrer que les contacts archivés"
 
-#: ../../mod/contacts.php:582
+#: ../../mod/contacts.php:590
 msgid "Hidden"
 msgstr "Cachés"
 
-#: ../../mod/contacts.php:585
+#: ../../mod/contacts.php:593
 msgid "Only show hidden contacts"
 msgstr "Ne montrer que les contacts masqués"
 
-#: ../../mod/contacts.php:633
+#: ../../mod/contacts.php:641
 msgid "Mutual Friendship"
 msgstr "Relation réciproque"
 
-#: ../../mod/contacts.php:637
+#: ../../mod/contacts.php:645
 msgid "is a fan of yours"
 msgstr "Vous suit"
 
-#: ../../mod/contacts.php:641
+#: ../../mod/contacts.php:649
 msgid "you are a fan of"
 msgstr "Vous le/la suivez"
 
-#: ../../mod/contacts.php:658 ../../mod/nogroup.php:41
+#: ../../mod/contacts.php:666 ../../mod/nogroup.php:41
 msgid "Edit contact"
 msgstr "Éditer le contact"
 
-#: ../../mod/contacts.php:684
+#: ../../mod/contacts.php:692
 msgid "Search your contacts"
 msgstr "Rechercher dans vos contacts"
 
-#: ../../mod/contacts.php:691 ../../mod/settings.php:126
-#: ../../mod/settings.php:627
+#: ../../mod/contacts.php:699 ../../mod/settings.php:132
+#: ../../mod/settings.php:635
 msgid "Update"
 msgstr "Mises-à-jour"
 
-#: ../../mod/settings.php:28 ../../mod/photos.php:79
+#: ../../mod/settings.php:29 ../../mod/photos.php:80
 msgid "everybody"
 msgstr "tout le monde"
 
-#: ../../mod/settings.php:35 ../../mod/uexport.php:9 ../../include/nav.php:167
-msgid "Account settings"
-msgstr "Compte"
-
-#: ../../mod/settings.php:40
+#: ../../mod/settings.php:41
 msgid "Additional features"
 msgstr "Fonctions supplémentaires"
 
-#: ../../mod/settings.php:45 ../../mod/uexport.php:14
-msgid "Display settings"
-msgstr "Affichage"
+#: ../../mod/settings.php:46
+msgid "Display"
+msgstr "Afficher"
 
-#: ../../mod/settings.php:51 ../../mod/uexport.php:20
-msgid "Connector settings"
-msgstr "Connecteurs"
+#: ../../mod/settings.php:52 ../../mod/settings.php:775
+msgid "Social Networks"
+msgstr "Réseaux sociaux"
 
-#: ../../mod/settings.php:56 ../../mod/uexport.php:25
-msgid "Plugin settings"
-msgstr "Extensions"
+#: ../../mod/settings.php:62 ../../include/nav.php:167
+msgid "Delegations"
+msgstr "Délégations"
 
-#: ../../mod/settings.php:61 ../../mod/uexport.php:30
+#: ../../mod/settings.php:67
 msgid "Connected apps"
 msgstr "Applications connectées"
 
-#: ../../mod/settings.php:66 ../../mod/uexport.php:35 ../../mod/uexport.php:80
+#: ../../mod/settings.php:72 ../../mod/uexport.php:85
 msgid "Export personal data"
 msgstr "Exporter"
 
-#: ../../mod/settings.php:71 ../../mod/uexport.php:40
+#: ../../mod/settings.php:77
 msgid "Remove account"
 msgstr "Supprimer le compte"
 
-#: ../../mod/settings.php:123
+#: ../../mod/settings.php:129
 msgid "Missing some important data!"
 msgstr "Il manque certaines informations importantes!"
 
-#: ../../mod/settings.php:232
+#: ../../mod/settings.php:238
 msgid "Failed to connect with email account using the settings provided."
 msgstr "Impossible de se connecter au compte courriel configuré."
 
-#: ../../mod/settings.php:237
+#: ../../mod/settings.php:243
 msgid "Email settings updated."
 msgstr "Réglages de courriel mis-à-jour."
 
-#: ../../mod/settings.php:252
+#: ../../mod/settings.php:258
 msgid "Features updated"
 msgstr "Fonctionnalités mises à jour"
 
-#: ../../mod/settings.php:311
+#: ../../mod/settings.php:319
 msgid "Relocate message has been send to your contacts"
 msgstr ""
 
-#: ../../mod/settings.php:325
+#: ../../mod/settings.php:333
 msgid "Passwords do not match. Password unchanged."
 msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué."
 
-#: ../../mod/settings.php:330
+#: ../../mod/settings.php:338
 msgid "Empty passwords are not allowed. Password unchanged."
 msgstr "Les mots de passe vides sont interdits. Aucun changement appliqué."
 
-#: ../../mod/settings.php:338
+#: ../../mod/settings.php:346
 msgid "Wrong password."
-msgstr ""
+msgstr "Mauvais mot de passe."
 
-#: ../../mod/settings.php:349
+#: ../../mod/settings.php:357
 msgid "Password changed."
 msgstr "Mots de passe changés."
 
-#: ../../mod/settings.php:351
+#: ../../mod/settings.php:359
 msgid "Password update failed. Please try again."
 msgstr "Le changement de mot de passe a échoué. Merci de recommencer."
 
-#: ../../mod/settings.php:416
+#: ../../mod/settings.php:424
 msgid " Please use a shorter name."
 msgstr " Merci d'utiliser un nom plus court."
 
-#: ../../mod/settings.php:418
+#: ../../mod/settings.php:426
 msgid " Name too short."
 msgstr " Nom trop court."
 
-#: ../../mod/settings.php:427
+#: ../../mod/settings.php:435
 msgid "Wrong Password"
-msgstr ""
+msgstr "Mauvais mot de passe"
 
-#: ../../mod/settings.php:432
+#: ../../mod/settings.php:440
 msgid " Not valid email."
 msgstr " Email invalide."
 
-#: ../../mod/settings.php:438
+#: ../../mod/settings.php:446
 msgid " Cannot change to that email."
 msgstr " Impossible de changer pour cet email."
 
-#: ../../mod/settings.php:493
+#: ../../mod/settings.php:501
 msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut."
 
-#: ../../mod/settings.php:497
+#: ../../mod/settings.php:505
 msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr "Ce forum privé n'a pas de paramètres de vie privée ni de paramètres de confidentialité par défaut."
 
-#: ../../mod/settings.php:527
+#: ../../mod/settings.php:535
 msgid "Settings updated."
 msgstr "Réglages mis à jour."
 
-#: ../../mod/settings.php:600 ../../mod/settings.php:626
-#: ../../mod/settings.php:662
+#: ../../mod/settings.php:608 ../../mod/settings.php:634
+#: ../../mod/settings.php:670
 msgid "Add application"
 msgstr "Ajouter une application"
 
-#: ../../mod/settings.php:604 ../../mod/settings.php:630
+#: ../../mod/settings.php:612 ../../mod/settings.php:638
 msgid "Consumer Key"
 msgstr "Clé utilisateur"
 
-#: ../../mod/settings.php:605 ../../mod/settings.php:631
+#: ../../mod/settings.php:613 ../../mod/settings.php:639
 msgid "Consumer Secret"
 msgstr "Secret utilisateur"
 
-#: ../../mod/settings.php:606 ../../mod/settings.php:632
+#: ../../mod/settings.php:614 ../../mod/settings.php:640
 msgid "Redirect"
 msgstr "Rediriger"
 
-#: ../../mod/settings.php:607 ../../mod/settings.php:633
+#: ../../mod/settings.php:615 ../../mod/settings.php:641
 msgid "Icon url"
 msgstr "URL de l'icône"
 
-#: ../../mod/settings.php:618
+#: ../../mod/settings.php:626
 msgid "You can't edit this application."
 msgstr "Vous ne pouvez pas éditer cette application."
 
-#: ../../mod/settings.php:661
+#: ../../mod/settings.php:669
 msgid "Connected Apps"
 msgstr "Applications connectées"
 
-#: ../../mod/settings.php:665
+#: ../../mod/settings.php:673
 msgid "Client key starts with"
 msgstr "La clé cliente commence par"
 
-#: ../../mod/settings.php:666
+#: ../../mod/settings.php:674
 msgid "No name"
 msgstr "Sans nom"
 
-#: ../../mod/settings.php:667
+#: ../../mod/settings.php:675
 msgid "Remove authorization"
 msgstr "Révoquer l'autorisation"
 
-#: ../../mod/settings.php:679
+#: ../../mod/settings.php:687
 msgid "No Plugin settings configured"
 msgstr "Pas de réglages d'extensions configurés"
 
-#: ../../mod/settings.php:687
+#: ../../mod/settings.php:695
 msgid "Plugin Settings"
 msgstr "Extensions"
 
-#: ../../mod/settings.php:701
+#: ../../mod/settings.php:709
 msgid "Off"
 msgstr "Éteint"
 
-#: ../../mod/settings.php:701
+#: ../../mod/settings.php:709
 msgid "On"
 msgstr "Allumé"
 
-#: ../../mod/settings.php:709
+#: ../../mod/settings.php:717
 msgid "Additional Features"
 msgstr "Fonctions supplémentaires"
 
-#: ../../mod/settings.php:722 ../../mod/settings.php:723
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
 #, php-format
 msgid "Built-in support for %s connectivity is %s"
 msgstr "Le support natif pour la connectivité %s est %s"
 
-#: ../../mod/settings.php:722 ../../mod/settings.php:723
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
 msgid "enabled"
 msgstr "activé"
 
-#: ../../mod/settings.php:722 ../../mod/settings.php:723
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
 msgid "disabled"
 msgstr "désactivé"
 
-#: ../../mod/settings.php:723
+#: ../../mod/settings.php:732
 msgid "StatusNet"
 msgstr "StatusNet"
 
-#: ../../mod/settings.php:755
+#: ../../mod/settings.php:768
 msgid "Email access is disabled on this site."
 msgstr "L'accès courriel est désactivé sur ce site."
 
-#: ../../mod/settings.php:762
-msgid "Connector Settings"
-msgstr "Connecteurs"
-
-#: ../../mod/settings.php:767
+#: ../../mod/settings.php:780
 msgid "Email/Mailbox Setup"
 msgstr "Réglages de courriel/boîte à lettre"
 
-#: ../../mod/settings.php:768
+#: ../../mod/settings.php:781
 msgid ""
 "If you wish to communicate with email contacts using this service "
 "(optional), please specify how to connect to your mailbox."
 msgstr "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte."
 
-#: ../../mod/settings.php:769
+#: ../../mod/settings.php:782
 msgid "Last successful email check:"
 msgstr "Dernière vérification réussie des courriels:"
 
-#: ../../mod/settings.php:771
+#: ../../mod/settings.php:784
 msgid "IMAP server name:"
 msgstr "Nom du serveur IMAP:"
 
-#: ../../mod/settings.php:772
+#: ../../mod/settings.php:785
 msgid "IMAP port:"
 msgstr "Port IMAP:"
 
-#: ../../mod/settings.php:773
+#: ../../mod/settings.php:786
 msgid "Security:"
 msgstr "Sécurité:"
 
-#: ../../mod/settings.php:773 ../../mod/settings.php:778
+#: ../../mod/settings.php:786 ../../mod/settings.php:791
 msgid "None"
 msgstr "Aucun(e)"
 
-#: ../../mod/settings.php:774
+#: ../../mod/settings.php:787
 msgid "Email login name:"
 msgstr "Nom de connexion:"
 
-#: ../../mod/settings.php:775
+#: ../../mod/settings.php:788
 msgid "Email password:"
 msgstr "Mot de passe:"
 
-#: ../../mod/settings.php:776
+#: ../../mod/settings.php:789
 msgid "Reply-to address:"
 msgstr "Adresse de réponse:"
 
-#: ../../mod/settings.php:777
+#: ../../mod/settings.php:790
 msgid "Send public posts to all email contacts:"
 msgstr "Les notices publiques vont à tous les contacts courriel:"
 
-#: ../../mod/settings.php:778
+#: ../../mod/settings.php:791
 msgid "Action after import:"
 msgstr "Action après import:"
 
-#: ../../mod/settings.php:778
+#: ../../mod/settings.php:791
 msgid "Mark as seen"
 msgstr "Marquer comme vu"
 
-#: ../../mod/settings.php:778
+#: ../../mod/settings.php:791
 msgid "Move to folder"
 msgstr "Déplacer vers"
 
-#: ../../mod/settings.php:779
+#: ../../mod/settings.php:792
 msgid "Move to folder:"
 msgstr "Déplacer vers:"
 
-#: ../../mod/settings.php:854
+#: ../../mod/settings.php:870
 msgid "Display Settings"
 msgstr "Affichage"
 
-#: ../../mod/settings.php:860 ../../mod/settings.php:873
+#: ../../mod/settings.php:876 ../../mod/settings.php:890
 msgid "Display Theme:"
 msgstr "Thème d'affichage:"
 
-#: ../../mod/settings.php:861
+#: ../../mod/settings.php:877
 msgid "Mobile Theme:"
 msgstr "Thème mobile:"
 
-#: ../../mod/settings.php:862
+#: ../../mod/settings.php:878
 msgid "Update browser every xx seconds"
 msgstr "Mettre-à-jour l'affichage toutes les xx secondes"
 
-#: ../../mod/settings.php:862
+#: ../../mod/settings.php:878
 msgid "Minimum of 10 seconds, no maximum"
 msgstr "Délai minimum de 10 secondes, pas de maximum"
 
-#: ../../mod/settings.php:863
+#: ../../mod/settings.php:879
 msgid "Number of items to display per page:"
 msgstr "Nombre d’éléments par page:"
 
-#: ../../mod/settings.php:863 ../../mod/settings.php:864
+#: ../../mod/settings.php:879 ../../mod/settings.php:880
 msgid "Maximum of 100 items"
 msgstr "Maximum de 100 éléments"
 
-#: ../../mod/settings.php:864
+#: ../../mod/settings.php:880
 msgid "Number of items to display per page when viewed from mobile device:"
-msgstr ""
+msgstr "Nombre d'éléments a afficher par page pour un appareil mobile"
 
-#: ../../mod/settings.php:865
+#: ../../mod/settings.php:881
 msgid "Don't show emoticons"
 msgstr "Ne pas afficher les émoticônes (smileys grahiques)"
 
-#: ../../mod/settings.php:866
+#: ../../mod/settings.php:882
+msgid "Don't show notices"
+msgstr ""
+
+#: ../../mod/settings.php:883
 msgid "Infinite scroll"
 msgstr ""
 
-#: ../../mod/settings.php:942
+#: ../../mod/settings.php:960
+msgid "User Types"
+msgstr ""
+
+#: ../../mod/settings.php:961
+msgid "Community Types"
+msgstr ""
+
+#: ../../mod/settings.php:962
 msgid "Normal Account Page"
 msgstr "Compte normal"
 
-#: ../../mod/settings.php:943
+#: ../../mod/settings.php:963
 msgid "This account is a normal personal profile"
 msgstr "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)"
 
-#: ../../mod/settings.php:946
+#: ../../mod/settings.php:966
 msgid "Soapbox Page"
 msgstr "Compte \"boîte à savon\""
 
-#: ../../mod/settings.php:947
+#: ../../mod/settings.php:967
 msgid "Automatically approve all connection/friend requests as read-only fans"
 msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'"
 
-#: ../../mod/settings.php:950
+#: ../../mod/settings.php:970
 msgid "Community Forum/Celebrity Account"
 msgstr "Compte de communauté/célébrité"
 
-#: ../../mod/settings.php:951
+#: ../../mod/settings.php:971
 msgid ""
 "Automatically approve all connection/friend requests as read-write fans"
 msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans en 'lecture/écriture'"
 
-#: ../../mod/settings.php:954
+#: ../../mod/settings.php:974
 msgid "Automatic Friend Page"
 msgstr "Compte d'\"amitié automatique\""
 
-#: ../../mod/settings.php:955
+#: ../../mod/settings.php:975
 msgid "Automatically approve all connection/friend requests as friends"
 msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis"
 
-#: ../../mod/settings.php:958
+#: ../../mod/settings.php:978
 msgid "Private Forum [Experimental]"
 msgstr "Forum privé [expérimental]"
 
-#: ../../mod/settings.php:959
+#: ../../mod/settings.php:979
 msgid "Private forum - approved members only"
 msgstr "Forum privé - modéré en inscription"
 
-#: ../../mod/settings.php:971
+#: ../../mod/settings.php:991
 msgid "OpenID:"
 msgstr "OpenID:"
 
-#: ../../mod/settings.php:971
+#: ../../mod/settings.php:991
 msgid "(Optional) Allow this OpenID to login to this account."
 msgstr "&amp;nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte."
 
-#: ../../mod/settings.php:981
+#: ../../mod/settings.php:1001
 msgid "Publish your default profile in your local site directory?"
 msgstr "Publier votre profil par défaut sur l'annuaire local de ce site?"
 
-#: ../../mod/settings.php:987
+#: ../../mod/settings.php:1007
 msgid "Publish your default profile in the global social directory?"
 msgstr "Publier votre profil par défaut sur l'annuaire social global?"
 
-#: ../../mod/settings.php:995
+#: ../../mod/settings.php:1015
 msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?"
 
-#: ../../mod/settings.php:999
+#: ../../mod/settings.php:1019 ../../include/conversation.php:1055
 msgid "Hide your profile details from unknown viewers?"
 msgstr "Cacher les détails du profil aux visiteurs inconnus?"
 
-#: ../../mod/settings.php:1004
+#: ../../mod/settings.php:1024
 msgid "Allow friends to post to your profile page?"
 msgstr "Autoriser vos amis à publier sur votre profil?"
 
-#: ../../mod/settings.php:1010
+#: ../../mod/settings.php:1030
 msgid "Allow friends to tag your posts?"
 msgstr "Autoriser vos amis à tagguer vos notices?"
 
-#: ../../mod/settings.php:1016
+#: ../../mod/settings.php:1036
 msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?"
 
-#: ../../mod/settings.php:1022
+#: ../../mod/settings.php:1042
 msgid "Permit unknown people to send you private mail?"
 msgstr "Autoriser les messages privés d'inconnus?"
 
-#: ../../mod/settings.php:1030
+#: ../../mod/settings.php:1050
 msgid "Profile is <strong>not published</strong>."
 msgstr "Ce profil n'est <strong>pas publié</strong>."
 
-#: ../../mod/settings.php:1033 ../../mod/profile_photo.php:248
+#: ../../mod/settings.php:1053 ../../mod/profile_photo.php:248
 msgid "or"
 msgstr "ou"
 
-#: ../../mod/settings.php:1038
+#: ../../mod/settings.php:1058
 msgid "Your Identity Address is"
 msgstr "L'adresse de votre identité est"
 
-#: ../../mod/settings.php:1049
+#: ../../mod/settings.php:1069
 msgid "Automatically expire posts after this many days:"
 msgstr "Les publications expirent automatiquement après (en jours) :"
 
-#: ../../mod/settings.php:1049
+#: ../../mod/settings.php:1069
 msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr "Si ce champ est vide, les notices n'expireront pas. Les notices expirées seront supprimées"
 
-#: ../../mod/settings.php:1050
+#: ../../mod/settings.php:1070
 msgid "Advanced expiration settings"
 msgstr "Réglages avancés de l'expiration"
 
-#: ../../mod/settings.php:1051
+#: ../../mod/settings.php:1071
 msgid "Advanced Expiration"
 msgstr "Expiration (avancé)"
 
-#: ../../mod/settings.php:1052
+#: ../../mod/settings.php:1072
 msgid "Expire posts:"
 msgstr "Faire expirer les contenus:"
 
-#: ../../mod/settings.php:1053
+#: ../../mod/settings.php:1073
 msgid "Expire personal notes:"
 msgstr "Faire expirer les notes personnelles:"
 
-#: ../../mod/settings.php:1054
+#: ../../mod/settings.php:1074
 msgid "Expire starred posts:"
 msgstr "Faire expirer les contenus marqués:"
 
-#: ../../mod/settings.php:1055
+#: ../../mod/settings.php:1075
 msgid "Expire photos:"
 msgstr "Faire expirer les photos:"
 
-#: ../../mod/settings.php:1056
+#: ../../mod/settings.php:1076
 msgid "Only expire posts by others:"
 msgstr "Faire expirer seulement les messages des autres :"
 
-#: ../../mod/settings.php:1082
+#: ../../mod/settings.php:1102
 msgid "Account Settings"
 msgstr "Compte"
 
-#: ../../mod/settings.php:1090
+#: ../../mod/settings.php:1110
 msgid "Password Settings"
 msgstr "Réglages de mot de passe"
 
-#: ../../mod/settings.php:1091
+#: ../../mod/settings.php:1111
 msgid "New Password:"
 msgstr "Nouveau mot de passe:"
 
-#: ../../mod/settings.php:1092
+#: ../../mod/settings.php:1112
 msgid "Confirm:"
 msgstr "Confirmer:"
 
-#: ../../mod/settings.php:1092
+#: ../../mod/settings.php:1112
 msgid "Leave password fields blank unless changing"
 msgstr "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer"
 
-#: ../../mod/settings.php:1093
+#: ../../mod/settings.php:1113
 msgid "Current Password:"
-msgstr ""
+msgstr "Mot de passe actuel:"
 
-#: ../../mod/settings.php:1093 ../../mod/settings.php:1094
+#: ../../mod/settings.php:1113 ../../mod/settings.php:1114
 msgid "Your current password to confirm the changes"
-msgstr ""
+msgstr "Votre mot de passe actuel pour confirmer les modifications"
 
-#: ../../mod/settings.php:1094
+#: ../../mod/settings.php:1114
 msgid "Password:"
-msgstr ""
+msgstr "Mot de passe:"
 
-#: ../../mod/settings.php:1098
+#: ../../mod/settings.php:1118
 msgid "Basic Settings"
 msgstr "Réglages basiques"
 
-#: ../../mod/settings.php:1099 ../../include/profile_advanced.php:15
+#: ../../mod/settings.php:1119 ../../include/profile_advanced.php:15
 msgid "Full Name:"
 msgstr "Nom complet:"
 
-#: ../../mod/settings.php:1100
+#: ../../mod/settings.php:1120
 msgid "Email Address:"
 msgstr "Adresse courriel:"
 
-#: ../../mod/settings.php:1101
+#: ../../mod/settings.php:1121
 msgid "Your Timezone:"
 msgstr "Votre fuseau horaire:"
 
-#: ../../mod/settings.php:1102
+#: ../../mod/settings.php:1122
 msgid "Default Post Location:"
 msgstr "Publication par défaut depuis :"
 
-#: ../../mod/settings.php:1103
+#: ../../mod/settings.php:1123
 msgid "Use Browser Location:"
 msgstr "Utiliser la localisation géographique du navigateur:"
 
-#: ../../mod/settings.php:1106
+#: ../../mod/settings.php:1126
 msgid "Security and Privacy Settings"
 msgstr "Réglages de sécurité et vie privée"
 
-#: ../../mod/settings.php:1108
+#: ../../mod/settings.php:1128
 msgid "Maximum Friend Requests/Day:"
 msgstr "Nombre maximal de requêtes d'amitié/jour:"
 
-#: ../../mod/settings.php:1108 ../../mod/settings.php:1138
+#: ../../mod/settings.php:1128 ../../mod/settings.php:1158
 msgid "(to prevent spam abuse)"
 msgstr "(pour limiter l'impact du spam)"
 
-#: ../../mod/settings.php:1109
+#: ../../mod/settings.php:1129
 msgid "Default Post Permissions"
 msgstr "Permissions par défaut sur les articles"
 
-#: ../../mod/settings.php:1110
+#: ../../mod/settings.php:1130
 msgid "(click to open/close)"
 msgstr "(cliquer pour ouvrir/fermer)"
 
-#: ../../mod/settings.php:1119 ../../mod/photos.php:1140
-#: ../../mod/photos.php:1506
+#: ../../mod/settings.php:1139 ../../mod/photos.php:1144
+#: ../../mod/photos.php:1515
 msgid "Show to Groups"
 msgstr "Montrer aux groupes"
 
-#: ../../mod/settings.php:1120 ../../mod/photos.php:1141
-#: ../../mod/photos.php:1507
+#: ../../mod/settings.php:1140 ../../mod/photos.php:1145
+#: ../../mod/photos.php:1516
 msgid "Show to Contacts"
 msgstr "Montrer aux Contacts"
 
-#: ../../mod/settings.php:1121
+#: ../../mod/settings.php:1141
 msgid "Default Private Post"
 msgstr "Message privé par défaut"
 
-#: ../../mod/settings.php:1122
+#: ../../mod/settings.php:1142
 msgid "Default Public Post"
 msgstr "Message publique par défaut"
 
-#: ../../mod/settings.php:1126
+#: ../../mod/settings.php:1146
 msgid "Default Permissions for New Posts"
 msgstr "Permissions par défaut sur les nouveaux articles"
 
-#: ../../mod/settings.php:1138
+#: ../../mod/settings.php:1158
 msgid "Maximum private messages per day from unknown people:"
 msgstr "Maximum de messages privés d'inconnus par jour:"
 
-#: ../../mod/settings.php:1141
+#: ../../mod/settings.php:1161
 msgid "Notification Settings"
 msgstr "Réglages de notification"
 
-#: ../../mod/settings.php:1142
+#: ../../mod/settings.php:1162
 msgid "By default post a status message when:"
 msgstr "Par défaut, poster un statut quand:"
 
-#: ../../mod/settings.php:1143
+#: ../../mod/settings.php:1163
 msgid "accepting a friend request"
 msgstr "j'accepte un ami"
 
-#: ../../mod/settings.php:1144
+#: ../../mod/settings.php:1164
 msgid "joining a forum/community"
 msgstr "joignant un forum/une communauté"
 
-#: ../../mod/settings.php:1145
+#: ../../mod/settings.php:1165
 msgid "making an <em>interesting</em> profile change"
 msgstr "je fais une modification <em>intéressante</em> de mon profil"
 
-#: ../../mod/settings.php:1146
+#: ../../mod/settings.php:1166
 msgid "Send a notification email when:"
 msgstr "Envoyer un courriel de notification quand:"
 
-#: ../../mod/settings.php:1147
+#: ../../mod/settings.php:1167
 msgid "You receive an introduction"
 msgstr "Vous recevez une introduction"
 
-#: ../../mod/settings.php:1148
+#: ../../mod/settings.php:1168
 msgid "Your introductions are confirmed"
 msgstr "Vos introductions sont confirmées"
 
-#: ../../mod/settings.php:1149
+#: ../../mod/settings.php:1169
 msgid "Someone writes on your profile wall"
 msgstr "Quelqu'un écrit sur votre mur"
 
-#: ../../mod/settings.php:1150
+#: ../../mod/settings.php:1170
 msgid "Someone writes a followup comment"
 msgstr "Quelqu'un vous commente"
 
-#: ../../mod/settings.php:1151
+#: ../../mod/settings.php:1171
 msgid "You receive a private message"
 msgstr "Vous recevez un message privé"
 
-#: ../../mod/settings.php:1152
+#: ../../mod/settings.php:1172
 msgid "You receive a friend suggestion"
 msgstr "Vous avez reçu une suggestion d'ami"
 
-#: ../../mod/settings.php:1153
+#: ../../mod/settings.php:1173
 msgid "You are tagged in a post"
 msgstr "Vous avez été repéré dans une publication"
 
-#: ../../mod/settings.php:1154
+#: ../../mod/settings.php:1174
 msgid "You are poked/prodded/etc. in a post"
 msgstr "Vous avez été sollicité dans une publication"
 
-#: ../../mod/settings.php:1157
+#: ../../mod/settings.php:1177
 msgid "Advanced Account/Page Type Settings"
 msgstr "Paramètres avancés de compte/page"
 
-#: ../../mod/settings.php:1158
+#: ../../mod/settings.php:1178
 msgid "Change the behaviour of this account for special situations"
 msgstr "Modifier le comportement de ce compte dans certaines situations"
 
-#: ../../mod/settings.php:1161
+#: ../../mod/settings.php:1181
 msgid "Relocate"
 msgstr ""
 
-#: ../../mod/settings.php:1162
+#: ../../mod/settings.php:1182
 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:1163
+#: ../../mod/settings.php:1183
 msgid "Resend relocate message to contacts"
 msgstr ""
 
@@ -4195,265 +4224,265 @@ msgstr "Ce profil ne peut être cloné."
 msgid "Profile Name is required."
 msgstr "Le nom du profil est requis."
 
-#: ../../mod/profiles.php:317
+#: ../../mod/profiles.php:321
 msgid "Marital Status"
 msgstr "Statut marital"
 
-#: ../../mod/profiles.php:321
+#: ../../mod/profiles.php:325
 msgid "Romantic Partner"
 msgstr "Partenaire/conjoint"
 
-#: ../../mod/profiles.php:325
+#: ../../mod/profiles.php:329
 msgid "Likes"
 msgstr "Derniers \"J'aime\""
 
-#: ../../mod/profiles.php:329
+#: ../../mod/profiles.php:333
 msgid "Dislikes"
 msgstr "Derniers \"Je n'aime pas\""
 
-#: ../../mod/profiles.php:333
+#: ../../mod/profiles.php:337
 msgid "Work/Employment"
 msgstr "Travail/Occupation"
 
-#: ../../mod/profiles.php:336
+#: ../../mod/profiles.php:340
 msgid "Religion"
 msgstr "Religion"
 
-#: ../../mod/profiles.php:340
+#: ../../mod/profiles.php:344
 msgid "Political Views"
 msgstr "Tendance politique"
 
-#: ../../mod/profiles.php:344
+#: ../../mod/profiles.php:348
 msgid "Gender"
 msgstr "Sexe"
 
-#: ../../mod/profiles.php:348
+#: ../../mod/profiles.php:352
 msgid "Sexual Preference"
 msgstr "Préférence sexuelle"
 
-#: ../../mod/profiles.php:352
+#: ../../mod/profiles.php:356
 msgid "Homepage"
 msgstr "Site internet"
 
-#: ../../mod/profiles.php:356
+#: ../../mod/profiles.php:360
 msgid "Interests"
 msgstr "Centres d'intérêt"
 
-#: ../../mod/profiles.php:360
+#: ../../mod/profiles.php:364
 msgid "Address"
 msgstr "Adresse"
 
-#: ../../mod/profiles.php:367
+#: ../../mod/profiles.php:371
 msgid "Location"
 msgstr "Localisation"
 
-#: ../../mod/profiles.php:450
+#: ../../mod/profiles.php:454
 msgid "Profile updated."
 msgstr "Profil mis à jour."
 
-#: ../../mod/profiles.php:521
+#: ../../mod/profiles.php:525
 msgid " and "
 msgstr " et "
 
-#: ../../mod/profiles.php:529
+#: ../../mod/profiles.php:533
 msgid "public profile"
 msgstr "profil public"
 
-#: ../../mod/profiles.php:532
+#: ../../mod/profiles.php:536
 #, php-format
 msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
 msgstr "%1$s a changé %2$s en &ldquo;%3$s&rdquo;"
 
-#: ../../mod/profiles.php:533
+#: ../../mod/profiles.php:537
 #, php-format
 msgid " - Visit %1$s's %2$s"
 msgstr "Visiter le %2$s de %1$s"
 
-#: ../../mod/profiles.php:536
+#: ../../mod/profiles.php:540
 #, php-format
 msgid "%1$s has an updated %2$s, changing %3$s."
 msgstr "%1$s a mis à jour son %2$s, en modifiant %3$s."
 
-#: ../../mod/profiles.php:609
+#: ../../mod/profiles.php:613
 msgid "Hide your contact/friend list from viewers of this profile?"
 msgstr "Cacher ma liste d'amis/contacts des visiteurs de ce profil?"
 
-#: ../../mod/profiles.php:629
+#: ../../mod/profiles.php:633
 msgid "Edit Profile Details"
 msgstr "Éditer les détails du profil"
 
-#: ../../mod/profiles.php:631
+#: ../../mod/profiles.php:635
 msgid "Change Profile Photo"
 msgstr "Changer la photo du profil"
 
-#: ../../mod/profiles.php:632
+#: ../../mod/profiles.php:636
 msgid "View this profile"
 msgstr "Voir ce profil"
 
-#: ../../mod/profiles.php:633
+#: ../../mod/profiles.php:637
 msgid "Create a new profile using these settings"
 msgstr "Créer un nouveau profil en utilisant ces réglages"
 
-#: ../../mod/profiles.php:634
+#: ../../mod/profiles.php:638
 msgid "Clone this profile"
 msgstr "Cloner ce profil"
 
-#: ../../mod/profiles.php:635
+#: ../../mod/profiles.php:639
 msgid "Delete this profile"
 msgstr "Supprimer ce profil"
 
-#: ../../mod/profiles.php:636
+#: ../../mod/profiles.php:640
 msgid "Profile Name:"
 msgstr "Nom du profil:"
 
-#: ../../mod/profiles.php:637
+#: ../../mod/profiles.php:641
 msgid "Your Full Name:"
 msgstr "Votre nom complet:"
 
-#: ../../mod/profiles.php:638
+#: ../../mod/profiles.php:642
 msgid "Title/Description:"
 msgstr "Titre/Description:"
 
-#: ../../mod/profiles.php:639
+#: ../../mod/profiles.php:643
 msgid "Your Gender:"
 msgstr "Votre genre:"
 
-#: ../../mod/profiles.php:640
+#: ../../mod/profiles.php:644
 #, php-format
 msgid "Birthday (%s):"
 msgstr "Anniversaire (%s):"
 
-#: ../../mod/profiles.php:641
+#: ../../mod/profiles.php:645
 msgid "Street Address:"
 msgstr "Adresse postale:"
 
-#: ../../mod/profiles.php:642
+#: ../../mod/profiles.php:646
 msgid "Locality/City:"
 msgstr "Ville/Localité:"
 
-#: ../../mod/profiles.php:643
+#: ../../mod/profiles.php:647
 msgid "Postal/Zip Code:"
 msgstr "Code postal:"
 
-#: ../../mod/profiles.php:644
+#: ../../mod/profiles.php:648
 msgid "Country:"
 msgstr "Pays:"
 
-#: ../../mod/profiles.php:645
+#: ../../mod/profiles.php:649
 msgid "Region/State:"
 msgstr "Région/État:"
 
-#: ../../mod/profiles.php:646
+#: ../../mod/profiles.php:650
 msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
 msgstr "<span class=\"heart\">&hearts;</span> Statut marital:"
 
-#: ../../mod/profiles.php:647
+#: ../../mod/profiles.php:651
 msgid "Who: (if applicable)"
 msgstr "Qui: (si pertinent)"
 
-#: ../../mod/profiles.php:648
+#: ../../mod/profiles.php:652
 msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
 msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com"
 
-#: ../../mod/profiles.php:649
+#: ../../mod/profiles.php:653
 msgid "Since [date]:"
 msgstr "Depuis [date] :"
 
-#: ../../mod/profiles.php:650 ../../include/profile_advanced.php:46
+#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:46
 msgid "Sexual Preference:"
 msgstr "Préférence sexuelle:"
 
-#: ../../mod/profiles.php:651
+#: ../../mod/profiles.php:655
 msgid "Homepage URL:"
 msgstr "Page personnelle:"
 
-#: ../../mod/profiles.php:652 ../../include/profile_advanced.php:50
+#: ../../mod/profiles.php:656 ../../include/profile_advanced.php:50
 msgid "Hometown:"
 msgstr " Ville d'origine:"
 
-#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:54
+#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:54
 msgid "Political Views:"
 msgstr "Opinions politiques:"
 
-#: ../../mod/profiles.php:654
+#: ../../mod/profiles.php:658
 msgid "Religious Views:"
 msgstr "Opinions religieuses:"
 
-#: ../../mod/profiles.php:655
+#: ../../mod/profiles.php:659
 msgid "Public Keywords:"
 msgstr "Mots-clés publics:"
 
-#: ../../mod/profiles.php:656
+#: ../../mod/profiles.php:660
 msgid "Private Keywords:"
 msgstr "Mots-clés privés:"
 
-#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:62
+#: ../../mod/profiles.php:661 ../../include/profile_advanced.php:62
 msgid "Likes:"
 msgstr "J'aime :"
 
-#: ../../mod/profiles.php:658 ../../include/profile_advanced.php:64
+#: ../../mod/profiles.php:662 ../../include/profile_advanced.php:64
 msgid "Dislikes:"
 msgstr "Je n'aime pas :"
 
-#: ../../mod/profiles.php:659
+#: ../../mod/profiles.php:663
 msgid "Example: fishing photography software"
 msgstr "Exemple: football dessin programmation"
 
-#: ../../mod/profiles.php:660
+#: ../../mod/profiles.php:664
 msgid "(Used for suggesting potential friends, can be seen by others)"
 msgstr "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)"
 
-#: ../../mod/profiles.php:661
+#: ../../mod/profiles.php:665
 msgid "(Used for searching profiles, never shown to others)"
 msgstr "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)"
 
-#: ../../mod/profiles.php:662
+#: ../../mod/profiles.php:666
 msgid "Tell us about yourself..."
 msgstr "Parlez-nous de vous..."
 
-#: ../../mod/profiles.php:663
+#: ../../mod/profiles.php:667
 msgid "Hobbies/Interests"
 msgstr "Passe-temps/Centres d'intérêt"
 
-#: ../../mod/profiles.php:664
+#: ../../mod/profiles.php:668
 msgid "Contact information and Social Networks"
 msgstr "Coordonnées/Réseaux sociaux"
 
-#: ../../mod/profiles.php:665
+#: ../../mod/profiles.php:669
 msgid "Musical interests"
 msgstr "Goûts musicaux"
 
-#: ../../mod/profiles.php:666
+#: ../../mod/profiles.php:670
 msgid "Books, literature"
 msgstr "Lectures"
 
-#: ../../mod/profiles.php:667
+#: ../../mod/profiles.php:671
 msgid "Television"
 msgstr "Télévision"
 
-#: ../../mod/profiles.php:668
+#: ../../mod/profiles.php:672
 msgid "Film/dance/culture/entertainment"
 msgstr "Cinéma/Danse/Culture/Divertissement"
 
-#: ../../mod/profiles.php:669
+#: ../../mod/profiles.php:673
 msgid "Love/romance"
 msgstr "Amour/Romance"
 
-#: ../../mod/profiles.php:670
+#: ../../mod/profiles.php:674
 msgid "Work/employment"
 msgstr "Activité professionnelle/Occupation"
 
-#: ../../mod/profiles.php:671
+#: ../../mod/profiles.php:675
 msgid "School/education"
 msgstr "Études/Formation"
 
-#: ../../mod/profiles.php:676
+#: ../../mod/profiles.php:680
 msgid ""
 "This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
 "be visible to anybody using the internet."
 msgstr "Ceci est votre profil <strong>public</strong>.<br />Il <strong>peut</strong> être visible par n'importe quel utilisateur d'Internet."
 
-#: ../../mod/profiles.php:725
+#: ../../mod/profiles.php:729
 msgid "Edit/Manage Profiles"
 msgstr "Editer/gérer les profils"
 
@@ -4475,7 +4504,7 @@ msgstr "Groupe renommé."
 
 #: ../../mod/group.php:87
 msgid "Save Group"
-msgstr ""
+msgstr "Sauvegarder le groupe"
 
 #: ../../mod/group.php:93
 msgid "Create a group of contacts/friends."
@@ -4569,7 +4598,7 @@ msgstr "Pas plus de notifications système."
 msgid "System Notifications"
 msgstr "Notifications du système"
 
-#: ../../mod/message.php:9 ../../include/nav.php:159
+#: ../../mod/message.php:9 ../../include/nav.php:161
 msgid "New Message"
 msgstr "Nouveau message"
 
@@ -4578,7 +4607,7 @@ msgid "Unable to locate contact information."
 msgstr "Impossible de localiser les informations du contact."
 
 #: ../../mod/message.php:182 ../../mod/notifications.php:103
-#: ../../include/nav.php:156
+#: ../../include/nav.php:158
 msgid "Messages"
 msgstr "Messages"
 
@@ -4646,7 +4675,7 @@ msgstr "Pas de communications sécurisées possibles. Vous serez <strong>peut-ê
 msgid "Send Reply"
 msgstr "Répondre"
 
-#: ../../mod/like.php:170 ../../include/conversation.php:140
+#: ../../mod/like.php:169 ../../include/conversation.php:140
 #, php-format
 msgid "%1$s doesn't like %2$s's %3$s"
 msgstr "%1$s n'aime pas %3$s de %2$s"
@@ -4656,7 +4685,7 @@ msgid "Post successful."
 msgstr "Publication réussie."
 
 #: ../../mod/localtime.php:12 ../../include/event.php:11
-#: ../../include/bb2diaspora.php:393
+#: ../../include/bb2diaspora.php:133
 msgid "l F d, Y \\@ g:i A"
 msgstr "l F d, Y \\@ g:i A"
 
@@ -4689,8 +4718,8 @@ msgstr "Temps local converti : %s"
 msgid "Please select your timezone:"
 msgstr "Sélectionner votre zone :"
 
-#: ../../mod/filer.php:30 ../../include/conversation.php:1001
-#: ../../include/conversation.php:1019
+#: ../../mod/filer.php:30 ../../include/conversation.php:1004
+#: ../../include/conversation.php:1022
 msgid "Save to Folder:"
 msgstr "Sauver dans le Dossier:"
 
@@ -4718,7 +4747,7 @@ msgstr "Tous les contacts (ayant un accès sécurisé)"
 msgid "No contacts."
 msgstr "Aucun contact."
 
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:857
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:874
 msgid "View Contacts"
 msgstr "Voir les contacts"
 
@@ -4730,219 +4759,227 @@ msgstr "Recherche de personnes"
 msgid "No matches"
 msgstr "Aucune correspondance"
 
-#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795
+#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815
 msgid "Upload New Photos"
 msgstr "Téléverser de nouvelles photos"
 
-#: ../../mod/photos.php:143
+#: ../../mod/photos.php:144
 msgid "Contact information unavailable"
 msgstr "Informations de contact indisponibles"
 
-#: ../../mod/photos.php:164
+#: ../../mod/photos.php:165
 msgid "Album not found."
 msgstr "Album introuvable."
 
-#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200
+#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
 msgid "Delete Album"
 msgstr "Effacer l'album"
 
-#: ../../mod/photos.php:197
+#: ../../mod/photos.php:198
 msgid "Do you really want to delete this photo album and all its photos?"
 msgstr "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?"
 
-#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502
+#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511
 msgid "Delete Photo"
 msgstr "Effacer la photo"
 
-#: ../../mod/photos.php:285
+#: ../../mod/photos.php:287
 msgid "Do you really want to delete this photo?"
 msgstr "Voulez-vous vraiment supprimer cette photo ?"
 
-#: ../../mod/photos.php:656
+#: ../../mod/photos.php:660
 #, php-format
 msgid "%1$s was tagged in %2$s by %3$s"
 msgstr "%1$s a été identifié %2$s par %3$s"
 
-#: ../../mod/photos.php:656
+#: ../../mod/photos.php:660
 msgid "a photo"
 msgstr "une photo"
 
-#: ../../mod/photos.php:761
+#: ../../mod/photos.php:765
 msgid "Image exceeds size limit of "
 msgstr "L'image dépasse la taille maximale de  "
 
-#: ../../mod/photos.php:769
+#: ../../mod/photos.php:773
 msgid "Image file is empty."
 msgstr "Fichier image vide."
 
-#: ../../mod/photos.php:801 ../../mod/wall_upload.php:112
+#: ../../mod/photos.php:805 ../../mod/wall_upload.php:112
 #: ../../mod/profile_photo.php:153
 msgid "Unable to process image."
 msgstr "Impossible de traiter l'image."
 
-#: ../../mod/photos.php:828 ../../mod/wall_upload.php:138
+#: ../../mod/photos.php:832 ../../mod/wall_upload.php:138
 #: ../../mod/profile_photo.php:301
 msgid "Image upload failed."
 msgstr "Le téléversement de l'image a échoué."
 
-#: ../../mod/photos.php:924
+#: ../../mod/photos.php:928
 msgid "No photos selected"
 msgstr "Aucune photo sélectionnée"
 
-#: ../../mod/photos.php:1025 ../../mod/videos.php:226
+#: ../../mod/photos.php:1029 ../../mod/videos.php:226
 msgid "Access to this item is restricted."
 msgstr "Accès restreint à cet élément."
 
-#: ../../mod/photos.php:1088
+#: ../../mod/photos.php:1092
 #, php-format
 msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
 msgstr "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos."
 
-#: ../../mod/photos.php:1123
+#: ../../mod/photos.php:1127
 msgid "Upload Photos"
 msgstr "Téléverser des photos"
 
-#: ../../mod/photos.php:1127 ../../mod/photos.php:1195
+#: ../../mod/photos.php:1131 ../../mod/photos.php:1199
 msgid "New album name: "
 msgstr "Nom du nouvel album: "
 
-#: ../../mod/photos.php:1128
+#: ../../mod/photos.php:1132
 msgid "or existing album name: "
 msgstr "ou nom d'un album existant: "
 
-#: ../../mod/photos.php:1129
+#: ../../mod/photos.php:1133
 msgid "Do not show a status post for this upload"
-msgstr "Ne pas publier de notice pour cet envoi"
+msgstr "Ne pas publier de notice de statut pour cet envoi"
 
-#: ../../mod/photos.php:1131 ../../mod/photos.php:1497
+#: ../../mod/photos.php:1135 ../../mod/photos.php:1506
 msgid "Permissions"
 msgstr "Permissions"
 
-#: ../../mod/photos.php:1142
+#: ../../mod/photos.php:1146
 msgid "Private Photo"
 msgstr "Photo privée"
 
-#: ../../mod/photos.php:1143
+#: ../../mod/photos.php:1147
 msgid "Public Photo"
 msgstr "Photo publique"
 
-#: ../../mod/photos.php:1210
+#: ../../mod/photos.php:1214
 msgid "Edit Album"
 msgstr "Éditer l'album"
 
-#: ../../mod/photos.php:1216
+#: ../../mod/photos.php:1220
 msgid "Show Newest First"
 msgstr "Plus récent d'abord"
 
-#: ../../mod/photos.php:1218
+#: ../../mod/photos.php:1222
 msgid "Show Oldest First"
 msgstr "Plus ancien d'abord"
 
-#: ../../mod/photos.php:1251 ../../mod/photos.php:1778
+#: ../../mod/photos.php:1255 ../../mod/photos.php:1798
 msgid "View Photo"
 msgstr "Voir la photo"
 
-#: ../../mod/photos.php:1286
+#: ../../mod/photos.php:1290
 msgid "Permission denied. Access to this item may be restricted."
 msgstr "Interdit. L'accès à cet élément peut avoir été restreint."
 
-#: ../../mod/photos.php:1288
+#: ../../mod/photos.php:1292
 msgid "Photo not available"
 msgstr "Photo indisponible"
 
-#: ../../mod/photos.php:1344
+#: ../../mod/photos.php:1348
 msgid "View photo"
 msgstr "Voir photo"
 
-#: ../../mod/photos.php:1344
+#: ../../mod/photos.php:1348
 msgid "Edit photo"
 msgstr "Éditer la photo"
 
-#: ../../mod/photos.php:1345
+#: ../../mod/photos.php:1349
 msgid "Use as profile photo"
 msgstr "Utiliser comme photo de profil"
 
-#: ../../mod/photos.php:1370
+#: ../../mod/photos.php:1374
 msgid "View Full Size"
 msgstr "Voir en taille réelle"
 
-#: ../../mod/photos.php:1444
+#: ../../mod/photos.php:1453
 msgid "Tags: "
 msgstr "Étiquettes: "
 
-#: ../../mod/photos.php:1447
+#: ../../mod/photos.php:1456
 msgid "[Remove any tag]"
 msgstr "[Retirer toutes les étiquettes]"
 
-#: ../../mod/photos.php:1487
+#: ../../mod/photos.php:1496
 msgid "Rotate CW (right)"
 msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)"
 
-#: ../../mod/photos.php:1488
+#: ../../mod/photos.php:1497
 msgid "Rotate CCW (left)"
 msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)"
 
-#: ../../mod/photos.php:1490
+#: ../../mod/photos.php:1499
 msgid "New album name"
 msgstr "Nom du nouvel album"
 
-#: ../../mod/photos.php:1493
+#: ../../mod/photos.php:1502
 msgid "Caption"
 msgstr "Titre"
 
-#: ../../mod/photos.php:1495
+#: ../../mod/photos.php:1504
 msgid "Add a Tag"
 msgstr "Ajouter une étiquette"
 
-#: ../../mod/photos.php:1499
+#: ../../mod/photos.php:1508
 msgid ""
 "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances"
 
-#: ../../mod/photos.php:1508
+#: ../../mod/photos.php:1517
 msgid "Private photo"
 msgstr "Photo privée"
 
-#: ../../mod/photos.php:1509
+#: ../../mod/photos.php:1518
 msgid "Public photo"
 msgstr "Photo publique"
 
-#: ../../mod/photos.php:1531 ../../include/conversation.php:1080
+#: ../../mod/photos.php:1540 ../../include/conversation.php:1088
 msgid "Share"
 msgstr "Partager"
 
-#: ../../mod/photos.php:1784 ../../mod/videos.php:308
+#: ../../mod/photos.php:1804 ../../mod/videos.php:308
 msgid "View Album"
 msgstr "Voir l'album"
 
-#: ../../mod/photos.php:1793
+#: ../../mod/photos.php:1813
 msgid "Recent Photos"
 msgstr "Photos récentes"
 
-#: ../../mod/wall_attach.php:69
+#: ../../mod/wall_attach.php:75
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise"
+
+#: ../../mod/wall_attach.php:75
+msgid "Or - did you try to upload an empty file?"
+msgstr ""
+
+#: ../../mod/wall_attach.php:81
 #, php-format
 msgid "File exceeds size limit of %d"
 msgstr "La taille du fichier dépasse la limite de %d"
 
-#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
+#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
 msgid "File upload failed."
 msgstr "Le téléversement a échoué."
 
 #: ../../mod/videos.php:125
 msgid "No videos selected"
-msgstr ""
+msgstr "Pas de vidéo sélectionné"
 
-#: ../../mod/videos.php:301 ../../include/text.php:1383
+#: ../../mod/videos.php:301 ../../include/text.php:1400
 msgid "View Video"
-msgstr ""
+msgstr "Regarder la vidéo"
 
 #: ../../mod/videos.php:317
 msgid "Recent Videos"
-msgstr ""
+msgstr "Vidéos récente"
 
 #: ../../mod/videos.php:319
 msgid "Upload New Videos"
-msgstr ""
+msgstr "Téléversé une nouvelle vidéo"
 
 #: ../../mod/poke.php:192
 msgid "Poke/Prod"
@@ -4969,21 +5006,21 @@ msgstr "Rendez ce message privé"
 msgid "%1$s is following %2$s's %3$s"
 msgstr "%1$s suit les %3$s de %2$s"
 
-#: ../../mod/uexport.php:72
+#: ../../mod/uexport.php:77
 msgid "Export account"
 msgstr "Exporter le compte"
 
-#: ../../mod/uexport.php:72
+#: ../../mod/uexport.php:77
 msgid ""
 "Export your account info and contacts. Use this to make a backup of your "
 "account and/or to move it to another server."
 msgstr "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur."
 
-#: ../../mod/uexport.php:73
+#: ../../mod/uexport.php:78
 msgid "Export all"
 msgstr "Tout exporter"
 
-#: ../../mod/uexport.php:73
+#: ../../mod/uexport.php:78
 msgid ""
 "Export your accout info, contacts and all your items as json. Could be a "
 "very big file, and could take a lot of time. Use this to make a full backup "
@@ -5004,7 +5041,7 @@ msgid "Image exceeds size limit of %d"
 msgstr "L'image dépasse la taille limite de %d"
 
 #: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
-#: ../../mod/wall_upload.php:151 ../../mod/item.php:453
+#: ../../mod/wall_upload.php:151 ../../mod/item.php:455
 #: ../../include/message.php:144
 msgid "Wall Photos"
 msgstr "Photos du mur"
@@ -5105,7 +5142,7 @@ msgstr "Enlever l'étiquette de l'élément"
 msgid "Select a tag to remove: "
 msgstr "Choisir une étiquette à enlever: "
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133
 msgid "Remove"
 msgstr "Utiliser comme photo de profil"
 
@@ -5121,7 +5158,8 @@ msgstr "l, F j"
 msgid "Edit event"
 msgstr "Editer l'événement"
 
-#: ../../mod/events.php:335 ../../include/text.php:1615
+#: ../../mod/events.php:335 ../../include/text.php:1633
+#: ../../include/text.php:1644
 msgid "link to source"
 msgstr "lien original"
 
@@ -5182,34 +5220,34 @@ msgstr "Partager cet événement"
 msgid "No potential page delegates located."
 msgstr "Pas de délégataire potentiel."
 
-#: ../../mod/delegate.php:121 ../../include/nav.php:165
+#: ../../mod/delegate.php:124 ../../include/nav.php:167
 msgid "Delegate Page Management"
 msgstr "Déléguer la gestion de la page"
 
-#: ../../mod/delegate.php:123
+#: ../../mod/delegate.php:126
 msgid ""
 "Delegates are able to manage all aspects of this account/page except for "
 "basic account settings. Please do not delegate your personal account to "
 "anybody that you do not trust completely."
 msgstr "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue."
 
-#: ../../mod/delegate.php:124
+#: ../../mod/delegate.php:127
 msgid "Existing Page Managers"
 msgstr "Gestionnaires existants"
 
-#: ../../mod/delegate.php:126
+#: ../../mod/delegate.php:129
 msgid "Existing Page Delegates"
 msgstr "Délégataires existants"
 
-#: ../../mod/delegate.php:128
+#: ../../mod/delegate.php:131
 msgid "Potential Delegates"
 msgstr "Délégataires potentiels"
 
-#: ../../mod/delegate.php:131
+#: ../../mod/delegate.php:134
 msgid "Add"
 msgstr "Ajouter"
 
-#: ../../mod/delegate.php:132
+#: ../../mod/delegate.php:135
 msgid "No entries."
 msgstr "Aucune entrée."
 
@@ -5225,17 +5263,17 @@ msgstr "Fichiers"
 msgid "System down for maintenance"
 msgstr "Système indisponible pour cause de maintenance"
 
-#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
+#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
 msgid "Remove My Account"
 msgstr "Supprimer mon compte"
 
-#: ../../mod/removeme.php:46
+#: ../../mod/removeme.php:47
 msgid ""
 "This will completely remove your account. Once this has been done it is not "
 "recoverable."
 msgstr "Ceci supprimera totalement votre compte. Cette opération est irréversible."
 
-#: ../../mod/removeme.php:47
+#: ../../mod/removeme.php:48
 msgid "Please enter your password for verification:"
 msgstr "Merci de saisir votre mot de passe pour vérification:"
 
@@ -5252,37 +5290,37 @@ msgstr "Suggérer des amis/contacts"
 msgid "Suggest a friend for %s"
 msgstr "Suggérer un ami/contact pour %s"
 
-#: ../../mod/item.php:108
+#: ../../mod/item.php:110
 msgid "Unable to locate original post."
 msgstr "Impossible de localiser l'article original."
 
-#: ../../mod/item.php:317
+#: ../../mod/item.php:319
 msgid "Empty post discarded."
 msgstr "Article vide défaussé."
 
-#: ../../mod/item.php:884
+#: ../../mod/item.php:891
 msgid "System error. Post not saved."
 msgstr "Erreur système. Publication non sauvée."
 
-#: ../../mod/item.php:909
+#: ../../mod/item.php:917
 #, php-format
 msgid ""
 "This message was sent to you by %s, a member of the Friendica social "
 "network."
 msgstr "Ce message vous a été envoyé par %s, membre du réseau social Friendica."
 
-#: ../../mod/item.php:911
+#: ../../mod/item.php:919
 #, php-format
 msgid "You may visit them online at %s"
 msgstr "Vous pouvez leur rendre visite sur %s"
 
-#: ../../mod/item.php:912
+#: ../../mod/item.php:920
 msgid ""
 "Please contact the sender by replying to this post if you do not wish to "
 "receive these messages."
 msgstr "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages."
 
-#: ../../mod/item.php:916
+#: ../../mod/item.php:924
 #, php-format
 msgid "%s posted an update."
 msgstr "%s a publié une mise à jour."
@@ -5359,11 +5397,11 @@ msgstr "Rejeter"
 msgid "System"
 msgstr "Système"
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:140
+#: ../../mod/notifications.php:83 ../../include/nav.php:142
 msgid "Network"
 msgstr "Réseau"
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:149
+#: ../../mod/notifications.php:98 ../../include/nav.php:151
 msgid "Introductions"
 msgstr "Introductions"
 
@@ -5436,7 +5474,7 @@ msgstr "Nouvel abonné"
 msgid "No introductions."
 msgstr "Aucune demande d'introduction."
 
-#: ../../mod/notifications.php:220 ../../include/nav.php:150
+#: ../../mod/notifications.php:220 ../../include/nav.php:152
 msgid "Notifications"
 msgstr "Notifications"
 
@@ -5444,13 +5482,13 @@ msgstr "Notifications"
 #: ../../mod/notifications.php:469
 #, php-format
 msgid "%s liked %s's post"
-msgstr "%s a aimé la notice de %s"
+msgstr "%s a aimé le billet de %s"
 
 #: ../../mod/notifications.php:266 ../../mod/notifications.php:391
 #: ../../mod/notifications.php:478
 #, php-format
 msgid "%s disliked %s's post"
-msgstr "%s n'a pas aimé la notice de %s"
+msgstr "%s n'a pas aimé le billet de %s"
 
 #: ../../mod/notifications.php:280 ../../mod/notifications.php:405
 #: ../../mod/notifications.php:492
@@ -5461,13 +5499,13 @@ msgstr "%s est désormais ami(e) avec %s"
 #: ../../mod/notifications.php:287 ../../mod/notifications.php:412
 #, php-format
 msgid "%s created a new post"
-msgstr "%s a publié une notice"
+msgstr "%s a publié un billet"
 
 #: ../../mod/notifications.php:288 ../../mod/notifications.php:413
 #: ../../mod/notifications.php:501
 #, php-format
 msgid "%s commented on %s's post"
-msgstr "%s a commenté une notice de %s"
+msgstr "%s a commenté le billet de %s"
 
 #: ../../mod/notifications.php:302
 msgid "No more network notifications."
@@ -5660,7 +5698,7 @@ msgstr "Réseaux"
 msgid "All Networks"
 msgstr "Tous réseaux"
 
-#: ../../include/contact_widgets.php:103 ../../include/features.php:59
+#: ../../include/contact_widgets.php:103 ../../include/features.php:60
 msgid "Saved Folders"
 msgstr "Dossiers sauvegardés"
 
@@ -5672,45 +5710,54 @@ msgstr "Tout"
 msgid "Categories"
 msgstr "Catégories"
 
-#: ../../include/plugin.php:454 ../../include/plugin.php:456
+#: ../../include/plugin.php:455 ../../include/plugin.php:457
 msgid "Click here to upgrade."
 msgstr "Cliquez ici pour mettre à jour."
 
-#: ../../include/plugin.php:462
+#: ../../include/plugin.php:463
 msgid "This action exceeds the limits set by your subscription plan."
 msgstr "Cette action dépasse les limites définies par votre abonnement."
 
-#: ../../include/plugin.php:467
+#: ../../include/plugin.php:468
 msgid "This action is not available under your subscription plan."
 msgstr "Cette action n'est pas disponible avec votre abonnement."
 
-#: ../../include/api.php:255 ../../include/api.php:266
-#: ../../include/api.php:356
+#: ../../include/api.php:263 ../../include/api.php:274
+#: ../../include/api.php:375
 msgid "User not found."
-msgstr ""
+msgstr "Utilisateur non trouvé"
 
-#: ../../include/api.php:1024
+#: ../../include/api.php:1123
 msgid "There is no status with this id."
-msgstr ""
+msgstr "Il n'y a pas de statut avec cet id."
+
+#: ../../include/api.php:1193
+msgid "There is no conversation with this id."
+msgstr "Il n'y a pas de conversation avec cet id."
 
-#: ../../include/network.php:883
+#: ../../include/network.php:886
 msgid "view full size"
 msgstr "voir en pleine taille"
 
-#: ../../include/event.php:20 ../../include/bb2diaspora.php:399
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:139
 msgid "Starts:"
 msgstr "Débute:"
 
-#: ../../include/event.php:30 ../../include/bb2diaspora.php:407
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:147
 msgid "Finishes:"
 msgstr "Finit:"
 
-#: ../../include/notifier.php:774 ../../include/delivery.php:457
+#: ../../include/dba_pdo.php:72 ../../include/dba.php:51
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Impossible de localiser les informations DNS pour le serveur de base de données '%s'"
+
+#: ../../include/notifier.php:774 ../../include/delivery.php:456
 msgid "(no subject)"
 msgstr "(sans titre)"
 
 #: ../../include/notifier.php:784 ../../include/enotify.php:28
-#: ../../include/delivery.php:468
+#: ../../include/delivery.php:467
 msgid "noreply"
 msgstr "noreply"
 
@@ -5802,7 +5849,7 @@ msgstr "Amis"
 msgid "%1$s poked %2$s"
 msgstr "%1$s a sollicité %2$s"
 
-#: ../../include/conversation.php:211 ../../include/text.php:986
+#: ../../include/conversation.php:211 ../../include/text.php:1003
 msgid "poked"
 msgstr "a titillé"
 
@@ -5815,129 +5862,134 @@ msgstr "publication/élément"
 msgid "%1$s marked %2$s's %3$s as favorite"
 msgstr "%1$s a marqué le %3$s de %2$s comme favori"
 
-#: ../../include/conversation.php:767
+#: ../../include/conversation.php:770
 msgid "remove"
 msgstr "enlever"
 
-#: ../../include/conversation.php:771
+#: ../../include/conversation.php:774
 msgid "Delete Selected Items"
 msgstr "Supprimer les éléments sélectionnés"
 
-#: ../../include/conversation.php:870
+#: ../../include/conversation.php:873
 msgid "Follow Thread"
 msgstr "Suivre le fil"
 
-#: ../../include/conversation.php:871 ../../include/Contact.php:229
+#: ../../include/conversation.php:874 ../../include/Contact.php:229
 msgid "View Status"
 msgstr "Voir les statuts"
 
-#: ../../include/conversation.php:872 ../../include/Contact.php:230
+#: ../../include/conversation.php:875 ../../include/Contact.php:230
 msgid "View Profile"
 msgstr "Voir le profil"
 
-#: ../../include/conversation.php:873 ../../include/Contact.php:231
+#: ../../include/conversation.php:876 ../../include/Contact.php:231
 msgid "View Photos"
 msgstr "Voir les photos"
 
-#: ../../include/conversation.php:874 ../../include/Contact.php:232
+#: ../../include/conversation.php:877 ../../include/Contact.php:232
 #: ../../include/Contact.php:255
 msgid "Network Posts"
 msgstr "Posts du Réseau"
 
-#: ../../include/conversation.php:875 ../../include/Contact.php:233
+#: ../../include/conversation.php:878 ../../include/Contact.php:233
 #: ../../include/Contact.php:255
 msgid "Edit Contact"
 msgstr "Éditer le contact"
 
-#: ../../include/conversation.php:876 ../../include/Contact.php:235
+#: ../../include/conversation.php:879 ../../include/Contact.php:235
 #: ../../include/Contact.php:255
 msgid "Send PM"
 msgstr "Message privé"
 
-#: ../../include/conversation.php:877 ../../include/Contact.php:228
+#: ../../include/conversation.php:880 ../../include/Contact.php:228
 msgid "Poke"
 msgstr "Sollicitations (pokes)"
 
-#: ../../include/conversation.php:939
+#: ../../include/conversation.php:942
 #, php-format
 msgid "%s likes this."
 msgstr "%s aime ça."
 
-#: ../../include/conversation.php:939
+#: ../../include/conversation.php:942
 #, php-format
 msgid "%s doesn't like this."
 msgstr "%s n'aime pas ça."
 
-#: ../../include/conversation.php:944
+#: ../../include/conversation.php:947
 #, php-format
 msgid "<span  %1$s>%2$d people</span> like this"
-msgstr ""
+msgstr "<span  %1$s>%2$d personnes</span> aiment ça"
 
-#: ../../include/conversation.php:947
+#: ../../include/conversation.php:950
 #, php-format
 msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr ""
+msgstr "<span  %1$s>%2$d personnes</span> n'aiment pas ça"
 
-#: ../../include/conversation.php:961
+#: ../../include/conversation.php:964
 msgid "and"
 msgstr "et"
 
-#: ../../include/conversation.php:967
+#: ../../include/conversation.php:970
 #, php-format
 msgid ", and %d other people"
 msgstr ", et %d autres personnes"
 
-#: ../../include/conversation.php:969
+#: ../../include/conversation.php:972
 #, php-format
 msgid "%s like this."
 msgstr "%s aiment ça."
 
-#: ../../include/conversation.php:969
+#: ../../include/conversation.php:972
 #, php-format
 msgid "%s don't like this."
 msgstr "%s n'aiment pas ça."
 
-#: ../../include/conversation.php:996 ../../include/conversation.php:1014
+#: ../../include/conversation.php:999 ../../include/conversation.php:1017
 msgid "Visible to <strong>everybody</strong>"
 msgstr "Visible par <strong>tout le monde</strong>"
 
-#: ../../include/conversation.php:998 ../../include/conversation.php:1016
+#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
 msgid "Please enter a video link/URL:"
 msgstr "Entrez un lien/URL video :"
 
-#: ../../include/conversation.php:999 ../../include/conversation.php:1017
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
 msgid "Please enter an audio link/URL:"
 msgstr "Entrez un lien/URL audio :"
 
-#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
+#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
 msgid "Tag term:"
 msgstr "Tag : "
 
-#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
+#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
 msgid "Where are you right now?"
 msgstr "Où êtes-vous présentemment?"
 
-#: ../../include/conversation.php:1003
+#: ../../include/conversation.php:1006
 msgid "Delete item(s)?"
 msgstr "Supprimer les élément(s) ?"
 
-#: ../../include/conversation.php:1045
+#: ../../include/conversation.php:1049
 msgid "Post to Email"
 msgstr "Publier aussi par courriel"
 
-#: ../../include/conversation.php:1101
+#: ../../include/conversation.php:1054
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr ""
+
+#: ../../include/conversation.php:1109
 msgid "permissions"
 msgstr "permissions"
 
-#: ../../include/conversation.php:1125
+#: ../../include/conversation.php:1133
 msgid "Post to Groups"
 msgstr ""
 
-#: ../../include/conversation.php:1126
+#: ../../include/conversation.php:1134
 msgid "Post to Contacts"
 msgstr ""
 
-#: ../../include/conversation.php:1127
+#: ../../include/conversation.php:1135
 msgid "Private post"
 msgstr "Message privé"
 
@@ -5955,12 +6007,12 @@ msgstr ""
 
 #: ../../include/uimport.php:116 ../../include/uimport.php:127
 msgid "Error! Cannot check nickname"
-msgstr ""
+msgstr "Erreur! Pseudo invalide"
 
 #: ../../include/uimport.php:120 ../../include/uimport.php:131
 #, php-format
 msgid "User '%s' already exists on this server!"
-msgstr ""
+msgstr "L'utilisateur '%s' existe déjà sur ce serveur!"
 
 #: ../../include/uimport.php:153
 msgid "User creation error"
@@ -5979,264 +6031,264 @@ msgstr[1] "%d contacts non importés"
 
 #: ../../include/uimport.php:290
 msgid "Done. You can now login with your username and password"
-msgstr ""
+msgstr "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe"
 
-#: ../../include/text.php:300
+#: ../../include/text.php:296
 msgid "newer"
 msgstr "Plus récent"
 
-#: ../../include/text.php:302
+#: ../../include/text.php:298
 msgid "older"
 msgstr "Plus ancien"
 
-#: ../../include/text.php:307
+#: ../../include/text.php:303
 msgid "prev"
 msgstr "précédent"
 
-#: ../../include/text.php:309
+#: ../../include/text.php:305
 msgid "first"
 msgstr "premier"
 
-#: ../../include/text.php:341
+#: ../../include/text.php:337
 msgid "last"
 msgstr "dernier"
 
-#: ../../include/text.php:344
+#: ../../include/text.php:340
 msgid "next"
 msgstr "suivant"
 
-#: ../../include/text.php:836
+#: ../../include/text.php:853
 msgid "No contacts"
 msgstr "Aucun contact"
 
-#: ../../include/text.php:845
+#: ../../include/text.php:862
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
 msgstr[0] "%d contact"
 msgstr[1] "%d contacts"
 
-#: ../../include/text.php:986
+#: ../../include/text.php:1003
 msgid "poke"
 msgstr "titiller"
 
-#: ../../include/text.php:987
+#: ../../include/text.php:1004
 msgid "ping"
 msgstr "attirer l'attention"
 
-#: ../../include/text.php:987
+#: ../../include/text.php:1004
 msgid "pinged"
 msgstr "a attiré l'attention de"
 
-#: ../../include/text.php:988
+#: ../../include/text.php:1005
 msgid "prod"
 msgstr "aiguillonner"
 
-#: ../../include/text.php:988
+#: ../../include/text.php:1005
 msgid "prodded"
 msgstr "a aiguillonné"
 
-#: ../../include/text.php:989
+#: ../../include/text.php:1006
 msgid "slap"
 msgstr "gifler"
 
-#: ../../include/text.php:989
+#: ../../include/text.php:1006
 msgid "slapped"
 msgstr "a giflé"
 
-#: ../../include/text.php:990
+#: ../../include/text.php:1007
 msgid "finger"
 msgstr "tripoter"
 
-#: ../../include/text.php:990
+#: ../../include/text.php:1007
 msgid "fingered"
 msgstr "a tripoté"
 
-#: ../../include/text.php:991
+#: ../../include/text.php:1008
 msgid "rebuff"
 msgstr "rabrouer"
 
-#: ../../include/text.php:991
+#: ../../include/text.php:1008
 msgid "rebuffed"
 msgstr "a rabroué"
 
-#: ../../include/text.php:1005
+#: ../../include/text.php:1022
 msgid "happy"
 msgstr "heureuse"
 
-#: ../../include/text.php:1006
+#: ../../include/text.php:1023
 msgid "sad"
 msgstr "triste"
 
-#: ../../include/text.php:1007
+#: ../../include/text.php:1024
 msgid "mellow"
 msgstr "suave"
 
-#: ../../include/text.php:1008
+#: ../../include/text.php:1025
 msgid "tired"
 msgstr "fatiguée"
 
-#: ../../include/text.php:1009
+#: ../../include/text.php:1026
 msgid "perky"
 msgstr "guillerette"
 
-#: ../../include/text.php:1010
+#: ../../include/text.php:1027
 msgid "angry"
 msgstr "colérique"
 
-#: ../../include/text.php:1011
+#: ../../include/text.php:1028
 msgid "stupified"
 msgstr "stupéfaite"
 
-#: ../../include/text.php:1012
+#: ../../include/text.php:1029
 msgid "puzzled"
 msgstr "perplexe"
 
-#: ../../include/text.php:1013
+#: ../../include/text.php:1030
 msgid "interested"
 msgstr "intéressée"
 
-#: ../../include/text.php:1014
+#: ../../include/text.php:1031
 msgid "bitter"
 msgstr "amère"
 
-#: ../../include/text.php:1015
+#: ../../include/text.php:1032
 msgid "cheerful"
 msgstr "entraînante"
 
-#: ../../include/text.php:1016
+#: ../../include/text.php:1033
 msgid "alive"
 msgstr "vivante"
 
-#: ../../include/text.php:1017
+#: ../../include/text.php:1034
 msgid "annoyed"
 msgstr "ennuyée"
 
-#: ../../include/text.php:1018
+#: ../../include/text.php:1035
 msgid "anxious"
 msgstr "anxieuse"
 
-#: ../../include/text.php:1019
+#: ../../include/text.php:1036
 msgid "cranky"
 msgstr "excentrique"
 
-#: ../../include/text.php:1020
+#: ../../include/text.php:1037
 msgid "disturbed"
 msgstr "dérangée"
 
-#: ../../include/text.php:1021
+#: ../../include/text.php:1038
 msgid "frustrated"
 msgstr "frustrée"
 
-#: ../../include/text.php:1022
+#: ../../include/text.php:1039
 msgid "motivated"
 msgstr "motivée"
 
-#: ../../include/text.php:1023
+#: ../../include/text.php:1040
 msgid "relaxed"
 msgstr "détendue"
 
-#: ../../include/text.php:1024
+#: ../../include/text.php:1041
 msgid "surprised"
 msgstr "surprise"
 
-#: ../../include/text.php:1192
+#: ../../include/text.php:1209
 msgid "Monday"
 msgstr "Lundi"
 
-#: ../../include/text.php:1192
+#: ../../include/text.php:1209
 msgid "Tuesday"
 msgstr "Mardi"
 
-#: ../../include/text.php:1192
+#: ../../include/text.php:1209
 msgid "Wednesday"
 msgstr "Mercredi"
 
-#: ../../include/text.php:1192
+#: ../../include/text.php:1209
 msgid "Thursday"
 msgstr "Jeudi"
 
-#: ../../include/text.php:1192
+#: ../../include/text.php:1209
 msgid "Friday"
 msgstr "Vendredi"
 
-#: ../../include/text.php:1192
+#: ../../include/text.php:1209
 msgid "Saturday"
 msgstr "Samedi"
 
-#: ../../include/text.php:1192
+#: ../../include/text.php:1209
 msgid "Sunday"
 msgstr "Dimanche"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1213
 msgid "January"
 msgstr "Janvier"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1213
 msgid "February"
 msgstr "Février"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1213
 msgid "March"
 msgstr "Mars"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1213
 msgid "April"
 msgstr "Avril"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1213
 msgid "May"
 msgstr "Mai"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1213
 msgid "June"
 msgstr "Juin"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1213
 msgid "July"
 msgstr "Juillet"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1213
 msgid "August"
 msgstr "Août"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1213
 msgid "September"
 msgstr "Septembre"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1213
 msgid "October"
 msgstr "Octobre"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1213
 msgid "November"
 msgstr "Novembre"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1213
 msgid "December"
 msgstr "Décembre"
 
-#: ../../include/text.php:1415
+#: ../../include/text.php:1432
 msgid "bytes"
 msgstr "octets"
 
-#: ../../include/text.php:1439 ../../include/text.php:1451
+#: ../../include/text.php:1456 ../../include/text.php:1468
 msgid "Click to open/close"
 msgstr "Cliquer pour ouvrir/fermer"
 
-#: ../../include/text.php:1670
+#: ../../include/text.php:1701
 msgid "Select an alternate language"
 msgstr "Choisir une langue alternative"
 
-#: ../../include/text.php:1926
+#: ../../include/text.php:1957
 msgid "activity"
 msgstr "activité"
 
-#: ../../include/text.php:1929
+#: ../../include/text.php:1960
 msgid "post"
 msgstr "publication"
 
-#: ../../include/text.php:2084
+#: ../../include/text.php:2128
 msgid "Item filed"
 msgstr "Élément classé"
 
@@ -6282,151 +6334,166 @@ msgstr "un message privé"
 msgid "Please visit %s to view and/or reply to your private messages."
 msgstr "Merci de visiter %s pour voir vos messages privés et/ou y répondre."
 
-#: ../../include/enotify.php:90
+#: ../../include/enotify.php:91
 #, php-format
 msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
 msgstr "%1$s a commenté sur [url=%2$s]un %3$s[/url]"
 
-#: ../../include/enotify.php:97
+#: ../../include/enotify.php:98
 #, php-format
 msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
 msgstr "%1$s a commenté sur [url=%2$s]le %4$s de %3$s[/url]"
 
-#: ../../include/enotify.php:105
+#: ../../include/enotify.php:106
 #, php-format
 msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
 msgstr "%1$s commented on [url=%2$s]your %3$s[/url]"
 
-#: ../../include/enotify.php:115
+#: ../../include/enotify.php:116
 #, php-format
 msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
 msgstr "[Friendica:Notification] Commentaire de %2$s sur la conversation #%1$d"
 
-#: ../../include/enotify.php:116
+#: ../../include/enotify.php:117
 #, php-format
 msgid "%s commented on an item/conversation you have been following."
 msgstr "%s a commenté un élément que vous suivez."
 
-#: ../../include/enotify.php:119 ../../include/enotify.php:134
-#: ../../include/enotify.php:147 ../../include/enotify.php:165
-#: ../../include/enotify.php:178
+#: ../../include/enotify.php:120 ../../include/enotify.php:135
+#: ../../include/enotify.php:148 ../../include/enotify.php:161
+#: ../../include/enotify.php:179 ../../include/enotify.php:192
 #, php-format
 msgid "Please visit %s to view and/or reply to the conversation."
 msgstr "Merci de visiter %s pour voir la conversation et/ou y répondre."
 
-#: ../../include/enotify.php:126
+#: ../../include/enotify.php:127
 #, php-format
 msgid "[Friendica:Notify] %s posted to your profile wall"
 msgstr "[Friendica:Notification] %s a posté sur votre mur de profil"
 
-#: ../../include/enotify.php:128
+#: ../../include/enotify.php:129
 #, php-format
 msgid "%1$s posted to your profile wall at %2$s"
 msgstr "%1$s a publié sur votre mur à %2$s"
 
-#: ../../include/enotify.php:130
+#: ../../include/enotify.php:131
 #, php-format
 msgid "%1$s posted to [url=%2$s]your wall[/url]"
 msgstr "%1$s a posté sur [url=%2$s]votre mur[/url]"
 
-#: ../../include/enotify.php:141
+#: ../../include/enotify.php:142
 #, php-format
 msgid "[Friendica:Notify] %s tagged you"
 msgstr "[Friendica:Notification] %s vous a repéré"
 
-#: ../../include/enotify.php:142
+#: ../../include/enotify.php:143
 #, php-format
 msgid "%1$s tagged you at %2$s"
 msgstr "%1$s vous parle sur %2$s"
 
-#: ../../include/enotify.php:143
+#: ../../include/enotify.php:144
 #, php-format
 msgid "%1$s [url=%2$s]tagged you[/url]."
 msgstr "%1$s [url=%2$s]vous a taggé[/url]."
 
 #: ../../include/enotify.php:155
 #, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica:Notification] %s partage une nouvelle publication"
+
+#: ../../include/enotify.php:156
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr ""
+
+#: ../../include/enotify.php:157
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]partage une publication[/url]."
+
+#: ../../include/enotify.php:169
+#, php-format
 msgid "[Friendica:Notify] %1$s poked you"
 msgstr "[Friendica:Notify] %1$s vous a sollicité"
 
-#: ../../include/enotify.php:156
+#: ../../include/enotify.php:170
 #, php-format
 msgid "%1$s poked you at %2$s"
 msgstr "%1$s vous a sollicité via %2$s"
 
-#: ../../include/enotify.php:157
+#: ../../include/enotify.php:171
 #, php-format
 msgid "%1$s [url=%2$s]poked you[/url]."
 msgstr "%1$s vous a [url=%2$s]sollicité[/url]."
 
-#: ../../include/enotify.php:172
+#: ../../include/enotify.php:186
 #, php-format
 msgid "[Friendica:Notify] %s tagged your post"
 msgstr "[Friendica:Notification] %s a repéré votre publication"
 
-#: ../../include/enotify.php:173
+#: ../../include/enotify.php:187
 #, php-format
 msgid "%1$s tagged your post at %2$s"
 msgstr "%1$s a tagué votre contenu sur %2$s"
 
-#: ../../include/enotify.php:174
+#: ../../include/enotify.php:188
 #, php-format
 msgid "%1$s tagged [url=%2$s]your post[/url]"
 msgstr "%1$s a tagué [url=%2$s]votre contenu[/url]"
 
-#: ../../include/enotify.php:185
+#: ../../include/enotify.php:199
 msgid "[Friendica:Notify] Introduction received"
 msgstr "[Friendica:Notification] Introduction reçue"
 
-#: ../../include/enotify.php:186
+#: ../../include/enotify.php:200
 #, php-format
 msgid "You've received an introduction from '%1$s' at %2$s"
 msgstr "Vous avez reçu une introduction de '%1$s' sur %2$s"
 
-#: ../../include/enotify.php:187
+#: ../../include/enotify.php:201
 #, php-format
 msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
 msgstr "Vous avez reçu [url=%1$s]une introduction[/url] de %2$s."
 
-#: ../../include/enotify.php:190 ../../include/enotify.php:208
+#: ../../include/enotify.php:204 ../../include/enotify.php:222
 #, php-format
 msgid "You may visit their profile at %s"
 msgstr "Vous pouvez visiter son profil sur %s"
 
-#: ../../include/enotify.php:192
+#: ../../include/enotify.php:206
 #, php-format
 msgid "Please visit %s to approve or reject the introduction."
 msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction."
 
-#: ../../include/enotify.php:199
+#: ../../include/enotify.php:213
 msgid "[Friendica:Notify] Friend suggestion received"
 msgstr "[Friendica:Notification] Nouvelle suggestion d'amitié"
 
-#: ../../include/enotify.php:200
+#: ../../include/enotify.php:214
 #, php-format
 msgid "You've received a friend suggestion from '%1$s' at %2$s"
 msgstr "Vous avez reçu une suggestion de '%1$s' sur %2$s"
 
-#: ../../include/enotify.php:201
+#: ../../include/enotify.php:215
 #, php-format
 msgid ""
 "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
 msgstr "Vous avez reçu [url=%1$s]une suggestion[/url] de %3$s pour %2$s."
 
-#: ../../include/enotify.php:206
+#: ../../include/enotify.php:220
 msgid "Name:"
 msgstr "Nom :"
 
-#: ../../include/enotify.php:207
+#: ../../include/enotify.php:221
 msgid "Photo:"
 msgstr "Photo :"
 
-#: ../../include/enotify.php:210
+#: ../../include/enotify.php:224
 #, php-format
 msgid "Please visit %s to approve or reject the suggestion."
 msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion."
 
-#: ../../include/Scrape.php:583
+#: ../../include/Scrape.php:584
 msgid " on Last.fm"
 msgstr "sur Last.fm"
 
@@ -6564,71 +6631,79 @@ msgstr "Annuaire"
 msgid "People directory"
 msgstr "Annuaire des utilisateurs"
 
-#: ../../include/nav.php:140
+#: ../../include/nav.php:132
+msgid "Information"
+msgstr "Information"
+
+#: ../../include/nav.php:132
+msgid "Information about this friendica instance"
+msgstr "Information au sujet de cette instance de friendica"
+
+#: ../../include/nav.php:142
 msgid "Conversations from your friends"
 msgstr "Conversations de vos amis"
 
-#: ../../include/nav.php:141
+#: ../../include/nav.php:143
 msgid "Network Reset"
 msgstr ""
 
-#: ../../include/nav.php:141
+#: ../../include/nav.php:143
 msgid "Load Network page with no filters"
-msgstr ""
+msgstr "Chargement des pages du réseau sans filtre"
 
-#: ../../include/nav.php:149
+#: ../../include/nav.php:151
 msgid "Friend Requests"
 msgstr "Demande d'amitié"
 
-#: ../../include/nav.php:151
+#: ../../include/nav.php:153
 msgid "See all notifications"
 msgstr "Voir toute notification"
 
-#: ../../include/nav.php:152
+#: ../../include/nav.php:154
 msgid "Mark all system notifications seen"
 msgstr "Marquer toutes les notifications système comme 'vues'"
 
-#: ../../include/nav.php:156
+#: ../../include/nav.php:158
 msgid "Private mail"
 msgstr "Messages privés"
 
-#: ../../include/nav.php:157
+#: ../../include/nav.php:159
 msgid "Inbox"
 msgstr "Messages entrants"
 
-#: ../../include/nav.php:158
+#: ../../include/nav.php:160
 msgid "Outbox"
 msgstr "Messages sortants"
 
-#: ../../include/nav.php:162
+#: ../../include/nav.php:164
 msgid "Manage"
 msgstr "Gérer"
 
-#: ../../include/nav.php:162
+#: ../../include/nav.php:164
 msgid "Manage other pages"
 msgstr "Gérer les autres pages"
 
-#: ../../include/nav.php:165
-msgid "Delegations"
-msgstr "Délégations"
-
 #: ../../include/nav.php:169
+msgid "Account settings"
+msgstr "Compte"
+
+#: ../../include/nav.php:171
 msgid "Manage/Edit Profiles"
 msgstr "Gérer/Éditer les profiles"
 
-#: ../../include/nav.php:171
+#: ../../include/nav.php:173
 msgid "Manage/edit friends and contacts"
 msgstr "Gérer/éditer les amitiés et contacts"
 
-#: ../../include/nav.php:178
+#: ../../include/nav.php:180
 msgid "Site setup and configuration"
 msgstr "Démarrage et configuration du site"
 
-#: ../../include/nav.php:182
+#: ../../include/nav.php:184
 msgid "Navigation"
 msgstr "Navigation"
 
-#: ../../include/nav.php:182
+#: ../../include/nav.php:184
 msgid "Site map"
 msgstr "Carte du site"
 
@@ -6697,23 +6772,27 @@ msgstr "Activité professionnelle/Occupation:"
 msgid "School/education:"
 msgstr "Études/Formation:"
 
-#: ../../include/bbcode.php:215 ../../include/bbcode.php:620
-#: ../../include/bbcode.php:621
+#: ../../include/bbcode.php:287 ../../include/bbcode.php:921
+#: ../../include/bbcode.php:922
 msgid "Image/photo"
 msgstr "Image/photo"
 
-#: ../../include/bbcode.php:285
+#: ../../include/bbcode.php:357
 #, 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> a écris le <a href=\"%s\" target=\"external-link\">post</a> suivant"
+"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"_blank\">post</a>"
+msgstr ""
 
-#: ../../include/bbcode.php:584 ../../include/bbcode.php:604
+#: ../../include/bbcode.php:457
+msgid "<span><b>"
+msgstr ""
+
+#: ../../include/bbcode.php:885 ../../include/bbcode.php:905
 msgid "$1 wrote:"
 msgstr "$1 a écrit:"
 
-#: ../../include/bbcode.php:631 ../../include/bbcode.php:632
+#: ../../include/bbcode.php:936 ../../include/bbcode.php:937
 msgid "Encrypted content"
 msgstr "Contenu chiffré"
 
@@ -6779,11 +6858,19 @@ msgstr "Google+"
 
 #: ../../include/contact_selectors.php:88
 msgid "pump.io"
-msgstr ""
+msgstr "pump.io"
 
 #: ../../include/contact_selectors.php:89
 msgid "Twitter"
-msgstr ""
+msgstr "Twitter"
+
+#: ../../include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Connecteur Diaspora"
+
+#: ../../include/contact_selectors.php:91
+msgid "Statusnet"
+msgstr "Statusnet"
 
 #: ../../include/datetime.php:43 ../../include/datetime.php:45
 msgid "Miscellaneous"
@@ -6858,12 +6945,12 @@ msgstr "secondes"
 msgid "%1$d %2$s ago"
 msgstr "%1$d %2$s auparavant"
 
-#: ../../include/datetime.php:472 ../../include/items.php:1829
+#: ../../include/datetime.php:472 ../../include/items.php:1981
 #, php-format
 msgid "%s's birthday"
 msgstr "Anniversaire de %s's"
 
-#: ../../include/datetime.php:473 ../../include/items.php:1830
+#: ../../include/datetime.php:473 ../../include/items.php:1982
 #, php-format
 msgid "Happy Birthday %s"
 msgstr "Joyeux anniversaire, %s !"
@@ -6882,7 +6969,7 @@ msgstr "Possibilité de créer plusieurs profils"
 
 #: ../../include/features.php:30
 msgid "Post Composition Features"
-msgstr ""
+msgstr "Caractéristiques de composition de publication"
 
 #: ../../include/features.php:31
 msgid "Richtext Editor"
@@ -6894,161 +6981,170 @@ msgstr "Activer l'éditeur de texte enrichi"
 
 #: ../../include/features.php:32
 msgid "Post Preview"
-msgstr ""
+msgstr "Aperçu du billet"
 
 #: ../../include/features.php:32
 msgid "Allow previewing posts and comments before publishing them"
+msgstr "Permet la prévisualisation des billets et commentaires avant de les publier"
+
+#: ../../include/features.php:33
+msgid "Auto-mention Forums"
 msgstr ""
 
-#: ../../include/features.php:37
-msgid "Network Sidebar Widgets"
+#: ../../include/features.php:33
+msgid ""
+"Add/remove mention when a fourm page is selected/deselected in ACL window."
 msgstr ""
 
 #: ../../include/features.php:38
+msgid "Network Sidebar Widgets"
+msgstr "Widgets réseau pour barre latérale"
+
+#: ../../include/features.php:39
 msgid "Search by Date"
 msgstr "Rechercher par Date"
 
-#: ../../include/features.php:38
+#: ../../include/features.php:39
 msgid "Ability to select posts by date ranges"
-msgstr ""
+msgstr "Capacité de sélectionner les billets par intervalles de dates"
 
-#: ../../include/features.php:39
+#: ../../include/features.php:40
 msgid "Group Filter"
-msgstr ""
+msgstr "Filtre de groupe"
 
-#: ../../include/features.php:39
+#: ../../include/features.php:40
 msgid "Enable widget to display Network posts only from selected group"
-msgstr ""
+msgstr "Activer le widget d’affichage des Posts du Réseau seulement pour le groupe sélectionné"
 
-#: ../../include/features.php:40
+#: ../../include/features.php:41
 msgid "Network Filter"
-msgstr ""
+msgstr "Filtre de réseau"
 
-#: ../../include/features.php:40
+#: ../../include/features.php:41
 msgid "Enable widget to display Network posts only from selected network"
-msgstr ""
+msgstr "Activer le widget d’affichage des Posts du Réseau seulement pour le réseau sélectionné"
 
-#: ../../include/features.php:41
+#: ../../include/features.php:42
 msgid "Save search terms for re-use"
-msgstr ""
+msgstr "Sauvegarder la recherche pour une utilisation ultérieure"
 
-#: ../../include/features.php:46
+#: ../../include/features.php:47
 msgid "Network Tabs"
-msgstr ""
+msgstr "Onglets Réseau"
 
-#: ../../include/features.php:47
+#: ../../include/features.php:48
 msgid "Network Personal Tab"
-msgstr ""
+msgstr "Onglet Réseau Personnel"
 
-#: ../../include/features.php:47
+#: ../../include/features.php:48
 msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr ""
+msgstr "Activer l'onglet pour afficher seulement les Posts du Réseau où vous avez interagit"
 
-#: ../../include/features.php:48
+#: ../../include/features.php:49
 msgid "Network New Tab"
 msgstr ""
 
-#: ../../include/features.php:48
+#: ../../include/features.php:49
 msgid "Enable tab to display only new Network posts (from the last 12 hours)"
 msgstr ""
 
-#: ../../include/features.php:49
+#: ../../include/features.php:50
 msgid "Network Shared Links Tab"
 msgstr ""
 
-#: ../../include/features.php:49
+#: ../../include/features.php:50
 msgid "Enable tab to display only Network posts with links in them"
 msgstr ""
 
-#: ../../include/features.php:54
+#: ../../include/features.php:55
 msgid "Post/Comment Tools"
-msgstr ""
+msgstr "outils de publication/commentaire"
 
-#: ../../include/features.php:55
+#: ../../include/features.php:56
 msgid "Multiple Deletion"
-msgstr ""
+msgstr "Suppression multiple"
 
-#: ../../include/features.php:55
+#: ../../include/features.php:56
 msgid "Select and delete multiple posts/comments at once"
 msgstr ""
 
-#: ../../include/features.php:56
+#: ../../include/features.php:57
 msgid "Edit Sent Posts"
-msgstr ""
+msgstr "Edité les publications envoyées"
 
-#: ../../include/features.php:56
+#: ../../include/features.php:57
 msgid "Edit and correct posts and comments after sending"
 msgstr ""
 
-#: ../../include/features.php:57
+#: ../../include/features.php:58
 msgid "Tagging"
-msgstr ""
+msgstr "Tagger"
 
-#: ../../include/features.php:57
+#: ../../include/features.php:58
 msgid "Ability to tag existing posts"
-msgstr ""
+msgstr "Autorisé à tagger des publications existantes"
 
-#: ../../include/features.php:58
+#: ../../include/features.php:59
 msgid "Post Categories"
-msgstr ""
+msgstr "Catégories des publications"
 
-#: ../../include/features.php:58
+#: ../../include/features.php:59
 msgid "Add categories to your posts"
-msgstr ""
+msgstr "Ajouter des catégories à vos publications"
 
-#: ../../include/features.php:59
+#: ../../include/features.php:60
 msgid "Ability to file posts under folders"
 msgstr ""
 
-#: ../../include/features.php:60
+#: ../../include/features.php:61
 msgid "Dislike Posts"
-msgstr ""
+msgstr "N'aime pas"
 
-#: ../../include/features.php:60
+#: ../../include/features.php:61
 msgid "Ability to dislike posts/comments"
-msgstr ""
+msgstr "Autorisé a ne pas aimer les publications/commentaires"
 
-#: ../../include/features.php:61
+#: ../../include/features.php:62
 msgid "Star Posts"
 msgstr ""
 
-#: ../../include/features.php:61
+#: ../../include/features.php:62
 msgid "Ability to mark special posts with a star indicator"
 msgstr ""
 
-#: ../../include/diaspora.php:704
+#: ../../include/diaspora.php:703
 msgid "Sharing notification from Diaspora network"
 msgstr "Notification de partage du réseau Diaspora"
 
-#: ../../include/diaspora.php:2269
+#: ../../include/diaspora.php:2299
 msgid "Attachments:"
 msgstr "Pièces jointes : "
 
-#: ../../include/acl_selectors.php:325
+#: ../../include/acl_selectors.php:326
 msgid "Visible to everybody"
 msgstr "Visible par tout le monde"
 
-#: ../../include/items.php:3539
+#: ../../include/items.php:3710
 msgid "A new person is sharing with you at "
 msgstr "Une nouvelle personne partage avec vous à "
 
-#: ../../include/items.php:3539
+#: ../../include/items.php:3710
 msgid "You have a new follower at "
 msgstr "Vous avez un nouvel abonné à "
 
-#: ../../include/items.php:4062
+#: ../../include/items.php:4233
 msgid "Do you really want to delete this item?"
 msgstr "Voulez-vous vraiment supprimer cet élément ?"
 
-#: ../../include/items.php:4285
+#: ../../include/items.php:4460
 msgid "Archives"
 msgstr "Archives"
 
-#: ../../include/oembed.php:140
+#: ../../include/oembed.php:174
 msgid "Embedded content"
 msgstr "Contenu incorporé"
 
-#: ../../include/oembed.php:149
+#: ../../include/oembed.php:183
 msgid "Embedding disabled"
 msgstr "Incorporation désactivée"
 
@@ -7304,9 +7400,4 @@ msgstr "retiré de la liste de suivi"
 
 #: ../../include/Contact.php:234
 msgid "Drop Contact"
-msgstr ""
-
-#: ../../include/dba.php:44
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Impossible de localiser les informations DNS pour le serveur de base de données '%s'"
+msgstr "Supprimer le contact"
index 4ea8899fc642dbba692c8122079550673859bb0a..ff518670e17c0f50cc20dd4a5e8afceb478a2de5 100644 (file)
@@ -1,20 +1,20 @@
 
-Cher(e) $username,
+Cher/Chère $[username],
+       Votre mot de passe a été changé comme demandé. Merci de 
+mémoriser cette information (ou de changer immédiatement pour un 
+mot de passe que vous retiendrez).
 
-       Votre mot de passe a été modifié comme demandé. Merci de conserver
-cette information pour un usage ultérieur (ou bien de changer votre mot de 
-passe immédiatement en quelque chose dont vous vous souviendrez).
 
-Vos informations de connexion sont désormais :
+Vos identifiants sont comme suit :
 
-Site :                 $siteurl
-Pseudo/Courriel :      $email
-Mot de passe :         $new_password
+Adresse du site:       $[siteurl]
+Utilisateur:   $[email]
+Mot de passe:  $[new_password]
 
-Vous pouvez changer ce mot de passe depuis la page des « réglages » de votre compte, 
-après connexion
+Vous pouvez changer ce mot de passe depuis vos 'Réglages' une fois connecté.
 
-Sincèrement votre,
-       l'administrateur de $sitename
 
+Sincèrement,
+       l'administrateur de $[sitename]
+
\ No newline at end of file
index 5d9e737c32de4370bb37b40dade1497f78b21320..427ad561ab86a13fcf4f76629a08a4ac04d1a417 100644 (file)
@@ -1,22 +1,34 @@
 
-Cher(e) $username,
+Cher $[username],
+       Merci de vous être inscrit sur $[sitename]. Votre compte est bien créé. 
+Vos informations de connexion sont comme suit : 
 
-       Merci de votre inscription à $sitename. Votre compte a été créé.
-Les informations de connexion sont les suivantes :
 
-Site :                 $siteurl
-Pseudo/Courriel :      $email
-Mot de passe :         $password
+Adresse du site:       $[siteurl]
+Utilisateur:   $[email]
+Mot de passe:  $[password]
 
-Vous pouvez changer de mot de passe dans la page des « Réglages » de votre compte,
-après connexion.
+Vous pouvez changer votre mot de passe depuis la page "Réglages" une fois 
+connecté.
 
-Merci de prendre quelques minutes pour découvrir les autres réglages disponibles
-sur cette page.
+Merci de prender quelques instants pour vérifier les autres réglages de cette page.
 
-Merci, et bienvenue sur $sitename.
+Vous pouvez aussi ajouter quelques informatiques de base à votre profil par défaut 
+(sur la page "Profils") pour que les autres membres vous trouvent facilement.
+
+Nous vous recommandons d'indiquer un nom complet, d'ajouter une photo 
+de profil, quelques "mots-clés" (très efficace pour rencontrer des gens) - et 
+peut-être aussi votre pays de résidence ; sauf si vous souhaitez être plus
+précis, bien sûr.
+
+Nous avons le plus grand respect pour votre vie privée, et aucun de ces éléments n'est nécessaire. 
+Si vous êtes nouveau et ne connaissez personne, ils peuvent cependant vous
+aider à vous faire quelques nouveaux et intéressants contacts.  
+
+
+Merci, et bienvenue sur $[sitename].
 
 Sincèrement votre,
-       l'administrateur de $sitename
+       l'administrateur de $[sitename]
 
\ No newline at end of file
index 9cb31a6a82c79620accb2e7b3d1b5f2cd7a5fec2..35d0a730b393d15fdd7ae8fb5aff8a1c13a73702 100644 (file)
@@ -1,27 +1,25 @@
 
-Une nouvelle demande d'inscription a été reçue sur $sitename, et elle
-nécessite votre approbation.
+Une nouvelle demande d'inscription a été reçue par $[sitename], elle  
+nécessite votre approbation. 
 
 
-Les informations de connexion sont les suivantes :
+Les détails du compte sont:
 
-Nom complet :          $username
-Site :                 $siteurl
-Pseudo/Courriel :      $email
+Nom complet:   $[username]
+Adresse du site:       $[siteurl]
+Utilisateur:   $[email]
 
 
-Pour approuver cette demande, merci de suivre le lien :
+Pour approuver, merci de visiter le lien suivant:
 
 
-$siteurl/regmod/allow/$hash
+$[siteurl]/regmod/allow/$[hash] 
 
 
-Pour rejeter cette demande et supprimer le compte associé, 
-merci de suivre le lien :
+Pour refuser et supprimer le compte:
 
 
-$siteurl/regmod/deny/$hash
+$[siteurl]/regmod/deny/$[hash]
 
 
-En vous remerçiant.
-
+Merci d'avance.
diff --git a/view/fr/smarty3/register_adminadd_eml.tpl b/view/fr/smarty3/register_adminadd_eml.tpl
new file mode 100644 (file)
index 0000000..c122640
--- /dev/null
@@ -0,0 +1,32 @@
+Chère, Cher {{$username}},
+       l'administrateur de {{$sitename}} vous à créé un compte.
+
+Les détails de connexion sont les suivants :
+
+
+Emplacement du site :  {{$siteurl}}
+Nom de connexion :     {{$email}}
+Mot de passe : {{$password}}
+
+Vous pouvez modifier votre mot de passe à la page des "Paramètres" de votre compte, une fois 
+connecté.
+
+Veuillez prendre le temps d'examiner les autres paramètres de votre compte sur cette page.
+
+Vous pouvez aussi ajouter quelques informatiques de base à votre profil par défaut 
+(sur la page "Profils") pour que d'autres personnes vous trouvent facilement.
+
+Nous vous recommandons d'indiquer votre nom complet, d'ajouter une photo pour votre profil,
+d'ajouter quelques "mots-clés" (très efficace pour se faire de nouveaux amis) - et 
+peut-être aussi votre pays de résidence ; sauf si vous souhaitez pas être
+aussi spécifique.
+
+Nous respectons entièrement votre vie privée, et aucun de ces éléments n'est nécessaire. 
+Si vous êtes nouveau et ne connaissez personne, ils peuvent vous
+aider à vous faire de nouveaux et interessants amis.  
+
+
+Merci, et bienvenue sur {{$sitename}}.
+
+Sincèrement votre,
+       L'administrateur de {{$sitename}}
\ No newline at end of file
index 023cccff96ded052e3cc538158c23480468520af..2afbfe1f18a21c433254cb4634f6ca98ba8d85a2 100644 (file)
@@ -109,17 +109,18 @@ $a->strings["Left"] = "Gauche";
 $a->strings["Center"] = "Centre";
 $a->strings["Color scheme"] = "Palette de couleurs";
 $a->strings["Posts font size"] = "Taille de texte des messages";
-$a->strings["Textareas font size"] = "";
+$a->strings["Textareas font size"] = "Taille de police des zones de texte";
 $a->strings["Set colour scheme"] = "Choisir le schéma de couleurs";
 $a->strings["default"] = "défaut";
-$a->strings["Background Image"] = "";
+$a->strings["Background Image"] = "Image de fond";
 $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["Background Color"] = "Couleur de fond";
 $a->strings["HEX value for the background color. Don't include the #"] = "";
-$a->strings["font size"] = "";
+$a->strings["font size"] = "Taille de police";
 $a->strings["base font size for your interface"] = "";
 $a->strings["Set resize level for images in posts and comments (width and height)"] = "Choisir une taille pour les images dans les publications et commentaires (largeur et hauteur)";
 $a->strings["Set theme width"] = "Largeur du thème";
+$a->strings["Set style"] = "Définir le style";
 $a->strings["Delete this item?"] = "Effacer cet élément?";
 $a->strings["show fewer"] = "montrer moins";
 $a->strings["Update %s failed. See error logs."] = "Mise-à-jour %s échouée. Voir les journaux d'erreur.";
@@ -134,10 +135,10 @@ $a->strings["Remember me"] = "Se souvenir de moi";
 $a->strings["Or login using OpenID: "] = "Ou connectez-vous via OpenID: ";
 $a->strings["Forgot your password?"] = "Mot de passe oublié?";
 $a->strings["Password Reset"] = "Réinitialiser le mot de passe";
-$a->strings["Website Terms of Service"] = "";
-$a->strings["terms of service"] = "";
-$a->strings["Website Privacy Policy"] = "";
-$a->strings["privacy policy"] = "";
+$a->strings["Website Terms of Service"] = "Conditions d'utilisation du site internet";
+$a->strings["terms of service"] = "conditions d'utilisation";
+$a->strings["Website Privacy Policy"] = "Politique de confidentialité du site internet";
+$a->strings["privacy policy"] = "politique de confidentialité";
 $a->strings["Requested account is not available."] = "Le compte demandé n'est pas disponible.";
 $a->strings["Requested profile is not available."] = "Le profil demandé n'est pas disponible.";
 $a->strings["Edit profile"] = "Editer le profil";
@@ -166,7 +167,7 @@ $a->strings["Status"] = "Statut";
 $a->strings["Status Messages and Posts"] = "Messages d'état et publications";
 $a->strings["Profile Details"] = "Détails du profil";
 $a->strings["Photo Albums"] = "Albums photo";
-$a->strings["Videos"] = "";
+$a->strings["Videos"] = "Vidéos";
 $a->strings["Events and Calendar"] = "Événements et agenda";
 $a->strings["Personal Notes"] = "Notes personnelles";
 $a->strings["Only You Can See This"] = "Vous seul pouvez voir ça";
@@ -207,7 +208,7 @@ $a->strings["Your Email Address: "] = "Votre adresse courriel: ";
 $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>'."] = "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '&lt;strong&gt;pseudo@\$sitename&lt;/strong&gt;'.";
 $a->strings["Choose a nickname: "] = "Choisir un pseudo: ";
 $a->strings["Import"] = "Importer";
-$a->strings["Import your profile to this friendica instance"] = "";
+$a->strings["Import your profile to this friendica instance"] = "Importer votre profile dans cette instance de friendica";
 $a->strings["Profile not found."] = "Profil introuvable.";
 $a->strings["Contact not found."] = "Contact introuvable.";
 $a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Ceci peut se produire lorsque le contact a été requis par les deux personnes et a déjà été approuvé.";
@@ -232,7 +233,7 @@ $a->strings["%1\$s has joined %2\$s"] = "%1\$s a rejoint %2\$s";
 $a->strings["Authorize application connection"] = "Autoriser l'application à se connecter";
 $a->strings["Return to your app and insert this Securty Code:"] = "Retournez à votre application et saisissez ce Code de Sécurité : ";
 $a->strings["Please login to continue."] = "Merci de vous connecter pour continuer.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos notices et contacts, et/ou à créer des notices à votre place?";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos billets et contacts, et/ou à créer des billets à votre place?";
 $a->strings["No valid account found."] = "Impossible de trouver un compte valide.";
 $a->strings["Password reset request issued. Check your email."] = "Réinitialisation du mot de passe en cours. Vérifiez votre courriel.";
 $a->strings["Password reset requested at %s"] = "Requête de réinitialisation de mot de passe à %s";
@@ -354,9 +355,9 @@ $a->strings["If you don't have a command line version of PHP installed on server
 $a->strings["PHP executable path"] = "Chemin vers l'exécutable de PHP";
 $a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation.";
 $a->strings["Command line PHP"] = "Version \"ligne de commande\" de PHP";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "";
-$a->strings["Found PHP version: "] = "";
-$a->strings["PHP cli binary"] = "";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)";
+$a->strings["Found PHP version: "] = "Version de PHP:";
+$a->strings["PHP cli binary"] = "PHP cli binary";
 $a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé.";
 $a->strings["This is required for message delivery to work."] = "Ceci est requis pour que la livraison des messages fonctionne.";
 $a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
@@ -380,11 +381,11 @@ $a->strings["This is most often a permission setting, as the web server may not
 $a->strings["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."] = "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica.";
 $a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\".";
 $a->strings[".htconfig.php is writable"] = "Fichier .htconfig.php accessible en écriture";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "";
-$a->strings["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."] = "";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "";
-$a->strings["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."] = "";
-$a->strings["view/smarty3 is writable"] = "";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu.";
+$a->strings["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."] = "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier.";
+$a->strings["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."] = "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 est autorisé à l écriture";
 $a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur.";
 $a->strings["Url rewrite is working"] = "La réécriture d'URL fonctionne.";
 $a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement.";
@@ -418,6 +419,7 @@ $a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] =
 $a->strings["Site settings updated."] = "Réglages du site mis-à-jour.";
 $a->strings["No special theme for mobile devices"] = "Pas de thème particulier pour les terminaux mobiles";
 $a->strings["Never"] = "Jamais";
+$a->strings["At post arrival"] = "A l'arrivé d'une publication";
 $a->strings["Frequently"] = "Fréquemment";
 $a->strings["Hourly"] = "Toutes les heures";
 $a->strings["Twice daily"] = "Deux fois par jour";
@@ -429,7 +431,7 @@ $a->strings["Open"] = "Ouvert";
 $a->strings["No SSL policy, links will track page SSL state"] = "Pas de politique SSL, le liens conserveront l'état SSL de la page";
 $a->strings["Force all links to use SSL"] = "Forcer tous les liens à utiliser SSL";
 $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)";
-$a->strings["Save Settings"] = "";
+$a->strings["Save Settings"] = "Sauvegarder les paramétres";
 $a->strings["File upload"] = "Téléversement de fichier";
 $a->strings["Policies"] = "Politiques";
 $a->strings["Advanced"] = "Avancé";
@@ -437,19 +439,19 @@ $a->strings["Performance"] = "Performance";
 $a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "";
 $a->strings["Site name"] = "Nom du site";
 $a->strings["Banner/Logo"] = "Bannière/Logo";
-$a->strings["Additional Info"] = "";
+$a->strings["Additional Info"] = "Informations supplémentaires";
 $a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "";
 $a->strings["System language"] = "Langue du système";
 $a->strings["System theme"] = "Thème du système";
-$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Thème par défaut sur ce site - peut être changé en fonction des profils - <a href='#' id='cnftheme'>changer les réglages du thème</a>";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Thème par défaut sur ce site - peut être changé au niveau du profile utilisateur - <a href='#' id='cnftheme'>changer les réglages du thème</a>";
 $a->strings["Mobile system theme"] = "Thème mobile";
 $a->strings["Theme for mobile devices"] = "Thème pour les terminaux mobiles";
 $a->strings["SSL link policy"] = "Politique SSL pour les liens";
-$a->strings["Determines whether generated links should be forced to use SSL"] = "Détermine si les liens générés doivent forcer l'usage de SSL";
+$a->strings["Determines whether generated links should be forced to use SSL"] = "Détermine si les liens générés doivent forcer l'utilisation de SSL";
 $a->strings["Old style 'Share'"] = "";
 $a->strings["Deactivates the bbcode element 'share' for repeating items."] = "";
 $a->strings["Hide help entry from navigation menu"] = "Cacher l'aide du menu de navigation";
-$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Cacher l'entrée du menu pour les pages d'Aide dans le menu de navigation. Vous pouvez toujours y accéder en tapant /help directement.";
+$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Cacher du menu de navigation le l'entrée des vers les pages d'aide. Vous pouvez toujours y accéder en tapant directement /help.";
 $a->strings["Single user instance"] = "Instance mono-utilisateur";
 $a->strings["Make this instance multi-user or single-user for the named user"] = "Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l'utilisateur.";
 $a->strings["Maximum image size"] = "Taille maximale des images";
@@ -475,17 +477,17 @@ $a->strings["Force publish"] = "Forcer la publication globale";
 $a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site.";
 $a->strings["Global directory update URL"] = "URL de mise-à-jour de l'annuaire global";
 $a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL de mise-à-jour de l'annuaire global. Si vide, l'annuaire global sera complètement indisponible.";
-$a->strings["Allow threaded items"] = "Activer les commentaires imbriqués";
+$a->strings["Allow threaded items"] = "autoriser le suivi des éléments par fil conducteur";
 $a->strings["Allow infinite level threading for items on this site."] = "Permettre une imbrication infinie des commentaires.";
 $a->strings["Private posts by default for new users"] = "Publications privées par défaut pour les nouveaux utilisateurs";
-$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Rendre les posts de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde.";
+$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde.";
 $a->strings["Don't include post content in email notifications"] = "Ne pas inclure le contenu posté dans l'e-mail de notification";
-$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."] = "Ne pas inclure le contenu d'un postage/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité.";
-$a->strings["Disallow public access to addons listed in the apps menu."] = "";
+$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."] = "Ne pas inclure le contenu d'un billet/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité.";
+$a->strings["Disallow public access to addons listed in the apps menu."] = "Interdire l'acces public pour les extentions listées dans le menu apps.";
 $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["Allow Users to set remote_self"] = "";
+$a->strings["Allow Users to set remote_self"] = "Autoriser les utilisateurs à définir remote_self";
 $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."] = "";
 $a->strings["Block multiple registrations"] = "Interdire les inscriptions multiples";
 $a->strings["Disallow users to register additional accounts for use as pages."] = "Ne pas permettre l'inscription de comptes multiples comme des pages.";
@@ -498,7 +500,7 @@ $a->strings["Use PHP UTF8 regular expressions"] = "Utiliser les expressions rati
 $a->strings["Show Community Page"] = "Montrer la \"Place publique\"";
 $a->strings["Display a Community page showing all recent public postings on this site."] = "Afficher une page Communauté avec toutes les publications publiques récentes du site.";
 $a->strings["Enable OStatus support"] = "Activer le support d'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."] = "Fournir une compatibilité OStatus (identi.ca, status.net, etc.). Toutes les communications d'OStatus sont publiques, des avertissements liés à la vie privée seront affichés si utile.";
+$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fourni nativement la compatibilité avec OStatus (StatusNet, GNU Social etc.). Touts les communications utilisant OStatus sont public, des avertissements liés à la vie privée seront affichés si utile.";
 $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"] = "Activer le support de Diaspora";
@@ -519,7 +521,7 @@ $a->strings["Maximum Load Average"] = "Plafond de la charge moyenne";
 $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Charge système maximale à partir de laquelle l'émission et la réception seront soumises à un délai supplémentaire. Par défaut, 50.";
 $a->strings["Use MySQL full text engine"] = "Utiliser le moteur de recherche plein texte de MySQL";
 $a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus.";
-$a->strings["Suppress Language"] = "";
+$a->strings["Suppress Language"] = "Supprimer un langage";
 $a->strings["Suppress language information in meta information about a posting."] = "";
 $a->strings["Path to item cache"] = "Chemin vers le cache des objets.";
 $a->strings["Cache duration in seconds"] = "Durée du cache en secondes";
@@ -538,7 +540,7 @@ $a->strings["Failed Updates"] = "Mises-à-jour échouées";
 $a->strings["This does not include updates prior to 1139, which did not return a status."] = "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails.";
 $a->strings["Mark success (if update was manually applied)"] = "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)";
 $a->strings["Attempt to execute this update step automatically"] = "Tenter d'éxecuter cette étape automatiquement";
-$a->strings["Registration successful. Email send to user"] = "";
+$a->strings["Registration successful. Email send to user"] = "Souscription réussi. Mail envoyé à l'utilisateur";
 $a->strings["%s user blocked/unblocked"] = array(
        0 => "%s utilisateur a (dé)bloqué",
        1 => "%s utilisateurs ont (dé)bloqué",
@@ -550,7 +552,7 @@ $a->strings["%s user deleted"] = array(
 $a->strings["User '%s' deleted"] = "Utilisateur '%s' supprimé";
 $a->strings["User '%s' unblocked"] = "Utilisateur '%s' débloqué";
 $a->strings["User '%s' blocked"] = "Utilisateur '%s' bloqué";
-$a->strings["Add User"] = "";
+$a->strings["Add User"] = "Ajouter l'utilisateur";
 $a->strings["select all"] = "tout sélectionner";
 $a->strings["User registrations waiting for confirm"] = "Inscriptions d'utilisateurs en attente de confirmation";
 $a->strings["User waiting for permanent deletion"] = "";
@@ -564,7 +566,7 @@ $a->strings["Block"] = "Bloquer";
 $a->strings["Unblock"] = "Débloquer";
 $a->strings["Site admin"] = "Administration du Site";
 $a->strings["Account expired"] = "Compte expiré";
-$a->strings["New User"] = "";
+$a->strings["New User"] = "Nouvel utilisateur";
 $a->strings["Register date"] = "Date d'inscription";
 $a->strings["Last login"] = "Dernière connexion";
 $a->strings["Last item"] = "Dernier élément";
@@ -572,10 +574,10 @@ $a->strings["Deleted since"] = "";
 $a->strings["Account"] = "Compte";
 $a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?";
 $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?"] = "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?";
-$a->strings["Name of the new user."] = "";
-$a->strings["Nickname"] = "";
-$a->strings["Nickname of the new user."] = "";
-$a->strings["Email address of the new user."] = "";
+$a->strings["Name of the new user."] = "Nom du nouvel utilisateur.";
+$a->strings["Nickname"] = "Pseudo";
+$a->strings["Nickname of the new user."] = "Pseudo du nouvel utilisateur.";
+$a->strings["Email address of the new user."] = "Adresse mail du nouvel utilisateur.";
 $a->strings["Plugin %s disabled."] = "Extension %s désactivée.";
 $a->strings["Plugin %s enabled."] = "Extension %s activée.";
 $a->strings["Disable"] = "Désactiver";
@@ -589,7 +591,7 @@ $a->strings["[Experimental]"] = "[Expérimental]";
 $a->strings["[Unsupported]"] = "[Non supporté]";
 $a->strings["Log settings updated."] = "Réglages des journaux mis-à-jour.";
 $a->strings["Clear"] = "Effacer";
-$a->strings["Enable Debugging"] = "";
+$a->strings["Enable Debugging"] = "Activer le déboggage";
 $a->strings["Log file"] = "Fichier de journaux";
 $a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica.";
 $a->strings["Log level"] = "Niveau de journalisaton";
@@ -605,7 +607,7 @@ $a->strings["Tips for New Members"] = "Conseils aux nouveaux venus";
 $a->strings["link"] = "lien";
 $a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a taggué %3\$s de %2\$s avec %4\$s";
 $a->strings["Item not found"] = "Élément introuvable";
-$a->strings["Edit post"] = "Éditer la publication";
+$a->strings["Edit post"] = "Éditer le billet";
 $a->strings["upload photo"] = "envoi image";
 $a->strings["Attach file"] = "Joindre fichier";
 $a->strings["attach file"] = "ajout fichier";
@@ -620,7 +622,7 @@ $a->strings["Clear browser location"] = "Effacer la localisation du navigateur";
 $a->strings["clear location"] = "supp. localisation";
 $a->strings["Permission settings"] = "Réglages des permissions";
 $a->strings["CC: email addresses"] = "CC: adresses de courriel";
-$a->strings["Public post"] = "Notice publique";
+$a->strings["Public post"] = "Billet publique";
 $a->strings["Set title"] = "Définir un titre";
 $a->strings["Categories (comma-separated list)"] = "Catégories (séparées par des virgules)";
 $a->strings["Example: bob@example.com, mary@example.com"] = "Exemple: bob@exemple.com, mary@exemple.com";
@@ -714,8 +716,8 @@ $a->strings["Submit Request"] = "Envoyer la requête";
 $a->strings["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]";
 $a->strings["View in context"] = "Voir dans le contexte";
 $a->strings["%d contact edited."] = array(
-       0 => "",
-       1 => "",
+       0 => "%d contact édité",
+       1 => "%d contacts édités.",
 );
 $a->strings["Could not access contact record."] = "Impossible d'accéder à l'enregistrement du contact.";
 $a->strings["Could not locate selected profile."] = "Impossible de localiser le profil séléctionné.";
@@ -769,6 +771,9 @@ $a->strings["Currently ignored"] = "Actuellement ignoré";
 $a->strings["Currently archived"] = "Actuellement archivé";
 $a->strings["Hide this contact from others"] = "Cacher ce contact aux autres";
 $a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Les réponses et \"j'aime\" à vos contenus publics <strong>peuvent</strong> être toujours visibles";
+$a->strings["Notification for new posts"] = "Notification des nouvelles publications";
+$a->strings["Send a notification of every new post of this contact"] = "";
+$a->strings["Fetch further information for feeds"] = "";
 $a->strings["Suggestions"] = "Suggestions";
 $a->strings["Suggest potential friends"] = "Suggérer des amis potentiels";
 $a->strings["All Contacts"] = "Tous les contacts";
@@ -790,11 +795,10 @@ $a->strings["Edit contact"] = "Éditer le contact";
 $a->strings["Search your contacts"] = "Rechercher dans vos contacts";
 $a->strings["Update"] = "Mises-à-jour";
 $a->strings["everybody"] = "tout le monde";
-$a->strings["Account settings"] = "Compte";
 $a->strings["Additional features"] = "Fonctions supplémentaires";
-$a->strings["Display settings"] = "Affichage";
-$a->strings["Connector settings"] = "Connecteurs";
-$a->strings["Plugin settings"] = "Extensions";
+$a->strings["Display"] = "Afficher";
+$a->strings["Social Networks"] = "Réseaux sociaux";
+$a->strings["Delegations"] = "Délégations";
 $a->strings["Connected apps"] = "Applications connectées";
 $a->strings["Export personal data"] = "Exporter";
 $a->strings["Remove account"] = "Supprimer le compte";
@@ -805,12 +809,12 @@ $a->strings["Features updated"] = "Fonctionnalités mises à jour";
 $a->strings["Relocate message has been send to your contacts"] = "";
 $a->strings["Passwords do not match. Password unchanged."] = "Les mots de passe ne correspondent pas. Aucun changement appliqué.";
 $a->strings["Empty passwords are not allowed. Password unchanged."] = "Les mots de passe vides sont interdits. Aucun changement appliqué.";
-$a->strings["Wrong password."] = "";
+$a->strings["Wrong password."] = "Mauvais mot de passe.";
 $a->strings["Password changed."] = "Mots de passe changés.";
 $a->strings["Password update failed. Please try again."] = "Le changement de mot de passe a échoué. Merci de recommencer.";
 $a->strings[" Please use a shorter name."] = " Merci d'utiliser un nom plus court.";
 $a->strings[" Name too short."] = " Nom trop court.";
-$a->strings["Wrong Password"] = "";
+$a->strings["Wrong Password"] = "Mauvais mot de passe";
 $a->strings[" Not valid email."] = " Email invalide.";
 $a->strings[" Cannot change to that email."] = " Impossible de changer pour cet email.";
 $a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut.";
@@ -836,7 +840,6 @@ $a->strings["enabled"] = "activé";
 $a->strings["disabled"] = "désactivé";
 $a->strings["StatusNet"] = "StatusNet";
 $a->strings["Email access is disabled on this site."] = "L'accès courriel est désactivé sur ce site.";
-$a->strings["Connector Settings"] = "Connecteurs";
 $a->strings["Email/Mailbox Setup"] = "Réglages de courriel/boîte à lettre";
 $a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte.";
 $a->strings["Last successful email check:"] = "Dernière vérification réussie des courriels:";
@@ -859,9 +862,12 @@ $a->strings["Update browser every xx seconds"] = "Mettre-à-jour l'affichage tou
 $a->strings["Minimum of 10 seconds, no maximum"] = "Délai minimum de 10 secondes, pas de maximum";
 $a->strings["Number of items to display per page:"] = "Nombre d’éléments par page:";
 $a->strings["Maximum of 100 items"] = "Maximum de 100 éléments";
-$a->strings["Number of items to display per page when viewed from mobile device:"] = "";
+$a->strings["Number of items to display per page when viewed from mobile device:"] = "Nombre d'éléments a afficher par page pour un appareil mobile";
 $a->strings["Don't show emoticons"] = "Ne pas afficher les émoticônes (smileys grahiques)";
+$a->strings["Don't show notices"] = "";
 $a->strings["Infinite scroll"] = "";
+$a->strings["User Types"] = "";
+$a->strings["Community Types"] = "";
 $a->strings["Normal Account Page"] = "Compte normal";
 $a->strings["This account is a normal personal profile"] = "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)";
 $a->strings["Soapbox Page"] = "Compte \"boîte à savon\"";
@@ -899,9 +905,9 @@ $a->strings["Password Settings"] = "Réglages de mot de passe";
 $a->strings["New Password:"] = "Nouveau mot de passe:";
 $a->strings["Confirm:"] = "Confirmer:";
 $a->strings["Leave password fields blank unless changing"] = "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer";
-$a->strings["Current Password:"] = "";
-$a->strings["Your current password to confirm the changes"] = "";
-$a->strings["Password:"] = "";
+$a->strings["Current Password:"] = "Mot de passe actuel:";
+$a->strings["Your current password to confirm the changes"] = "Votre mot de passe actuel pour confirmer les modifications";
+$a->strings["Password:"] = "Mot de passe:";
 $a->strings["Basic Settings"] = "Réglages basiques";
 $a->strings["Full Name:"] = "Nom complet:";
 $a->strings["Email Address:"] = "Adresse courriel:";
@@ -1011,7 +1017,7 @@ $a->strings["Group created."] = "Groupe créé.";
 $a->strings["Could not create group."] = "Impossible de créer le groupe.";
 $a->strings["Group not found."] = "Groupe introuvable.";
 $a->strings["Group name changed."] = "Groupe renommé.";
-$a->strings["Save Group"] = "";
+$a->strings["Save Group"] = "Sauvegarder le groupe";
 $a->strings["Create a group of contacts/friends."] = "Créez un groupe de contacts/amis.";
 $a->strings["Group Name: "] = "Nom du groupe: ";
 $a->strings["Group removed."] = "Groupe enlevé.";
@@ -1093,7 +1099,7 @@ $a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Vo
 $a->strings["Upload Photos"] = "Téléverser des photos";
 $a->strings["New album name: "] = "Nom du nouvel album: ";
 $a->strings["or existing album name: "] = "ou nom d'un album existant: ";
-$a->strings["Do not show a status post for this upload"] = "Ne pas publier de notice pour cet envoi";
+$a->strings["Do not show a status post for this upload"] = "Ne pas publier de notice de statut pour cet envoi";
 $a->strings["Permissions"] = "Permissions";
 $a->strings["Private Photo"] = "Photo privée";
 $a->strings["Public Photo"] = "Photo publique";
@@ -1120,12 +1126,14 @@ $a->strings["Public photo"] = "Photo publique";
 $a->strings["Share"] = "Partager";
 $a->strings["View Album"] = "Voir l'album";
 $a->strings["Recent Photos"] = "Photos récentes";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise";
+$a->strings["Or - did you try to upload an empty file?"] = "";
 $a->strings["File exceeds size limit of %d"] = "La taille du fichier dépasse la limite de %d";
 $a->strings["File upload failed."] = "Le téléversement a échoué.";
-$a->strings["No videos selected"] = "";
-$a->strings["View Video"] = "";
-$a->strings["Recent Videos"] = "";
-$a->strings["Upload New Videos"] = "";
+$a->strings["No videos selected"] = "Pas de vidéo sélectionné";
+$a->strings["View Video"] = "Regarder la vidéo";
+$a->strings["Recent Videos"] = "Vidéos récente";
+$a->strings["Upload New Videos"] = "Téléversé une nouvelle vidéo";
 $a->strings["Poke/Prod"] = "Solliciter";
 $a->strings["poke, prod or do other things to somebody"] = "solliciter (poke/...) quelqu'un";
 $a->strings["Recipient"] = "Destinataire";
@@ -1241,11 +1249,11 @@ $a->strings["Friend/Connect Request"] = "Demande de connexion/relation";
 $a->strings["New Follower"] = "Nouvel abonné";
 $a->strings["No introductions."] = "Aucune demande d'introduction.";
 $a->strings["Notifications"] = "Notifications";
-$a->strings["%s liked %s's post"] = "%s a aimé la notice de %s";
-$a->strings["%s disliked %s's post"] = "%s n'a pas aimé la notice de %s";
+$a->strings["%s liked %s's post"] = "%s a aimé le billet de %s";
+$a->strings["%s disliked %s's post"] = "%s n'a pas aimé le billet de %s";
 $a->strings["%s is now friends with %s"] = "%s est désormais ami(e) avec %s";
-$a->strings["%s created a new post"] = "%s a publié une notice";
-$a->strings["%s commented on %s's post"] = "%s a commenté une notice de %s";
+$a->strings["%s created a new post"] = "%s a publié un billet";
+$a->strings["%s commented on %s's post"] = "%s a commenté le billet de %s";
 $a->strings["No more network notifications."] = "Aucune notification du réseau.";
 $a->strings["Network Notifications"] = "Notifications du réseau";
 $a->strings["No more personal notifications."] = "Aucun notification personnelle.";
@@ -1298,11 +1306,13 @@ $a->strings["Categories"] = "Catégories";
 $a->strings["Click here to upgrade."] = "Cliquez ici pour mettre à jour.";
 $a->strings["This action exceeds the limits set by your subscription plan."] = "Cette action dépasse les limites définies par votre abonnement.";
 $a->strings["This action is not available under your subscription plan."] = "Cette action n'est pas disponible avec votre abonnement.";
-$a->strings["User not found."] = "";
-$a->strings["There is no status with this id."] = "";
+$a->strings["User not found."] = "Utilisateur non trouvé";
+$a->strings["There is no status with this id."] = "Il n'y a pas de statut avec cet id.";
+$a->strings["There is no conversation with this id."] = "Il n'y a pas de conversation avec cet id.";
 $a->strings["view full size"] = "voir en pleine taille";
 $a->strings["Starts:"] = "Débute:";
 $a->strings["Finishes:"] = "Finit:";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Impossible de localiser les informations DNS pour le serveur de base de données '%s'";
 $a->strings["(no subject)"] = "(sans titre)";
 $a->strings["noreply"] = "noreply";
 $a->strings["An invitation is required."] = "Une invitation est requise.";
@@ -1340,8 +1350,8 @@ $a->strings["Send PM"] = "Message privé";
 $a->strings["Poke"] = "Sollicitations (pokes)";
 $a->strings["%s likes this."] = "%s aime ça.";
 $a->strings["%s doesn't like this."] = "%s n'aime pas ça.";
-$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["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d personnes</span> aiment ça";
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d personnes</span> n'aiment pas ça";
 $a->strings["and"] = "et";
 $a->strings[", and %d other people"] = ", et %d autres personnes";
 $a->strings["%s like this."] = "%s aiment ça.";
@@ -1353,6 +1363,7 @@ $a->strings["Tag term:"] = "Tag : ";
 $a->strings["Where are you right now?"] = "Où êtes-vous présentemment?";
 $a->strings["Delete item(s)?"] = "Supprimer les élément(s) ?";
 $a->strings["Post to Email"] = "Publier aussi par courriel";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "";
 $a->strings["permissions"] = "permissions";
 $a->strings["Post to Groups"] = "";
 $a->strings["Post to Contacts"] = "";
@@ -1360,15 +1371,15 @@ $a->strings["Private post"] = "Message privé";
 $a->strings["Logged out."] = "Déconnecté.";
 $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["Error! Cannot check nickname"] = "Erreur! Pseudo invalide";
+$a->strings["User '%s' already exists on this server!"] = "L'utilisateur '%s' existe déjà sur ce serveur!";
 $a->strings["User creation error"] = "Erreur de création d'utilisateur";
 $a->strings["User profile creation error"] = "Erreur de création du profil utilisateur";
 $a->strings["%d contact not imported"] = array(
        0 => "%d contacts non importés",
        1 => "%d contacts non importés",
 );
-$a->strings["Done. You can now login with your username and password"] = "";
+$a->strings["Done. You can now login with your username and password"] = "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe";
 $a->strings["newer"] = "Plus récent";
 $a->strings["older"] = "Plus ancien";
 $a->strings["prev"] = "précédent";
@@ -1457,6 +1468,9 @@ $a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s a posté sur
 $a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notification] %s vous a repéré";
 $a->strings["%1\$s tagged you at %2\$s"] = "%1\$s vous parle sur %2\$s";
 $a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]vous a taggé[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notification] %s partage une nouvelle publication";
+$a->strings["%1\$s shared a new post at %2\$s"] = "";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]partage une publication[/url].";
 $a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s vous a sollicité";
 $a->strings["%1\$s poked you at %2\$s"] = "%1\$s vous a sollicité via %2\$s";
 $a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s vous a [url=%2\$s]sollicité[/url].";
@@ -1506,9 +1520,11 @@ $a->strings["Search site content"] = "Rechercher dans le contenu du site";
 $a->strings["Conversations on this site"] = "Conversations ayant cours sur ce site";
 $a->strings["Directory"] = "Annuaire";
 $a->strings["People directory"] = "Annuaire des utilisateurs";
+$a->strings["Information"] = "Information";
+$a->strings["Information about this friendica instance"] = "Information au sujet de cette instance de friendica";
 $a->strings["Conversations from your friends"] = "Conversations de vos amis";
 $a->strings["Network Reset"] = "";
-$a->strings["Load Network page with no filters"] = "";
+$a->strings["Load Network page with no filters"] = "Chargement des pages du réseau sans filtre";
 $a->strings["Friend Requests"] = "Demande d'amitié";
 $a->strings["See all notifications"] = "Voir toute notification";
 $a->strings["Mark all system notifications seen"] = "Marquer toutes les notifications système comme 'vues'";
@@ -1517,7 +1533,7 @@ $a->strings["Inbox"] = "Messages entrants";
 $a->strings["Outbox"] = "Messages sortants";
 $a->strings["Manage"] = "Gérer";
 $a->strings["Manage other pages"] = "Gérer les autres pages";
-$a->strings["Delegations"] = "Délégations";
+$a->strings["Account settings"] = "Compte";
 $a->strings["Manage/Edit Profiles"] = "Gérer/Éditer les profiles";
 $a->strings["Manage/edit friends and contacts"] = "Gérer/éditer les amitiés et contacts";
 $a->strings["Site setup and configuration"] = "Démarrage et configuration du site";
@@ -1540,7 +1556,8 @@ $a->strings["Love/Romance:"] = "Amour/Romance:";
 $a->strings["Work/employment:"] = "Activité professionnelle/Occupation:";
 $a->strings["School/education:"] = "Études/Formation:";
 $a->strings["Image/photo"] = "Image/photo";
-$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "<span><a href=\"%s\" target=\"external-link\">%s</a> a écris le <a href=\"%s\" target=\"external-link\">post</a> suivant";
+$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "";
+$a->strings["<span><b>"] = "";
 $a->strings["$1 wrote:"] = "$1 a écrit:";
 $a->strings["Encrypted content"] = "Contenu chiffré";
 $a->strings["Unknown | Not categorised"] = "Inconnu | Non-classé";
@@ -1558,8 +1575,10 @@ $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["pump.io"] = "pump.io";
+$a->strings["Twitter"] = "Twitter";
+$a->strings["Diaspora Connector"] = "Connecteur Diaspora";
+$a->strings["Statusnet"] = "Statusnet";
 $a->strings["Miscellaneous"] = "Divers";
 $a->strings["year"] = "an";
 $a->strings["month"] = "mois";
@@ -1583,38 +1602,40 @@ $a->strings["Happy Birthday %s"] = "Joyeux anniversaire, %s !";
 $a->strings["General Features"] = "Fonctions générales";
 $a->strings["Multiple Profiles"] = "Profils multiples";
 $a->strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils";
-$a->strings["Post Composition Features"] = "";
+$a->strings["Post Composition Features"] = "Caractéristiques de composition de publication";
 $a->strings["Richtext Editor"] = "Éditeur de texte enrichi";
 $a->strings["Enable richtext editor"] = "Activer l'éditeur de texte enrichi";
-$a->strings["Post Preview"] = "";
-$a->strings["Allow previewing posts and comments before publishing them"] = "";
-$a->strings["Network Sidebar Widgets"] = "";
+$a->strings["Post Preview"] = "Aperçu du billet";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Permet la prévisualisation des billets et commentaires avant de les publier";
+$a->strings["Auto-mention Forums"] = "";
+$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "";
+$a->strings["Network Sidebar Widgets"] = "Widgets réseau pour barre latérale";
 $a->strings["Search by Date"] = "Rechercher par Date";
-$a->strings["Ability to select posts by date ranges"] = "";
-$a->strings["Group Filter"] = "";
-$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["Ability to select posts by date ranges"] = "Capacité de sélectionner les billets par intervalles de dates";
+$a->strings["Group Filter"] = "Filtre de groupe";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Activer le widget d’affichage des Posts du Réseau seulement pour le groupe sélectionné";
+$a->strings["Network Filter"] = "Filtre de réseau";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Activer le widget d’affichage des Posts du Réseau seulement pour le réseau sélectionné";
+$a->strings["Save search terms for re-use"] = "Sauvegarder la recherche pour une utilisation ultérieure";
+$a->strings["Network Tabs"] = "Onglets Réseau";
+$a->strings["Network Personal Tab"] = "Onglet Réseau Personnel";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Activer l'onglet pour afficher seulement les Posts du Réseau où vous avez interagit";
 $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["Post/Comment Tools"] = "outils de publication/commentaire";
+$a->strings["Multiple Deletion"] = "Suppression multiple";
 $a->strings["Select and delete multiple posts/comments at once"] = "";
-$a->strings["Edit Sent Posts"] = "";
+$a->strings["Edit Sent Posts"] = "Edité les publications envoyées";
 $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"] = "";
+$a->strings["Tagging"] = "Tagger";
+$a->strings["Ability to tag existing posts"] = "Autorisé à tagger des publications existantes";
+$a->strings["Post Categories"] = "Catégories des publications";
+$a->strings["Add categories to your posts"] = "Ajouter des catégories à vos publications";
 $a->strings["Ability to file posts under folders"] = "";
-$a->strings["Dislike Posts"] = "";
-$a->strings["Ability to dislike posts/comments"] = "";
+$a->strings["Dislike Posts"] = "N'aime pas";
+$a->strings["Ability to dislike posts/comments"] = "Autorisé a ne pas aimer les publications/commentaires";
 $a->strings["Star Posts"] = "";
 $a->strings["Ability to mark special posts with a star indicator"] = "";
 $a->strings["Sharing notification from Diaspora network"] = "Notification de partage du réseau Diaspora";
@@ -1688,5 +1709,4 @@ $a->strings["It's complicated"] = "C'est compliqué";
 $a->strings["Don't care"] = "S'en désintéresse";
 $a->strings["Ask me"] = "Me demander";
 $a->strings["stopped following"] = "retiré de la liste de suivi";
-$a->strings["Drop Contact"] = "";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Impossible de localiser les informations DNS pour le serveur de base de données '%s'";
+$a->strings["Drop Contact"] = "Supprimer le contact";
index 621b97f3ba31277ee1845adc61e091467744faf9..7304eab339dba36de452139205ab0f0790efab19 100644 (file)
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-12-31 18:07+0100\n"
-"PO-Revision-Date: 2014-01-22 19:57+0000\n"
+"POT-Creation-Date: 2014-04-26 09:22+0200\n"
+"PO-Revision-Date: 2014-04-29 07:37+0000\n"
 "Last-Translator: Haakon Meland Eriksen <haakon.eriksen@far.no>\n"
 "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/friendica/language/nb_NO/)\n"
 "MIME-Version: 1.0\n"
@@ -23,24 +23,24 @@ msgid "This entry was edited"
 msgstr "Denne oppføringen ble endret"
 
 #: ../../object/Item.php:113 ../../mod/content.php:619
-#: ../../mod/photos.php:1351
+#: ../../mod/photos.php:1355
 msgid "Private Message"
 msgstr "Privat melding"
 
 #: ../../object/Item.php:117 ../../mod/editpost.php:109
-#: ../../mod/content.php:727 ../../mod/settings.php:663
+#: ../../mod/content.php:727 ../../mod/settings.php:670
 msgid "Edit"
 msgstr "Endre"
 
 #: ../../object/Item.php:126 ../../mod/content.php:437
-#: ../../mod/content.php:739 ../../include/conversation.php:611
+#: ../../mod/content.php:739 ../../include/conversation.php:612
 msgid "Select"
 msgstr "Velg"
 
-#: ../../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
+#: ../../object/Item.php:127 ../../mod/admin.php:908 ../../mod/content.php:438
+#: ../../mod/content.php:740 ../../mod/contacts.php:703
+#: ../../mod/settings.php:671 ../../mod/group.php:171
+#: ../../mod/photos.php:1646 ../../include/conversation.php:613
 msgid "Delete"
 msgstr "Slett"
 
@@ -69,7 +69,7 @@ msgid "add tag"
 msgstr "Legg til merkelapp"
 
 #: ../../object/Item.php:213 ../../mod/content.php:683
-#: ../../mod/photos.php:1529
+#: ../../mod/photos.php:1538
 msgid "I like this (toggle)"
 msgstr "Jeg liker dette (skru på/av)"
 
@@ -78,7 +78,7 @@ msgid "like"
 msgstr "liker"
 
 #: ../../object/Item.php:214 ../../mod/content.php:684
-#: ../../mod/photos.php:1530
+#: ../../mod/photos.php:1539
 msgid "I don't like this (toggle)"
 msgstr "Jeg liker ikke dette (skru på/av)"
 
@@ -94,199 +94,200 @@ msgstr "Del denne"
 msgid "share"
 msgstr "Del"
 
-#: ../../object/Item.php:278 ../../include/conversation.php:663
+#: ../../object/Item.php:298 ../../include/conversation.php:665
 msgid "Categories:"
 msgstr "Kategorier:"
 
-#: ../../object/Item.php:279 ../../include/conversation.php:664
+#: ../../object/Item.php:299 ../../include/conversation.php:666
 msgid "Filed under:"
 msgstr "Lagret i:"
 
-#: ../../object/Item.php:287 ../../object/Item.php:288
+#: ../../object/Item.php:307 ../../object/Item.php:308
 #: ../../mod/content.php:471 ../../mod/content.php:851
-#: ../../mod/content.php:852 ../../include/conversation.php:651
+#: ../../mod/content.php:852 ../../include/conversation.php:653
 #, php-format
 msgid "View %s's profile @ %s"
 msgstr "Besøk %ss profil [%s]"
 
-#: ../../object/Item.php:289 ../../mod/content.php:853
+#: ../../object/Item.php:309 ../../mod/content.php:853
 msgid "to"
 msgstr "til"
 
-#: ../../object/Item.php:290
+#: ../../object/Item.php:310
 msgid "via"
 msgstr "via"
 
-#: ../../object/Item.php:291 ../../mod/content.php:854
+#: ../../object/Item.php:311 ../../mod/content.php:854
 msgid "Wall-to-Wall"
 msgstr "vegg-til-vegg"
 
-#: ../../object/Item.php:292 ../../mod/content.php:855
+#: ../../object/Item.php:312 ../../mod/content.php:855
 msgid "via Wall-To-Wall:"
 msgstr "via vegg-til-vegg"
 
-#: ../../object/Item.php:301 ../../mod/content.php:481
-#: ../../mod/content.php:863 ../../include/conversation.php:671
+#: ../../object/Item.php:321 ../../mod/content.php:481
+#: ../../mod/content.php:863 ../../include/conversation.php:673
 #, php-format
 msgid "%s from %s"
 msgstr "%s fra %s"
 
-#: ../../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
+#: ../../object/Item.php:341 ../../object/Item.php:657 ../../boot.php:693
+#: ../../mod/content.php:708 ../../mod/photos.php:1560
+#: ../../mod/photos.php:1604 ../../mod/photos.php:1687
 msgid "Comment"
 msgstr "Kommentar"
 
-#: ../../object/Item.php:322 ../../mod/wallmessage.php:156
+#: ../../object/Item.php:344 ../../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
+#: ../../mod/message.php:565 ../../mod/photos.php:1541
+#: ../../include/conversation.php:690 ../../include/conversation.php:1102
 msgid "Please wait"
 msgstr "Vennligst vent"
 
-#: ../../object/Item.php:345 ../../mod/content.php:602
+#: ../../object/Item.php:367 ../../mod/content.php:602
 #, php-format
 msgid "%d comment"
 msgid_plural "%d comments"
 msgstr[0] "%d kommentar"
 msgstr[1] "%d kommentarer"
 
-#: ../../object/Item.php:347 ../../object/Item.php:360
-#: ../../mod/content.php:604 ../../include/text.php:1928
+#: ../../object/Item.php:369 ../../object/Item.php:382
+#: ../../mod/content.php:604 ../../include/text.php:1946
 msgid "comment"
 msgid_plural "comments"
 msgstr[0] "kommentar"
 msgstr[1] "kommentarer"
 
-#: ../../object/Item.php:348 ../../boot.php:686 ../../mod/content.php:605
+#: ../../object/Item.php:370 ../../boot.php:694 ../../mod/content.php:605
 #: ../../include/contact_widgets.php:204
 msgid "show more"
 msgstr "vis mer"
 
-#: ../../object/Item.php:633 ../../mod/content.php:706
-#: ../../mod/photos.php:1549 ../../mod/photos.php:1593
-#: ../../mod/photos.php:1676
+#: ../../object/Item.php:655 ../../mod/content.php:706
+#: ../../mod/photos.php:1558 ../../mod/photos.php:1602
+#: ../../mod/photos.php:1685
 msgid "This is you"
 msgstr "Dette er deg"
 
-#: ../../object/Item.php:636 ../../view/theme/perihel/config.php:95
+#: ../../object/Item.php:658 ../../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
+#: ../../view/theme/cleanzero/config.php:80
+#: ../../view/theme/vier/config.php:47 ../../mod/mood.php:137
 #: ../../mod/install.php:248 ../../mod/install.php:286
 #: ../../mod/crepair.php:171 ../../mod/content.php:709
-#: ../../mod/contacts.php:458 ../../mod/profiles.php:630
+#: ../../mod/contacts.php:464 ../../mod/profiles.php:634
 #: ../../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/localtime.php:45 ../../mod/photos.php:1082
+#: ../../mod/photos.php:1203 ../../mod/photos.php:1510
+#: ../../mod/photos.php:1561 ../../mod/photos.php:1605
+#: ../../mod/photos.php:1688 ../../mod/poke.php:199 ../../mod/events.php:478
 #: ../../mod/fsuggest.php:107 ../../mod/invite.php:140
 #: ../../mod/manage.php:110
 msgid "Submit"
 msgstr "Lagre"
 
-#: ../../object/Item.php:637 ../../mod/content.php:710
+#: ../../object/Item.php:659 ../../mod/content.php:710
 msgid "Bold"
 msgstr "uthevet"
 
-#: ../../object/Item.php:638 ../../mod/content.php:711
+#: ../../object/Item.php:660 ../../mod/content.php:711
 msgid "Italic"
 msgstr "kursiv"
 
-#: ../../object/Item.php:639 ../../mod/content.php:712
+#: ../../object/Item.php:661 ../../mod/content.php:712
 msgid "Underline"
 msgstr "understrek"
 
-#: ../../object/Item.php:640 ../../mod/content.php:713
+#: ../../object/Item.php:662 ../../mod/content.php:713
 msgid "Quote"
 msgstr "sitat"
 
-#: ../../object/Item.php:641 ../../mod/content.php:714
+#: ../../object/Item.php:663 ../../mod/content.php:714
 msgid "Code"
 msgstr "kode"
 
-#: ../../object/Item.php:642 ../../mod/content.php:715
+#: ../../object/Item.php:664 ../../mod/content.php:715
 msgid "Image"
 msgstr "Bilde/fotografi"
 
-#: ../../object/Item.php:643 ../../mod/content.php:716
+#: ../../object/Item.php:665 ../../mod/content.php:716
 msgid "Link"
 msgstr "lenke"
 
-#: ../../object/Item.php:644 ../../mod/content.php:717
+#: ../../object/Item.php:666 ../../mod/content.php:717
 msgid "Video"
 msgstr "video"
 
-#: ../../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
+#: ../../object/Item.php:667 ../../mod/editpost.php:145
+#: ../../mod/content.php:718 ../../mod/photos.php:1562
+#: ../../mod/photos.php:1606 ../../mod/photos.php:1689
+#: ../../include/conversation.php:1119
 msgid "Preview"
 msgstr "forhåndsvisning"
 
-#: ../../index.php:199 ../../mod/apps.php:7
+#: ../../index.php:203 ../../mod/apps.php:7
 msgid "You must be logged in to use addons. "
 msgstr "Du må være innlogget for å bruke tillegg."
 
-#: ../../index.php:243 ../../mod/help.php:90
+#: ../../index.php:247 ../../mod/help.php:90
 msgid "Not Found"
 msgstr "Ikke funnet"
 
-#: ../../index.php:246 ../../mod/help.php:93
+#: ../../index.php:250 ../../mod/help.php:93
 msgid "Page not found."
 msgstr "Fant ikke siden."
 
-#: ../../index.php:355 ../../mod/group.php:72 ../../mod/profperm.php:19
+#: ../../index.php:359 ../../mod/group.php:72 ../../mod/profperm.php:19
 msgid "Permission denied"
 msgstr "Tilgang nektet"
 
-#: ../../index.php:356 ../../mod/mood.php:114 ../../mod/display.php:242
-#: ../../mod/register.php:40 ../../mod/dfrn_confirm.php:53
+#: ../../index.php:360 ../../mod/mood.php:114 ../../mod/display.php:266
+#: ../../mod/register.php:41 ../../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/network.php:4 ../../mod/install.php:151 ../../mod/editpost.php:10
 #: ../../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/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:246
+#: ../../mod/settings.php:101 ../../mod/settings.php:590
+#: ../../mod/settings.php:595 ../../mod/profiles.php:146
+#: ../../mod/profiles.php:575 ../../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/viewcontacts.php:22 ../../mod/photos.php:134
+#: ../../mod/photos.php:1048 ../../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/fsuggest.php:78 ../../mod/item.php:145 ../../mod/item.php:161
 #: ../../mod/notifications.php:66 ../../mod/invite.php:15
 #: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9
-#: ../../include/items.php:4215
+#: ../../wall_attach.php:55 ../../include/items.php:4373
 msgid "Permission denied."
 msgstr "Ingen tilgang."
 
-#: ../../index.php:415
+#: ../../index.php:419
 msgid "toggle mobile"
 msgstr "Velg mobilvisning"
 
 #: ../../view/theme/perihel/theme.php:33
 #: ../../view/theme/diabook/theme.php:123 ../../mod/notifications.php:93
-#: ../../include/nav.php:104 ../../include/nav.php:143
+#: ../../include/nav.php:104 ../../include/nav.php:145
 msgid "Home"
 msgstr "Hjem"
 
 #: ../../view/theme/perihel/theme.php:33
 #: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
-#: ../../include/nav.php:143
+#: ../../include/nav.php:145
 msgid "Your posts and conversations"
 msgstr "Dine innlegg og samtaler"
 
 #: ../../view/theme/perihel/theme.php:34
-#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1967
+#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979
 #: ../../mod/newmember.php:32 ../../mod/profperm.php:103
 #: ../../include/nav.php:77 ../../include/profile_advanced.php:7
 #: ../../include/profile_advanced.php:84
@@ -299,7 +300,7 @@ msgid "Your profile page"
 msgstr "Din profilside"
 
 #: ../../view/theme/perihel/theme.php:35
-#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1974
+#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1986
 #: ../../mod/fbrowser.php:25 ../../include/nav.php:78
 msgid "Photos"
 msgstr "Bilder"
@@ -310,7 +311,7 @@ msgid "Your photos"
 msgstr "Dine bilder"
 
 #: ../../view/theme/perihel/theme.php:36
-#: ../../view/theme/diabook/theme.php:127 ../../boot.php:1991
+#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2003
 #: ../../mod/events.php:370 ../../include/nav.php:79
 msgid "Events"
 msgstr "Hendelser"
@@ -338,13 +339,13 @@ msgstr "Fellesskap"
 
 #: ../../view/theme/perihel/config.php:89
 #: ../../view/theme/diabook/theme.php:621
-#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328
 msgid "don't show"
 msgstr "ikke vis"
 
 #: ../../view/theme/perihel/config.php:89
 #: ../../view/theme/diabook/theme.php:621
-#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:326
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327
 msgid "show"
 msgstr "vis"
 
@@ -353,6 +354,7 @@ msgstr "vis"
 #: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72
 #: ../../view/theme/clean/config.php:73
 #: ../../view/theme/cleanzero/config.php:82
+#: ../../view/theme/vier/config.php:49
 msgid "Theme settings"
 msgstr "Temainnstillinger"
 
@@ -374,8 +376,8 @@ msgstr "Angi linjeavstand for innlegg og kommentarer"
 msgid "Set resolution for middle column"
 msgstr "Angi oppløsning for midtkolonnen"
 
-#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:680
-#: ../../include/nav.php:171
+#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:688
+#: ../../include/nav.php:173
 msgid "Contacts"
 msgstr "Kontakter"
 
@@ -409,28 +411,28 @@ msgid "Last likes"
 msgstr "Siste liker"
 
 #: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118
-#: ../../include/conversation.php:246 ../../include/text.php:1922
+#: ../../include/conversation.php:246 ../../include/text.php:1940
 msgid "event"
 msgstr "hendelse"
 
 #: ../../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
+#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/subthread.php:87
 #: ../../include/conversation.php:121 ../../include/conversation.php:130
 #: ../../include/conversation.php:249 ../../include/conversation.php:258
-#: ../../include/diaspora.php:1878
+#: ../../include/diaspora.php:1908
 msgid "status"
 msgstr "status"
 
 #: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62
-#: ../../mod/like.php:151 ../../mod/subthread.php:87
+#: ../../mod/like.php:150 ../../mod/subthread.php:87
 #: ../../include/conversation.php:126 ../../include/conversation.php:254
-#: ../../include/text.php:1924 ../../include/diaspora.php:1878
+#: ../../include/text.php:1942 ../../include/diaspora.php:1908
 msgid "photo"
 msgstr "bilde"
 
-#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:168
-#: ../../include/conversation.php:137 ../../include/diaspora.php:1894
+#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:167
+#: ../../include/conversation.php:137 ../../include/diaspora.php:1924
 #, php-format
 msgid "%1$s likes %2$s's %3$s"
 msgstr "%1$s liker %2$s's %3$s"
@@ -441,16 +443,16 @@ msgstr "%1$s liker %2$s's %3$s"
 msgid "Last photos"
 msgstr "Siste bilder"
 
-#: ../../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
+#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60
+#: ../../mod/photos.php:155 ../../mod/photos.php:1062
+#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
+#: ../../mod/photos.php:1751 ../../mod/photos.php:1763
 msgid "Contact Photos"
 msgstr "Kontaktbilder"
 
-#: ../../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
+#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:155
+#: ../../mod/photos.php:729 ../../mod/photos.php:1187
+#: ../../mod/photos.php:1210 ../../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:334
@@ -487,8 +489,8 @@ msgstr "Inviterer venner"
 
 #: ../../view/theme/diabook/theme.php:544
 #: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22
-#: ../../mod/admin.php:1004 ../../mod/admin.php:1212 ../../mod/settings.php:79
-#: ../../mod/uexport.php:48 ../../include/nav.php:167
+#: ../../mod/admin.php:1005 ../../mod/admin.php:1213 ../../mod/settings.php:84
+#: ../../include/nav.php:169
 msgid "Settings"
 msgstr "Innstillinger"
 
@@ -566,7 +568,7 @@ msgid "Set colour scheme"
 msgstr "Angi fargekart"
 
 #: ../../view/theme/clean/config.php:54 ../../include/user.php:246
-#: ../../include/text.php:1658
+#: ../../include/text.php:1676
 msgid "default"
 msgstr "standard"
 
@@ -604,210 +606,214 @@ msgstr "Angi størrelsesendringen for bilder i innlegg og kommentarer (bredde og
 msgid "Set theme width"
 msgstr "Angi temabredde"
 
-#: ../../boot.php:684
+#: ../../view/theme/vier/config.php:50
+msgid "Set style"
+msgstr "Angi stil"
+
+#: ../../boot.php:692
 msgid "Delete this item?"
 msgstr "Slett dette elementet?"
 
-#: ../../boot.php:687
+#: ../../boot.php:695
 msgid "show fewer"
 msgstr "vis færre"
 
-#: ../../boot.php:1015
+#: ../../boot.php:1023
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "Oppdatering %s mislyktes. Se feilloggene."
 
-#: ../../boot.php:1017
+#: ../../boot.php:1025
 #, php-format
 msgid "Update Error at %s"
 msgstr "Oppdateringsfeil i %s"
 
-#: ../../boot.php:1127
+#: ../../boot.php:1135
 msgid "Create a New Account"
 msgstr "Lag en ny konto"
 
-#: ../../boot.php:1128 ../../mod/register.php:278 ../../include/nav.php:108
+#: ../../boot.php:1136 ../../mod/register.php:279 ../../include/nav.php:108
 msgid "Register"
 msgstr "Registrer"
 
-#: ../../boot.php:1152 ../../include/nav.php:73
+#: ../../boot.php:1160 ../../include/nav.php:73
 msgid "Logout"
 msgstr "Logg ut"
 
-#: ../../boot.php:1153 ../../include/nav.php:91
+#: ../../boot.php:1161 ../../include/nav.php:91
 msgid "Login"
 msgstr "Logg inn"
 
-#: ../../boot.php:1155
+#: ../../boot.php:1163
 msgid "Nickname or Email address: "
 msgstr "Kallenavn eller epostadresse: "
 
-#: ../../boot.php:1156
+#: ../../boot.php:1164
 msgid "Password: "
 msgstr "Passord: "
 
-#: ../../boot.php:1157
+#: ../../boot.php:1165
 msgid "Remember me"
 msgstr "Husk meg"
 
-#: ../../boot.php:1160
+#: ../../boot.php:1168
 msgid "Or login using OpenID: "
 msgstr "Eller logg inn med OpenID:"
 
-#: ../../boot.php:1166
+#: ../../boot.php:1174
 msgid "Forgot your password?"
 msgstr "Glemt passordet?"
 
-#: ../../boot.php:1167 ../../mod/lostpass.php:84
+#: ../../boot.php:1175 ../../mod/lostpass.php:84
 msgid "Password Reset"
 msgstr "Passord tilbakestilling"
 
-#: ../../boot.php:1169
+#: ../../boot.php:1177
 msgid "Website Terms of Service"
 msgstr "Nettstedets bruksbetingelser"
 
-#: ../../boot.php:1170
+#: ../../boot.php:1178
 msgid "terms of service"
 msgstr "bruksbetingelser"
 
-#: ../../boot.php:1172
+#: ../../boot.php:1180
 msgid "Website Privacy Policy"
 msgstr "Nettstedets retningslinjer for personvern"
 
-#: ../../boot.php:1173
+#: ../../boot.php:1181
 msgid "privacy policy"
 msgstr "retningslinjer for personvern"
 
-#: ../../boot.php:1302
+#: ../../boot.php:1314
 msgid "Requested account is not available."
 msgstr "Profil utilgjengelig."
 
-#: ../../boot.php:1341 ../../mod/profile.php:21
+#: ../../boot.php:1353 ../../mod/profile.php:21
 msgid "Requested profile is not available."
 msgstr "Profil utilgjengelig."
 
-#: ../../boot.php:1381 ../../boot.php:1485
+#: ../../boot.php:1393 ../../boot.php:1497
 msgid "Edit profile"
 msgstr "Rediger profil"
 
-#: ../../boot.php:1433 ../../mod/suggest.php:88 ../../mod/match.php:58
+#: ../../boot.php:1445 ../../mod/suggest.php:88 ../../mod/match.php:58
 #: ../../include/contact_widgets.php:9
 msgid "Connect"
 msgstr "Forbindelse"
 
-#: ../../boot.php:1447
+#: ../../boot.php:1459
 msgid "Message"
 msgstr "Melding"
 
-#: ../../boot.php:1455 ../../include/nav.php:169
+#: ../../boot.php:1467 ../../include/nav.php:171
 msgid "Profiles"
 msgstr "Profiler"
 
-#: ../../boot.php:1455
+#: ../../boot.php:1467
 msgid "Manage/edit profiles"
 msgstr "Behandle/endre profiler"
 
-#: ../../boot.php:1461 ../../boot.php:1487 ../../mod/profiles.php:726
+#: ../../boot.php:1473 ../../boot.php:1499 ../../mod/profiles.php:730
 msgid "Change profile photo"
 msgstr "Endre profilbilde"
 
-#: ../../boot.php:1462 ../../mod/profiles.php:727
+#: ../../boot.php:1474 ../../mod/profiles.php:731
 msgid "Create New Profile"
 msgstr "Lag ny profil"
 
-#: ../../boot.php:1472 ../../mod/profiles.php:738
+#: ../../boot.php:1484 ../../mod/profiles.php:742
 msgid "Profile Image"
 msgstr "Profilbilde"
 
-#: ../../boot.php:1475 ../../mod/profiles.php:740
+#: ../../boot.php:1487 ../../mod/profiles.php:744
 msgid "visible to everybody"
 msgstr "synlig for alle"
 
-#: ../../boot.php:1476 ../../mod/profiles.php:741
+#: ../../boot.php:1488 ../../mod/profiles.php:745
 msgid "Edit visibility"
 msgstr "Endre synlighet"
 
-#: ../../boot.php:1501 ../../mod/directory.php:134 ../../mod/events.php:471
-#: ../../include/event.php:40 ../../include/bb2diaspora.php:415
+#: ../../boot.php:1513 ../../mod/directory.php:134 ../../mod/events.php:471
+#: ../../include/event.php:40 ../../include/bb2diaspora.php:155
 msgid "Location:"
 msgstr "Plassering:"
 
-#: ../../boot.php:1503 ../../mod/directory.php:136
+#: ../../boot.php:1515 ../../mod/directory.php:136
 #: ../../include/profile_advanced.php:17
 msgid "Gender:"
 msgstr "Kjønn:"
 
-#: ../../boot.php:1506 ../../mod/directory.php:138
+#: ../../boot.php:1518 ../../mod/directory.php:138
 #: ../../include/profile_advanced.php:37
 msgid "Status:"
 msgstr "Status:"
 
-#: ../../boot.php:1508 ../../mod/directory.php:140
+#: ../../boot.php:1520 ../../mod/directory.php:140
 #: ../../include/profile_advanced.php:48
 msgid "Homepage:"
 msgstr "Hjemmeside:"
 
-#: ../../boot.php:1584 ../../boot.php:1670
+#: ../../boot.php:1596 ../../boot.php:1682
 msgid "g A l F d"
 msgstr "g A l F d"
 
-#: ../../boot.php:1585 ../../boot.php:1671
+#: ../../boot.php:1597 ../../boot.php:1683
 msgid "F d"
 msgstr "F d"
 
-#: ../../boot.php:1630 ../../boot.php:1711
+#: ../../boot.php:1642 ../../boot.php:1723
 msgid "[today]"
 msgstr "[idag]"
 
-#: ../../boot.php:1642
+#: ../../boot.php:1654
 msgid "Birthday Reminders"
 msgstr "Fødselsdager"
 
-#: ../../boot.php:1643
+#: ../../boot.php:1655
 msgid "Birthdays this week:"
 msgstr "Fødselsdager denne uken:"
 
-#: ../../boot.php:1704
+#: ../../boot.php:1716
 msgid "[No description]"
 msgstr "[Ingen beskrivelse]"
 
-#: ../../boot.php:1722
+#: ../../boot.php:1734
 msgid "Event Reminders"
 msgstr "Påminnelser om hendelser"
 
-#: ../../boot.php:1723
+#: ../../boot.php:1735
 msgid "Events this week:"
 msgstr "Hendelser denne uken:"
 
-#: ../../boot.php:1960 ../../include/nav.php:76
+#: ../../boot.php:1972 ../../include/nav.php:76
 msgid "Status"
 msgstr "Status"
 
-#: ../../boot.php:1963
+#: ../../boot.php:1975
 msgid "Status Messages and Posts"
 msgstr "Status meldinger og innlegg"
 
-#: ../../boot.php:1970
+#: ../../boot.php:1982
 msgid "Profile Details"
 msgstr "Profildetaljer"
 
-#: ../../boot.php:1977 ../../mod/photos.php:51
+#: ../../boot.php:1989 ../../mod/photos.php:52
 msgid "Photo Albums"
 msgstr "Fotoalbum"
 
-#: ../../boot.php:1981 ../../boot.php:1984
+#: ../../boot.php:1993 ../../boot.php:1996
 msgid "Videos"
 msgstr "Videoer"
 
-#: ../../boot.php:1994
+#: ../../boot.php:2006
 msgid "Events and Calendar"
 msgstr "Hendelser og kalender"
 
-#: ../../boot.php:1998 ../../mod/notes.php:44
+#: ../../boot.php:2010 ../../mod/notes.php:44
 msgid "Personal Notes"
 msgstr "Personlige notater"
 
-#: ../../boot.php:2001
+#: ../../boot.php:2013
 msgid "Only You Can See This"
 msgstr "Bare du kan se dette"
 
@@ -827,15 +833,15 @@ msgstr "Angi din stemning og fortell dine venner"
 #: ../../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/viewcontacts.php:17 ../../mod/photos.php:918
 #: ../../mod/videos.php:115
 msgid "Public access denied."
 msgstr "Offentlig tilgang ikke tillatt."
 
-#: ../../mod/display.php:51 ../../mod/display.php:246 ../../mod/decrypt.php:15
-#: ../../mod/admin.php:163 ../../mod/admin.php:952 ../../mod/admin.php:1152
+#: ../../mod/display.php:51 ../../mod/display.php:270 ../../mod/decrypt.php:15
+#: ../../mod/admin.php:163 ../../mod/admin.php:953 ../../mod/admin.php:1153
 #: ../../mod/notice.php:15 ../../mod/viewsrc.php:15
-#: ../../include/items.php:4023
+#: ../../include/items.php:4177
 msgid "Item not found."
 msgstr "Enheten ble ikke funnet."
 
@@ -843,7 +849,7 @@ msgstr "Enheten ble ikke funnet."
 msgid "Access to this profile has been restricted."
 msgstr "Tilgang til denne profilen er blitt begrenset."
 
-#: ../../mod/display.php:239
+#: ../../mod/display.php:263
 msgid "Item has been removed."
 msgstr "Elementet har blitt slettet."
 
@@ -888,126 +894,126 @@ msgstr "Ingen installerte plugins/tillegg/apper"
 msgid "%1$s welcomes %2$s"
 msgstr "%1$s hilser %2$s"
 
-#: ../../mod/register.php:91 ../../mod/admin.php:734 ../../mod/regmod.php:54
+#: ../../mod/register.php:92 ../../mod/admin.php:735 ../../mod/regmod.php:54
 #, php-format
 msgid "Registration details for %s"
 msgstr "Registeringsdetaljer for %s"
 
-#: ../../mod/register.php:99
+#: ../../mod/register.php:100
 msgid ""
 "Registration successful. Please check your email for further instructions."
 msgstr "Vellykket registrering. Vennligst sjekk e-posten din for videre instruksjoner."
 
-#: ../../mod/register.php:103
+#: ../../mod/register.php:104
 msgid "Failed to send email message. Here is the message that failed."
 msgstr "Mislyktes med å sende e-postmelding. Her er meldingen som mislyktes."
 
-#: ../../mod/register.php:108
+#: ../../mod/register.php:109
 msgid "Your registration can not be processed."
 msgstr "Din registrering kan ikke behandles."
 
-#: ../../mod/register.php:148
+#: ../../mod/register.php:149
 #, php-format
 msgid "Registration request at %s"
 msgstr "Henvendelse om registrering ved %s"
 
-#: ../../mod/register.php:157
+#: ../../mod/register.php:158
 msgid "Your registration is pending approval by the site owner."
 msgstr "Din registrering venter på godkjenning fra eier av stedet."
 
-#: ../../mod/register.php:195 ../../mod/uimport.php:50
+#: ../../mod/register.php:196 ../../mod/uimport.php:50
 msgid ""
 "This site has exceeded the number of allowed daily account registrations. "
 "Please try again tomorrow."
 msgstr "Dette nettstedet har overskredet antallet tillate daglige kontoregistreringer. Vennligst prøv igjen imorgen."
 
-#: ../../mod/register.php:223
+#: ../../mod/register.php:224
 msgid ""
 "You may (optionally) fill in this form via OpenID by supplying your OpenID "
 "and clicking 'Register'."
 msgstr "Du kan (valgfritt) fylle ut dette skjemaet via OpenID ved å oppgi din OpenID og klikke \"Registrer\"."
 
-#: ../../mod/register.php:224
+#: ../../mod/register.php:225
 msgid ""
 "If you are not familiar with OpenID, please leave that field blank and fill "
 "in the rest of the items."
 msgstr "Hvis du ikke er kjent med OpenID, vennligst la feltet stå tomt, og fyll ut de andre feltene."
 
-#: ../../mod/register.php:225
+#: ../../mod/register.php:226
 msgid "Your OpenID (optional): "
 msgstr "Din OpenID (valgfritt):"
 
-#: ../../mod/register.php:239
+#: ../../mod/register.php:240
 msgid "Include your profile in member directory?"
 msgstr "Legg til profilen din i medlemskatalogen?"
 
-#: ../../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
+#: ../../mod/register.php:243 ../../mod/api.php:105 ../../mod/suggest.php:29
+#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:326
+#: ../../mod/settings.php:998 ../../mod/settings.php:1004
+#: ../../mod/settings.php:1012 ../../mod/settings.php:1016
+#: ../../mod/settings.php:1021 ../../mod/settings.php:1027
+#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
+#: ../../mod/settings.php:1069 ../../mod/settings.php:1070
+#: ../../mod/settings.php:1071 ../../mod/settings.php:1072
+#: ../../mod/settings.php:1073 ../../mod/profiles.php:614
+#: ../../mod/message.php:209 ../../include/items.php:4218
 msgid "Yes"
 msgstr "Ja"
 
-#: ../../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
+#: ../../mod/register.php:244 ../../mod/api.php:106
+#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:998
+#: ../../mod/settings.php:1004 ../../mod/settings.php:1012
+#: ../../mod/settings.php:1016 ../../mod/settings.php:1021
+#: ../../mod/settings.php:1027 ../../mod/settings.php:1033
+#: ../../mod/settings.php:1039 ../../mod/settings.php:1069
+#: ../../mod/settings.php:1070 ../../mod/settings.php:1071
+#: ../../mod/settings.php:1072 ../../mod/settings.php:1073
+#: ../../mod/profiles.php:615
 msgid "No"
 msgstr "Nei"
 
-#: ../../mod/register.php:260
+#: ../../mod/register.php:261
 msgid "Membership on this site is by invitation only."
 msgstr "Medlemskap ved dette nettstedet skjer bare på invitasjon."
 
-#: ../../mod/register.php:261
+#: ../../mod/register.php:262
 msgid "Your invitation ID: "
 msgstr "Din invitasjons-ID:"
 
-#: ../../mod/register.php:264 ../../mod/admin.php:572
+#: ../../mod/register.php:265 ../../mod/admin.php:573
 msgid "Registration"
 msgstr "Registrering"
 
-#: ../../mod/register.php:272
+#: ../../mod/register.php:273
 msgid "Your Full Name (e.g. Joe Smith): "
 msgstr "Ditt fulle navn (f.eks. Ola Nordmann):"
 
-#: ../../mod/register.php:273
+#: ../../mod/register.php:274
 msgid "Your Email Address: "
 msgstr "Din e-postadresse:"
 
-#: ../../mod/register.php:274
+#: ../../mod/register.php:275
 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 "Velg et kallenavn til profilen. Dette må begynne med en bokstav. Din profiladresse på dette stedet vil bli \"<strong>kallenavn@$sitename</strong>\"."
 
-#: ../../mod/register.php:275
+#: ../../mod/register.php:276
 msgid "Choose a nickname: "
 msgstr "Velg et kallenavn:"
 
-#: ../../mod/register.php:284 ../../mod/uimport.php:64
+#: ../../mod/register.php:285 ../../mod/uimport.php:64
 msgid "Import"
 msgstr "Importer"
 
-#: ../../mod/register.php:285
+#: ../../mod/register.php:286
 msgid "Import your profile to this friendica instance"
 msgstr "Importer din profil til denne Friendica-instansen."
 
 #: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18
 #: ../../mod/profiles.php:133 ../../mod/profiles.php:160
-#: ../../mod/profiles.php:583
+#: ../../mod/profiles.php:587
 msgid "Profile not found."
 msgstr "Fant ikke profilen."
 
@@ -1052,7 +1058,7 @@ msgid "Unable to set contact photo."
 msgstr "Fikk ikke satt kontaktbilde."
 
 #: ../../mod/dfrn_confirm.php:477 ../../include/conversation.php:172
-#: ../../include/diaspora.php:621
+#: ../../include/diaspora.php:620
 #, php-format
 msgid "%1$s is now friends with %2$s"
 msgstr "%1$s er nå venner med %2$s"
@@ -1217,7 +1223,7 @@ msgstr "Ingen mottaker."
 #: ../../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
+#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
 msgid "Please enter a link URL:"
 msgstr "Vennligst skriv inn en lenke URL:"
 
@@ -1249,13 +1255,13 @@ msgstr "Din melding:"
 
 #: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
 #: ../../mod/message.php:332 ../../mod/message.php:562
-#: ../../include/conversation.php:1081
+#: ../../include/conversation.php:1084
 msgid "Upload photo"
 msgstr "Last opp bilde"
 
 #: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114
 #: ../../mod/message.php:333 ../../mod/message.php:563
-#: ../../include/conversation.php:1085
+#: ../../include/conversation.php:1088
 msgid "Insert web link"
 msgstr "Sett inn web-adresse"
 
@@ -1454,12 +1460,12 @@ msgid "Do you really want to delete this suggestion?"
 msgstr "Vil du virkelig slette dette forslaget?"
 
 #: ../../mod/suggest.php:32 ../../mod/editpost.php:148
-#: ../../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/dfrn_request.php:848 ../../mod/contacts.php:329
+#: ../../mod/settings.php:609 ../../mod/settings.php:635
+#: ../../mod/message.php:212 ../../mod/photos.php:203 ../../mod/photos.php:292
 #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81
-#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1119
-#: ../../include/items.php:4067
+#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1122
+#: ../../include/items.php:4221
 msgid "Cancel"
 msgstr "Avbryt"
 
@@ -1473,72 +1479,72 @@ msgstr "Ingen forslag tilgjengelig. Hvis dette er et nytt nettsted, vennligst pr
 msgid "Ignore/Hide"
 msgstr "Ignorér/Skjul"
 
-#: ../../mod/network.php:179
+#: ../../mod/network.php:136
 msgid "Search Results For:"
 msgstr "Søkeresultater for:"
 
-#: ../../mod/network.php:222 ../../mod/_search.php:21 ../../mod/search.php:21
+#: ../../mod/network.php:179 ../../mod/_search.php:21 ../../mod/search.php:21
 msgid "Remove term"
 msgstr "Fjern uttrykk"
 
-#: ../../mod/network.php:231 ../../mod/_search.php:30 ../../mod/search.php:30
-#: ../../include/features.php:41
+#: ../../mod/network.php:188 ../../mod/_search.php:30 ../../mod/search.php:30
+#: ../../include/features.php:42
 msgid "Saved Searches"
 msgstr "Lagrede søk"
 
-#: ../../mod/network.php:232 ../../include/group.php:275
+#: ../../mod/network.php:189 ../../include/group.php:275
 msgid "add"
 msgstr "legg til"
 
-#: ../../mod/network.php:394
+#: ../../mod/network.php:350
 msgid "Commented Order"
 msgstr "Etter kommentarer"
 
-#: ../../mod/network.php:397
+#: ../../mod/network.php:353
 msgid "Sort by Comment Date"
 msgstr "Sorter etter kommentardato"
 
-#: ../../mod/network.php:400
+#: ../../mod/network.php:356
 msgid "Posted Order"
 msgstr "Etter innlegg"
 
-#: ../../mod/network.php:403
+#: ../../mod/network.php:359
 msgid "Sort by Post Date"
 msgstr "Sorter etter innleggsdato"
 
-#: ../../mod/network.php:441 ../../mod/notifications.php:88
+#: ../../mod/network.php:365 ../../mod/notifications.php:88
 msgid "Personal"
 msgstr "Personlig"
 
-#: ../../mod/network.php:444
+#: ../../mod/network.php:368
 msgid "Posts that mention or involve you"
 msgstr "Innlegg som nevner eller involverer deg"
 
-#: ../../mod/network.php:450
+#: ../../mod/network.php:374
 msgid "New"
 msgstr "Ny"
 
-#: ../../mod/network.php:453
+#: ../../mod/network.php:377
 msgid "Activity Stream - by date"
 msgstr "Aktivitetsstrøm - etter dato"
 
-#: ../../mod/network.php:459
+#: ../../mod/network.php:383
 msgid "Shared Links"
 msgstr "Delte lenker"
 
-#: ../../mod/network.php:462
+#: ../../mod/network.php:386
 msgid "Interesting Links"
 msgstr "Interessante lenker"
 
-#: ../../mod/network.php:468
+#: ../../mod/network.php:392
 msgid "Starred"
 msgstr "Med stjerne"
 
-#: ../../mod/network.php:471
+#: ../../mod/network.php:395
 msgid "Favourite Posts"
 msgstr "Favorittinnlegg"
 
-#: ../../mod/network.php:539
+#: ../../mod/network.php:457
 #, php-format
 msgid "Warning: This group contains %s member from an insecure network."
 msgid_plural ""
@@ -1546,31 +1552,31 @@ msgid_plural ""
 msgstr[0] "Advarsel: denne gruppen inneholder %s medlem fra et usikkert nettverk."
 msgstr[1] "Advarsel: denne gruppe inneholder %s medlemmer fra et usikkert nettverk."
 
-#: ../../mod/network.php:542
+#: ../../mod/network.php:460
 msgid "Private messages to this group are at risk of public disclosure."
 msgstr "Private meldinger til denne gruppen risikerer å bli offentliggjort."
 
-#: ../../mod/network.php:588 ../../mod/content.php:119
+#: ../../mod/network.php:514 ../../mod/content.php:119
 msgid "No such group"
 msgstr "Gruppen finnes ikke"
 
-#: ../../mod/network.php:599 ../../mod/content.php:130
+#: ../../mod/network.php:531 ../../mod/content.php:130
 msgid "Group is empty"
 msgstr "Gruppen er tom"
 
-#: ../../mod/network.php:605 ../../mod/content.php:134
+#: ../../mod/network.php:538 ../../mod/content.php:134
 msgid "Group: "
 msgstr "Gruppe:"
 
-#: ../../mod/network.php:617
+#: ../../mod/network.php:548
 msgid "Contact: "
 msgstr "Kontakt:"
 
-#: ../../mod/network.php:619
+#: ../../mod/network.php:550
 msgid "Private messages to this person are at risk of public disclosure."
 msgstr "Private meldinger til denne personen risikerer å bli offentliggjort."
 
-#: ../../mod/network.php:624
+#: ../../mod/network.php:555
 msgid "Invalid contact."
 msgstr "Ugyldig kontakt."
 
@@ -1877,19 +1883,20 @@ msgstr "VIKTIG: Du må [manuelt] sette opp en planlagt oppgave for oppdatering."
 msgid "Theme settings updated."
 msgstr "Temainnstillinger oppdatert."
 
-#: ../../mod/admin.php:101 ../../mod/admin.php:570
+#: ../../mod/admin.php:101 ../../mod/admin.php:571
 msgid "Site"
 msgstr "Nettsted"
 
-#: ../../mod/admin.php:102 ../../mod/admin.php:898 ../../mod/admin.php:913
+#: ../../mod/admin.php:102 ../../mod/admin.php:899 ../../mod/admin.php:914
 msgid "Users"
 msgstr "Brukere"
 
-#: ../../mod/admin.php:103 ../../mod/admin.php:1002 ../../mod/admin.php:1044
+#: ../../mod/admin.php:103 ../../mod/admin.php:1003 ../../mod/admin.php:1045
+#: ../../mod/settings.php:56
 msgid "Plugins"
 msgstr "Tillegg"
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:1210 ../../mod/admin.php:1244
+#: ../../mod/admin.php:104 ../../mod/admin.php:1211 ../../mod/admin.php:1245
 msgid "Themes"
 msgstr "Tema"
 
@@ -1897,11 +1904,11 @@ msgstr "Tema"
 msgid "DB updates"
 msgstr "Databaseoppdateringer"
 
-#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1331
+#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1332
 msgid "Logs"
 msgstr "Logger"
 
-#: ../../mod/admin.php:125 ../../include/nav.php:178
+#: ../../mod/admin.php:125 ../../include/nav.php:180
 msgid "Admin"
 msgstr "Administrator"
 
@@ -1913,19 +1920,19 @@ msgstr "Utvidelse - egenskaper"
 msgid "User registrations waiting for confirmation"
 msgstr "Brukerregistreringer venter på bekreftelse"
 
-#: ../../mod/admin.php:187 ../../mod/admin.php:852
+#: ../../mod/admin.php:187 ../../mod/admin.php:853
 msgid "Normal Account"
 msgstr "Vanlig konto"
 
-#: ../../mod/admin.php:188 ../../mod/admin.php:853
+#: ../../mod/admin.php:188 ../../mod/admin.php:854
 msgid "Soapbox Account"
 msgstr "Talerstol-konto"
 
-#: ../../mod/admin.php:189 ../../mod/admin.php:854
+#: ../../mod/admin.php:189 ../../mod/admin.php:855
 msgid "Community/Celebrity Account"
 msgstr "Gruppe-/kjendiskonto"
 
-#: ../../mod/admin.php:190 ../../mod/admin.php:855
+#: ../../mod/admin.php:190 ../../mod/admin.php:856
 msgid "Automatic Friend Account"
 msgstr "Automatisk vennekonto"
 
@@ -1941,9 +1948,9 @@ msgstr "Privat forum"
 msgid "Message queues"
 msgstr "Meldingskøer"
 
-#: ../../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
+#: ../../mod/admin.php:216 ../../mod/admin.php:570 ../../mod/admin.php:898
+#: ../../mod/admin.php:1002 ../../mod/admin.php:1044 ../../mod/admin.php:1210
+#: ../../mod/admin.php:1244 ../../mod/admin.php:1331
 msgid "Administration"
 msgstr "Administrasjon"
 
@@ -1975,316 +1982,320 @@ msgstr "Kan ikke tolke base URL. Må ha minst <scheme>://<domain>"
 msgid "Site settings updated."
 msgstr "Nettstedets innstillinger er oppdatert."
 
-#: ../../mod/admin.php:512 ../../mod/settings.php:810
+#: ../../mod/admin.php:512 ../../mod/settings.php:822
 msgid "No special theme for mobile devices"
 msgstr "Ikke eget tema for mobile enheter"
 
-#: ../../mod/admin.php:529 ../../mod/contacts.php:402
+#: ../../mod/admin.php:529 ../../mod/contacts.php:408
 msgid "Never"
 msgstr "Aldri"
 
-#: ../../mod/admin.php:530 ../../include/contact_selectors.php:56
+#: ../../mod/admin.php:530
+msgid "At post arrival"
+msgstr "Ved mottak av innlegg"
+
+#: ../../mod/admin.php:531 ../../include/contact_selectors.php:56
 msgid "Frequently"
 msgstr "Ofte"
 
-#: ../../mod/admin.php:531 ../../include/contact_selectors.php:57
+#: ../../mod/admin.php:532 ../../include/contact_selectors.php:57
 msgid "Hourly"
 msgstr "Hver time"
 
-#: ../../mod/admin.php:532 ../../include/contact_selectors.php:58
+#: ../../mod/admin.php:533 ../../include/contact_selectors.php:58
 msgid "Twice daily"
 msgstr "To ganger daglig"
 
-#: ../../mod/admin.php:533 ../../include/contact_selectors.php:59
+#: ../../mod/admin.php:534 ../../include/contact_selectors.php:59
 msgid "Daily"
 msgstr "Daglig"
 
-#: ../../mod/admin.php:538
+#: ../../mod/admin.php:539
 msgid "Multi user instance"
 msgstr "Flerbrukerinstans"
 
-#: ../../mod/admin.php:556
+#: ../../mod/admin.php:557
 msgid "Closed"
 msgstr "Stengt"
 
-#: ../../mod/admin.php:557
+#: ../../mod/admin.php:558
 msgid "Requires approval"
 msgstr "Krever godkjenning"
 
-#: ../../mod/admin.php:558
+#: ../../mod/admin.php:559
 msgid "Open"
 msgstr "Åpen"
 
-#: ../../mod/admin.php:562
+#: ../../mod/admin.php:563
 msgid "No SSL policy, links will track page SSL state"
 msgstr "Ingen SSL-retningslinjer, lenker vil spore sidens SSL-tilstand"
 
-#: ../../mod/admin.php:563
+#: ../../mod/admin.php:564
 msgid "Force all links to use SSL"
 msgstr "Tving alle lenker til å bruke SSL"
 
-#: ../../mod/admin.php:564
+#: ../../mod/admin.php:565
 msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr "Selvsignert sertifikat, bruk SSL bare til lokale lenker (ikke anbefalt)"
 
-#: ../../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
+#: ../../mod/admin.php:572 ../../mod/admin.php:1046 ../../mod/admin.php:1246
+#: ../../mod/admin.php:1333 ../../mod/settings.php:608
+#: ../../mod/settings.php:718 ../../mod/settings.php:792
+#: ../../mod/settings.php:871 ../../mod/settings.php:1101
 msgid "Save Settings"
 msgstr "Lagre innstillinger"
 
-#: ../../mod/admin.php:573
+#: ../../mod/admin.php:574
 msgid "File upload"
 msgstr "Last opp fil"
 
-#: ../../mod/admin.php:574
+#: ../../mod/admin.php:575
 msgid "Policies"
 msgstr "Retningslinjer"
 
-#: ../../mod/admin.php:575
+#: ../../mod/admin.php:576
 msgid "Advanced"
 msgstr "Avansert"
 
-#: ../../mod/admin.php:576
+#: ../../mod/admin.php:577
 msgid "Performance"
 msgstr "Ytelse"
 
-#: ../../mod/admin.php:577
+#: ../../mod/admin.php:578
 msgid ""
 "Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr "Omplasser - ADVARSEL: avansert funksjon. Kan gjøre denne tjeneren utilgjengelig."
 
-#: ../../mod/admin.php:580
+#: ../../mod/admin.php:581
 msgid "Site name"
 msgstr "Nettstedets navn"
 
-#: ../../mod/admin.php:581
+#: ../../mod/admin.php:582
 msgid "Banner/Logo"
 msgstr "Banner/logo"
 
-#: ../../mod/admin.php:582
+#: ../../mod/admin.php:583
 msgid "Additional Info"
 msgstr "Ekstra informasjon"
 
-#: ../../mod/admin.php:582
+#: ../../mod/admin.php:583
 msgid ""
 "For public servers: you can add additional information here that will be "
 "listed at dir.friendica.com/siteinfo."
 msgstr "For offentlige tjenere: du kan legge til ekstra informasjon her som vil bli vist på dir.friendica.com/siteinfo."
 
-#: ../../mod/admin.php:583
+#: ../../mod/admin.php:584
 msgid "System language"
 msgstr "Systemspråk"
 
-#: ../../mod/admin.php:584
+#: ../../mod/admin.php:585
 msgid "System theme"
 msgstr "Systemtema"
 
-#: ../../mod/admin.php:584
+#: ../../mod/admin.php:585
 msgid ""
 "Default system theme - may be over-ridden by user profiles - <a href='#' "
 "id='cnftheme'>change theme settings</a>"
 msgstr "Standard tema for systemet - kan overstyres av brukerprofiler - <a href='#' id='cnftheme'>endre temainnstillinger</a>"
 
-#: ../../mod/admin.php:585
+#: ../../mod/admin.php:586
 msgid "Mobile system theme"
 msgstr "Mobilt tema til systemet"
 
-#: ../../mod/admin.php:585
+#: ../../mod/admin.php:586
 msgid "Theme for mobile devices"
 msgstr "Tema for mobile enheter"
 
-#: ../../mod/admin.php:586
+#: ../../mod/admin.php:587
 msgid "SSL link policy"
 msgstr "Retningslinjer for SSL og lenker"
 
-#: ../../mod/admin.php:586
+#: ../../mod/admin.php:587
 msgid "Determines whether generated links should be forced to use SSL"
 msgstr "Avgjør om genererte lenker skal tvinges til å bruke SSL"
 
-#: ../../mod/admin.php:587
+#: ../../mod/admin.php:588
 msgid "Old style 'Share'"
 msgstr "\"Deling\" på gamlemåten"
 
-#: ../../mod/admin.php:587
+#: ../../mod/admin.php:588
 msgid "Deactivates the bbcode element 'share' for repeating items."
 msgstr "Skrur av bbcode \"dele\" for gjentatte elementer."
 
-#: ../../mod/admin.php:588
+#: ../../mod/admin.php:589
 msgid "Hide help entry from navigation menu"
 msgstr "Skjul punktet om hjelp fra navigasjonsmenyen"
 
-#: ../../mod/admin.php:588
+#: ../../mod/admin.php:589
 msgid ""
 "Hides the menu entry for the Help pages from the navigation menu. You can "
 "still access it calling /help directly."
 msgstr "Skjuler menypunktet for Hjelp-sidene fra navigasjonsmenyen. Du kan fremdeles få tilgang ved å bruke /help direkte."
 
-#: ../../mod/admin.php:589
+#: ../../mod/admin.php:590
 msgid "Single user instance"
 msgstr "Enkeltbrukerinstans"
 
-#: ../../mod/admin.php:589
+#: ../../mod/admin.php:590
 msgid "Make this instance multi-user or single-user for the named user"
 msgstr "Gjør denne instansen til flerbruker eller enkeltbruker for den navngitte brukeren"
 
-#: ../../mod/admin.php:590
+#: ../../mod/admin.php:591
 msgid "Maximum image size"
 msgstr "Maksimum bildestørrelse"
 
-#: ../../mod/admin.php:590
+#: ../../mod/admin.php:591
 msgid ""
 "Maximum size in bytes of uploaded images. Default is 0, which means no "
 "limits."
 msgstr "Maksimal størrelse i bytes for opplastede bilder. Standard er 0, som betyr ingen størrelsesgrense."
 
-#: ../../mod/admin.php:591
+#: ../../mod/admin.php:592
 msgid "Maximum image length"
 msgstr "Maksimal bildelenge"
 
-#: ../../mod/admin.php:591
+#: ../../mod/admin.php:592
 msgid ""
 "Maximum length in pixels of the longest side of uploaded images. Default is "
 "-1, which means no limits."
 msgstr "Maksimal lengde i pixler for den lengste siden til opplastede bilder. Standard er -1, some betyr ingen grense."
 
-#: ../../mod/admin.php:592
+#: ../../mod/admin.php:593
 msgid "JPEG image quality"
 msgstr "JPEG-bildekvalitet"
 
-#: ../../mod/admin.php:592
+#: ../../mod/admin.php:593
 msgid ""
 "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
 "100, which is full quality."
 msgstr "Opplastede JPEG-er vil bli lagret med disse kvalitetsinnstillingene [0-100]. Standard er 100, som er høyeste kvalitet."
 
-#: ../../mod/admin.php:594
+#: ../../mod/admin.php:595
 msgid "Register policy"
 msgstr "Registrer retningslinjer"
 
-#: ../../mod/admin.php:595
+#: ../../mod/admin.php:596
 msgid "Maximum Daily Registrations"
 msgstr "Maksimalt antall daglige registreringer"
 
-#: ../../mod/admin.php:595
+#: ../../mod/admin.php:596
 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 "Hvis registrering er tillat ovenfor, så vil dette angi maksimalt antall nye brukerregistreringer som aksepteres per dag. Hvis registrering er satt til stengt, så vil ikke denne innstillingen ha noen effekt."
 
-#: ../../mod/admin.php:596
+#: ../../mod/admin.php:597
 msgid "Register text"
 msgstr "Registrer tekst"
 
-#: ../../mod/admin.php:596
+#: ../../mod/admin.php:597
 msgid "Will be displayed prominently on the registration page."
 msgstr "Vil bli vist på en fremtredende måte på registreringssiden."
 
-#: ../../mod/admin.php:597
+#: ../../mod/admin.php:598
 msgid "Accounts abandoned after x days"
 msgstr "Kontoer forlatt etter x dager"
 
-#: ../../mod/admin.php:597
+#: ../../mod/admin.php:598
 msgid ""
 "Will not waste system resources polling external sites for abandonded "
 "accounts. Enter 0 for no time limit."
 msgstr "Vil ikke kaste bort systemressurser på å spørre eksterne nettsteder om forlatte kontoer. Skriv 0 for ingen tidsgrense."
 
-#: ../../mod/admin.php:598
+#: ../../mod/admin.php:599
 msgid "Allowed friend domains"
 msgstr "Tillate vennedomener"
 
-#: ../../mod/admin.php:598
+#: ../../mod/admin.php:599
 msgid ""
 "Comma separated list of domains which are allowed to establish friendships "
 "with this site. Wildcards are accepted. Empty to allow any domains"
 msgstr "Kommaseparert liste med domener som har lov til å etablere vennskap med dette nettstedet.\nJokertegn aksepteres. Tom for å tillate alle domener."
 
-#: ../../mod/admin.php:599
+#: ../../mod/admin.php:600
 msgid "Allowed email domains"
 msgstr "Tillate e-postdomener"
 
-#: ../../mod/admin.php:599
+#: ../../mod/admin.php:600
 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 "Kommaseparert liste med domener som er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er tillatt. Tom for å tillate alle domener."
 
-#: ../../mod/admin.php:600
+#: ../../mod/admin.php:601
 msgid "Block public"
 msgstr "Utesteng publikum"
 
-#: ../../mod/admin.php:600
+#: ../../mod/admin.php:601
 msgid ""
 "Check to block public access to all otherwise public personal pages on this "
 "site unless you are currently logged in."
 msgstr "Kryss av for å blokkere offentlig tilgang til sider som ellers ville vært offentlige personlige sider med mindre du er logget inn."
 
-#: ../../mod/admin.php:601
+#: ../../mod/admin.php:602
 msgid "Force publish"
 msgstr "Tving publisering"
 
-#: ../../mod/admin.php:601
+#: ../../mod/admin.php:602
 msgid ""
 "Check to force all profiles on this site to be listed in the site directory."
 msgstr "Sett hake for å tvinge alle profiler på dette nettstedet til å vises i nettstedskatalogen."
 
-#: ../../mod/admin.php:602
+#: ../../mod/admin.php:603
 msgid "Global directory update URL"
 msgstr "URL for oppdatering av Global-katalog"
 
-#: ../../mod/admin.php:602
+#: ../../mod/admin.php:603
 msgid ""
 "URL to update the global directory. If this is not set, the global directory"
 " is completely unavailable to the application."
 msgstr "URL for å oppdatere den globale katalogen. Hvis denne ikke er angitt, så vil den globale katalogen være helt utilgjengelige for programmet."
 
-#: ../../mod/admin.php:603
+#: ../../mod/admin.php:604
 msgid "Allow threaded items"
 msgstr "Tillat en tråd av elementer "
 
-#: ../../mod/admin.php:603
+#: ../../mod/admin.php:604
 msgid "Allow infinite level threading for items on this site."
 msgstr "Tillat ubegrenset antall nivåer i en tråd for elementer på dette nettstedet."
 
-#: ../../mod/admin.php:604
+#: ../../mod/admin.php:605
 msgid "Private posts by default for new users"
 msgstr "Private meldinger som standard for nye brukere"
 
-#: ../../mod/admin.php:604
+#: ../../mod/admin.php:605
 msgid ""
 "Set default post permissions for all new members to the default privacy "
 "group rather than public."
 msgstr "Sett standard postetillatelser for alle nye medlemmer til standard personverngruppe i stedet for offentlig."
 
-#: ../../mod/admin.php:605
+#: ../../mod/admin.php:606
 msgid "Don't include post content in email notifications"
 msgstr "Ikke inkluder innholdet i en melding i epostvarsler"
 
-#: ../../mod/admin.php:605
+#: ../../mod/admin.php:606
 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 "Ikke inkluder innholdet i en melding/kommentar/privat melding/osv. i epostvarsler som sendes ut fra dette nettstedet, som et personverntiltak."
 
-#: ../../mod/admin.php:606
+#: ../../mod/admin.php:607
 msgid "Disallow public access to addons listed in the apps menu."
 msgstr "Ikke tillat offentlig tilgang til tillegg som listes opp i app-menyen."
 
-#: ../../mod/admin.php:606
+#: ../../mod/admin.php:607
 msgid ""
 "Checking this box will restrict addons listed in the apps menu to members "
 "only."
 msgstr "Kryss i denne boksen vil begrense tillegg opplistet i app-menyen til bare medlemmer."
 
-#: ../../mod/admin.php:607
+#: ../../mod/admin.php:608
 msgid "Don't embed private images in posts"
 msgstr "Ikke innebygg private bilder i innlegg"
 
-#: ../../mod/admin.php:607
+#: ../../mod/admin.php:608
 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 "
@@ -2292,501 +2303,501 @@ msgid ""
 "while."
 msgstr "Ikke bytt ut lokalt lagrede private bilder i innlegg med innebygd kopi av bildet. Dette betyr at kontakter som mottar innlegg med private bilder må autentisere og laste hvert bilde, noe som kan ta en stund."
 
-#: ../../mod/admin.php:608
+#: ../../mod/admin.php:609
 msgid "Allow Users to set remote_self"
 msgstr "Tillat brukere å sette remote_self"
 
-#: ../../mod/admin.php:608
+#: ../../mod/admin.php:609
 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 "Ved å sette hake her får hver bruker lov å markere hver kontakt som en remote_self i dialogen for kontaktreparasjon. Å sette denne haken på en kontakt medfører speiling av hvert innlegg fra denne kontakten i brukerens strøm. "
 
-#: ../../mod/admin.php:609
+#: ../../mod/admin.php:610
 msgid "Block multiple registrations"
 msgstr "Blokker flere registreringer"
 
-#: ../../mod/admin.php:609
+#: ../../mod/admin.php:610
 msgid "Disallow users to register additional accounts for use as pages."
 msgstr "Ikke tillat brukere å registrere ytterligere kontoer til bruk som sider."
 
-#: ../../mod/admin.php:610
+#: ../../mod/admin.php:611
 msgid "OpenID support"
 msgstr "OpenID-støtte"
 
-#: ../../mod/admin.php:610
+#: ../../mod/admin.php:611
 msgid "OpenID support for registration and logins."
 msgstr "OpenID-støtte for registrering og innlogging."
 
-#: ../../mod/admin.php:611
+#: ../../mod/admin.php:612
 msgid "Fullname check"
 msgstr "Sjekk fullt navn"
 
-#: ../../mod/admin.php:611
+#: ../../mod/admin.php:612
 msgid ""
 "Force users to register with a space between firstname and lastname in Full "
 "name, as an antispam measure"
 msgstr "Tving brukere til å registrere med et mellomrom mellom fornavn og etternavn i Fullt navn, som et tiltak mot søppelpost (antispam)."
 
-#: ../../mod/admin.php:612
+#: ../../mod/admin.php:613
 msgid "UTF-8 Regular expressions"
 msgstr "UTF-8 regulære uttrykk"
 
-#: ../../mod/admin.php:612
+#: ../../mod/admin.php:613
 msgid "Use PHP UTF8 regular expressions"
 msgstr "Bruk PHP UTF8 regulære uttrykk"
 
-#: ../../mod/admin.php:613
+#: ../../mod/admin.php:614
 msgid "Show Community Page"
 msgstr "Vis Felleskap-side"
 
-#: ../../mod/admin.php:613
+#: ../../mod/admin.php:614
 msgid ""
 "Display a Community page showing all recent public postings on this site."
 msgstr "Vis en Fellesskapsside som viser de siste offentlige meldinger på dette nettstedet."
 
-#: ../../mod/admin.php:614
+#: ../../mod/admin.php:615
 msgid "Enable OStatus support"
 msgstr "Aktiver Ostatus-støtte"
 
-#: ../../mod/admin.php:614
+#: ../../mod/admin.php:615
 msgid ""
-"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
 "communications in OStatus are public, so privacy warnings will be "
 "occasionally displayed."
-msgstr "Tilby innebygget OStatus-kompatibilitet (identi.ca, status.net, etc.). All kommunikasjon via OStatus er offentlig, så personvernadvarsler vil bli vist av og til."
+msgstr "Tilby innebygget Ostatus-samhandling (StatusNet, GNU Social osv.). All kommunikasjon via OStatus er offentlig, så advarsler om personvern vil bli vist av og til."
 
-#: ../../mod/admin.php:615
+#: ../../mod/admin.php:616
 msgid "OStatus conversation completion interval"
 msgstr "OStatus intervall for samtalefullførelse"
 
-#: ../../mod/admin.php:615
+#: ../../mod/admin.php:616
 msgid ""
 "How often shall the poller check for new entries in OStatus conversations? "
 "This can be a very ressource task."
 msgstr "Hvor ofte skal spørrefunksjonen sjekke etter nye oppføringer i OStatus-samtaler? Dette kan være en svært ressurskrevende oppgave."
 
-#: ../../mod/admin.php:616
+#: ../../mod/admin.php:617
 msgid "Enable Diaspora support"
 msgstr "Aktiver Diaspora-støtte"
 
-#: ../../mod/admin.php:616
+#: ../../mod/admin.php:617
 msgid "Provide built-in Diaspora network compatibility."
 msgstr "Tilby innebygget kompatibilitet med Diaspora-nettverket."
 
-#: ../../mod/admin.php:617
+#: ../../mod/admin.php:618
 msgid "Only allow Friendica contacts"
 msgstr "Bare tillat Friendica-kontakter"
 
-#: ../../mod/admin.php:617
+#: ../../mod/admin.php:618
 msgid ""
 "All contacts must use Friendica protocols. All other built-in communication "
 "protocols disabled."
 msgstr "Alle kontakter må bruke Friendica-protokoller. Alle andre innebyggede kommunikasjonsprotokoller blir deaktivert."
 
-#: ../../mod/admin.php:618
+#: ../../mod/admin.php:619
 msgid "Verify SSL"
 msgstr "Bekreft SSL"
 
-#: ../../mod/admin.php:618
+#: ../../mod/admin.php:619
 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 "Hvis du vil, så kan du skru på streng sertifikatkontroll. Dette betyr at du ikke kan opprette forbindelse (i det hele tatt) med nettsteder som bruker selvsignerte SSL-sertifikater."
 
-#: ../../mod/admin.php:619
+#: ../../mod/admin.php:620
 msgid "Proxy user"
 msgstr "Brukernavn til mellomtjener"
 
-#: ../../mod/admin.php:620
+#: ../../mod/admin.php:621
 msgid "Proxy URL"
 msgstr "Mellomtjener URL"
 
-#: ../../mod/admin.php:621
+#: ../../mod/admin.php:622
 msgid "Network timeout"
 msgstr "Tidsavbrudd for nettverk"
 
-#: ../../mod/admin.php:621
+#: ../../mod/admin.php:622
 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr "Verdien er i sekunder. Sett til 0 for ubegrenset (ikke anbefalt)."
 
-#: ../../mod/admin.php:622
+#: ../../mod/admin.php:623
 msgid "Delivery interval"
 msgstr "Leveringsintervall"
 
-#: ../../mod/admin.php:622
+#: ../../mod/admin.php:623
 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 "Forsink bakgrunnsprosesser for levering med så mange sekunder for å redusere belastningen på systemet. Anbefalinger: 4-5 for delt tjener, 2-3 for virtuelle private tjenere. 0-1 for store, dedikerte tjenere."
 
-#: ../../mod/admin.php:623
+#: ../../mod/admin.php:624
 msgid "Poll interval"
 msgstr "Spørreintervall"
 
-#: ../../mod/admin.php:623
+#: ../../mod/admin.php:624
 msgid ""
 "Delay background polling processes by this many seconds to reduce system "
 "load. If 0, use delivery interval."
 msgstr "Reduser spørreprosesser i bakgrunnen med så mange sekunder for å redusere belastningen på systemet. Hvis 0, bruk leveringsintervall."
 
-#: ../../mod/admin.php:624
+#: ../../mod/admin.php:625
 msgid "Maximum Load Average"
 msgstr "Maksimal snittlast"
 
-#: ../../mod/admin.php:624
+#: ../../mod/admin.php:625
 msgid ""
 "Maximum system load before delivery and poll processes are deferred - "
 "default 50."
 msgstr "Maksimal systemlast før leverings- og spørreprosesser utsettes - standard er 50."
 
-#: ../../mod/admin.php:626
+#: ../../mod/admin.php:627
 msgid "Use MySQL full text engine"
 msgstr "Bruk MySQL fulltekstmotor"
 
-#: ../../mod/admin.php:626
+#: ../../mod/admin.php:627
 msgid ""
 "Activates the full text engine. Speeds up search - but can only search for "
 "four and more characters."
 msgstr "Aktiverer fulltekstmotoren. Øker hastigheten til søk, men kan bare søke etter minimum fire eller flere tegn."
 
-#: ../../mod/admin.php:627
+#: ../../mod/admin.php:628
 msgid "Suppress Language"
 msgstr "Ikke vis språk"
 
-#: ../../mod/admin.php:627
+#: ../../mod/admin.php:628
 msgid "Suppress language information in meta information about a posting."
 msgstr "Ikke vis språkinformasjon i metainformasjon om et innlegg."
 
-#: ../../mod/admin.php:628
+#: ../../mod/admin.php:629
 msgid "Path to item cache"
 msgstr "Sti til mellomlager for elementer"
 
-#: ../../mod/admin.php:629
+#: ../../mod/admin.php:630
 msgid "Cache duration in seconds"
 msgstr "Mellomlagringens varighet i sekunder"
 
-#: ../../mod/admin.php:629
+#: ../../mod/admin.php:630
 msgid ""
 "How long should the cache files be hold? Default value is 86400 seconds (One"
 " day)."
 msgstr "Hvor lenge skal filene i mellomlagret beholdes? Standardveri er 86400 sekunder (Et døgn)."
 
-#: ../../mod/admin.php:630
+#: ../../mod/admin.php:631
 msgid "Path for lock file"
 msgstr "Sti til fillås"
 
-#: ../../mod/admin.php:631
+#: ../../mod/admin.php:632
 msgid "Temp path"
 msgstr "Temp-sti"
 
-#: ../../mod/admin.php:632
+#: ../../mod/admin.php:633
 msgid "Base path to installation"
 msgstr "Sti til installasjonsbasen"
 
-#: ../../mod/admin.php:634
+#: ../../mod/admin.php:635
 msgid "New base url"
 msgstr "Ny base URL"
 
-#: ../../mod/admin.php:652
+#: ../../mod/admin.php:653
 msgid "Update has been marked successful"
 msgstr "Oppdatering har blitt markert som vellykket"
 
-#: ../../mod/admin.php:662
+#: ../../mod/admin.php:663
 #, php-format
 msgid "Executing %s failed. Check system logs."
 msgstr "Utføring av %s mislyktes. Sjekk systemlogger."
 
-#: ../../mod/admin.php:665
+#: ../../mod/admin.php:666
 #, php-format
 msgid "Update %s was successfully applied."
 msgstr "Oppdatering %s ble iverksatt på en vellykket måte."
 
-#: ../../mod/admin.php:669
+#: ../../mod/admin.php:670
 #, php-format
 msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr "Oppdatering %s returnerte ikke en status. Ukjent om oppdateringen er vellykket."
 
-#: ../../mod/admin.php:672
+#: ../../mod/admin.php:673
 #, php-format
 msgid "Update function %s could not be found."
 msgstr "Oppdateringsfunksjon %s ble ikke funnet."
 
-#: ../../mod/admin.php:687
+#: ../../mod/admin.php:688
 msgid "No failed updates."
 msgstr "Ingen mislykkede oppdateringer."
 
-#: ../../mod/admin.php:691
+#: ../../mod/admin.php:692
 msgid "Failed Updates"
 msgstr "Mislykkede oppdateringer"
 
-#: ../../mod/admin.php:692
+#: ../../mod/admin.php:693
 msgid ""
 "This does not include updates prior to 1139, which did not return a status."
 msgstr "Dette inkluderer ikke oppdateringer som kom før 1139, som ikke returnerer en status."
 
-#: ../../mod/admin.php:693
+#: ../../mod/admin.php:694
 msgid "Mark success (if update was manually applied)"
 msgstr "Marker vellykket (hvis oppdatering ble iverksatt manuelt)"
 
-#: ../../mod/admin.php:694
+#: ../../mod/admin.php:695
 msgid "Attempt to execute this update step automatically"
 msgstr "Forsøk å utføre dette oppdateringspunktet automatisk"
 
-#: ../../mod/admin.php:740
+#: ../../mod/admin.php:741
 msgid "Registration successful. Email send to user"
 msgstr "Vellykket registrering. E-post er sendt til bruker"
 
-#: ../../mod/admin.php:750
+#: ../../mod/admin.php:751
 #, php-format
 msgid "%s user blocked/unblocked"
 msgid_plural "%s users blocked/unblocked"
 msgstr[0] "%s bruker blokkert/ikke blokkert"
 msgstr[1] "%s brukere blokkert/ikke blokkert"
 
-#: ../../mod/admin.php:757
+#: ../../mod/admin.php:758
 #, php-format
 msgid "%s user deleted"
 msgid_plural "%s users deleted"
 msgstr[0] "%s bruker slettet"
 msgstr[1] "%s brukere slettet"
 
-#: ../../mod/admin.php:796
+#: ../../mod/admin.php:797
 #, php-format
 msgid "User '%s' deleted"
 msgstr "Brukeren '%s' er slettet"
 
-#: ../../mod/admin.php:804
+#: ../../mod/admin.php:805
 #, php-format
 msgid "User '%s' unblocked"
 msgstr "Brukeren '%s' er ikke blokkert"
 
-#: ../../mod/admin.php:804
+#: ../../mod/admin.php:805
 #, php-format
 msgid "User '%s' blocked"
 msgstr "Brukeren '%s' er blokkert"
 
-#: ../../mod/admin.php:899
+#: ../../mod/admin.php:900
 msgid "Add User"
 msgstr "Legg til bruker"
 
-#: ../../mod/admin.php:900
+#: ../../mod/admin.php:901
 msgid "select all"
 msgstr "velg alle"
 
-#: ../../mod/admin.php:901
+#: ../../mod/admin.php:902
 msgid "User registrations waiting for confirm"
 msgstr "Brukerregistreringer venter på bekreftelse"
 
-#: ../../mod/admin.php:902
+#: ../../mod/admin.php:903
 msgid "User waiting for permanent deletion"
 msgstr "Bruker venter på permanent sletting"
 
-#: ../../mod/admin.php:903
+#: ../../mod/admin.php:904
 msgid "Request date"
 msgstr "Forespørselsdato"
 
-#: ../../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
+#: ../../mod/admin.php:904 ../../mod/admin.php:916 ../../mod/admin.php:917
+#: ../../mod/admin.php:930 ../../mod/crepair.php:150
+#: ../../mod/settings.php:610 ../../mod/settings.php:636
 msgid "Name"
 msgstr "Navn"
 
-#: ../../mod/admin.php:903 ../../mod/admin.php:915 ../../mod/admin.php:916
-#: ../../mod/admin.php:931 ../../include/contact_selectors.php:79
+#: ../../mod/admin.php:904 ../../mod/admin.php:916 ../../mod/admin.php:917
+#: ../../mod/admin.php:932 ../../include/contact_selectors.php:79
 #: ../../include/contact_selectors.php:86
 msgid "Email"
 msgstr "E-post"
 
-#: ../../mod/admin.php:904
+#: ../../mod/admin.php:905
 msgid "No registrations."
 msgstr "Ingen registreringer."
 
-#: ../../mod/admin.php:905 ../../mod/notifications.php:161
+#: ../../mod/admin.php:906 ../../mod/notifications.php:161
 #: ../../mod/notifications.php:208
 msgid "Approve"
 msgstr "Godkjenn"
 
-#: ../../mod/admin.php:906
+#: ../../mod/admin.php:907
 msgid "Deny"
 msgstr "Nekt"
 
-#: ../../mod/admin.php:908 ../../mod/contacts.php:425
-#: ../../mod/contacts.php:484 ../../mod/contacts.php:692
+#: ../../mod/admin.php:909 ../../mod/contacts.php:431
+#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
 msgid "Block"
 msgstr "Blokker"
 
-#: ../../mod/admin.php:909 ../../mod/contacts.php:425
-#: ../../mod/contacts.php:484 ../../mod/contacts.php:692
+#: ../../mod/admin.php:910 ../../mod/contacts.php:431
+#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
 msgid "Unblock"
 msgstr "Ikke blokker"
 
-#: ../../mod/admin.php:910
+#: ../../mod/admin.php:911
 msgid "Site admin"
 msgstr "Nettstedets administrator"
 
-#: ../../mod/admin.php:911
+#: ../../mod/admin.php:912
 msgid "Account expired"
 msgstr "Konto utgått"
 
-#: ../../mod/admin.php:914
+#: ../../mod/admin.php:915
 msgid "New User"
 msgstr "Ny bruker"
 
-#: ../../mod/admin.php:915 ../../mod/admin.php:916
+#: ../../mod/admin.php:916 ../../mod/admin.php:917
 msgid "Register date"
 msgstr "Registreringsdato"
 
-#: ../../mod/admin.php:915 ../../mod/admin.php:916
+#: ../../mod/admin.php:916 ../../mod/admin.php:917
 msgid "Last login"
 msgstr "Siste innlogging"
 
-#: ../../mod/admin.php:915 ../../mod/admin.php:916
+#: ../../mod/admin.php:916 ../../mod/admin.php:917
 msgid "Last item"
 msgstr "Siste element"
 
-#: ../../mod/admin.php:915
+#: ../../mod/admin.php:916
 msgid "Deleted since"
 msgstr "Slettet siden"
 
-#: ../../mod/admin.php:916
+#: ../../mod/admin.php:917 ../../mod/settings.php:35
 msgid "Account"
 msgstr "Konto"
 
-#: ../../mod/admin.php:918
+#: ../../mod/admin.php:919
 msgid ""
 "Selected users will be deleted!\\n\\nEverything these users had posted on "
 "this site will be permanently deleted!\\n\\nAre you sure?"
 msgstr "Valgte brukere vil bli slettet!\\n\\nAlt disse brukerne har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse brukerne?"
 
-#: ../../mod/admin.php:919
+#: ../../mod/admin.php:920
 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 "Brukeren {0} vil bli slettet!\\n\\nAlt denne brukeren har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne brukeren?"
 
-#: ../../mod/admin.php:929
+#: ../../mod/admin.php:930
 msgid "Name of the new user."
 msgstr "Navnet til den nye brukeren."
 
-#: ../../mod/admin.php:930
+#: ../../mod/admin.php:931
 msgid "Nickname"
 msgstr "Kallenavn"
 
-#: ../../mod/admin.php:930
+#: ../../mod/admin.php:931
 msgid "Nickname of the new user."
 msgstr "Kallenavnet til den nye brukeren."
 
-#: ../../mod/admin.php:931
+#: ../../mod/admin.php:932
 msgid "Email address of the new user."
 msgstr "E-postadressen til den nye brukeren."
 
-#: ../../mod/admin.php:964
+#: ../../mod/admin.php:965
 #, php-format
 msgid "Plugin %s disabled."
 msgstr "Tillegget %s er avskrudd."
 
-#: ../../mod/admin.php:968
+#: ../../mod/admin.php:969
 #, php-format
 msgid "Plugin %s enabled."
 msgstr "Tillegget %s er aktivert."
 
-#: ../../mod/admin.php:978 ../../mod/admin.php:1181
+#: ../../mod/admin.php:979 ../../mod/admin.php:1182
 msgid "Disable"
 msgstr "Skru av"
 
-#: ../../mod/admin.php:980 ../../mod/admin.php:1183
+#: ../../mod/admin.php:981 ../../mod/admin.php:1184
 msgid "Enable"
 msgstr "Aktiver"
 
-#: ../../mod/admin.php:1003 ../../mod/admin.php:1211
+#: ../../mod/admin.php:1004 ../../mod/admin.php:1212
 msgid "Toggle"
 msgstr "Veksle"
 
-#: ../../mod/admin.php:1011 ../../mod/admin.php:1221
+#: ../../mod/admin.php:1012 ../../mod/admin.php:1222
 msgid "Author: "
 msgstr "Forfatter:"
 
-#: ../../mod/admin.php:1012 ../../mod/admin.php:1222
+#: ../../mod/admin.php:1013 ../../mod/admin.php:1223
 msgid "Maintainer: "
 msgstr "Vedlikeholder:"
 
-#: ../../mod/admin.php:1141
+#: ../../mod/admin.php:1142
 msgid "No themes found."
 msgstr "Ingen temaer funnet."
 
-#: ../../mod/admin.php:1203
+#: ../../mod/admin.php:1204
 msgid "Screenshot"
 msgstr "Skjermbilde"
 
-#: ../../mod/admin.php:1249
+#: ../../mod/admin.php:1250
 msgid "[Experimental]"
 msgstr "[Eksperimentell]"
 
-#: ../../mod/admin.php:1250
+#: ../../mod/admin.php:1251
 msgid "[Unsupported]"
 msgstr "[Ikke støttet]"
 
-#: ../../mod/admin.php:1277
+#: ../../mod/admin.php:1278
 msgid "Log settings updated."
 msgstr "Logginnstillinger er oppdatert."
 
-#: ../../mod/admin.php:1333
+#: ../../mod/admin.php:1334
 msgid "Clear"
 msgstr "Tøm"
 
-#: ../../mod/admin.php:1339
+#: ../../mod/admin.php:1340
 msgid "Enable Debugging"
 msgstr "Aktiver feilsøking"
 
-#: ../../mod/admin.php:1340
+#: ../../mod/admin.php:1341
 msgid "Log file"
 msgstr "Loggfil"
 
-#: ../../mod/admin.php:1340
+#: ../../mod/admin.php:1341
 msgid ""
 "Must be writable by web server. Relative to your Friendica top-level "
 "directory."
 msgstr "Web-serveren må ha skriverettigheter. Relativt til toppnivåkatalogen til din Friendicas."
 
-#: ../../mod/admin.php:1341
+#: ../../mod/admin.php:1342
 msgid "Log level"
 msgstr "Loggnivå"
 
-#: ../../mod/admin.php:1390 ../../mod/contacts.php:481
+#: ../../mod/admin.php:1391 ../../mod/contacts.php:487
 msgid "Update now"
 msgstr "Oppdater nå"
 
-#: ../../mod/admin.php:1391
+#: ../../mod/admin.php:1392
 msgid "Close"
 msgstr "Lukk"
 
-#: ../../mod/admin.php:1397
+#: ../../mod/admin.php:1398
 msgid "FTP Host"
 msgstr "FTP-tjener"
 
-#: ../../mod/admin.php:1398
+#: ../../mod/admin.php:1399
 msgid "FTP Path"
 msgstr "FTP-sti"
 
-#: ../../mod/admin.php:1399
+#: ../../mod/admin.php:1400
 msgid "FTP User"
 msgstr "FTP-bruker"
 
-#: ../../mod/admin.php:1400
+#: ../../mod/admin.php:1401
 msgid "FTP Password"
 msgstr "FTP-passord"
 
-#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:934
-#: ../../include/text.php:935 ../../include/nav.php:118
+#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:938
+#: ../../include/text.php:939 ../../include/nav.php:118
 msgid "Search"
 msgstr "Søk"
 
 #: ../../mod/_search.php:180 ../../mod/_search.php:206
-#: ../../mod/search.php:179 ../../mod/search.php:205
-#: ../../mod/community.php:61 ../../mod/community.php:91
+#: ../../mod/search.php:170 ../../mod/search.php:196
+#: ../../mod/community.php:62 ../../mod/community.php:89
 msgid "No results."
 msgstr "Fant ikke noe."
 
@@ -2811,75 +2822,75 @@ msgstr "Fant ikke elementet"
 msgid "Edit post"
 msgstr "Endre innlegg"
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1082
+#: ../../mod/editpost.php:111 ../../include/conversation.php:1085
 msgid "upload photo"
 msgstr "last opp bilde"
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1083
+#: ../../mod/editpost.php:112 ../../include/conversation.php:1086
 msgid "Attach file"
 msgstr "Legg ved fil"
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1084
+#: ../../mod/editpost.php:113 ../../include/conversation.php:1087
 msgid "attach file"
 msgstr "legg ved fil"
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1086
+#: ../../mod/editpost.php:115 ../../include/conversation.php:1089
 msgid "web link"
 msgstr "web-adresse"
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:1087
+#: ../../mod/editpost.php:116 ../../include/conversation.php:1090
 msgid "Insert video link"
 msgstr "Sett inn video-link"
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:1088
+#: ../../mod/editpost.php:117 ../../include/conversation.php:1091
 msgid "video link"
 msgstr "videolink"
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1089
+#: ../../mod/editpost.php:118 ../../include/conversation.php:1092
 msgid "Insert audio link"
 msgstr "Sett inn lydlink"
 
-#: ../../mod/editpost.php:119 ../../include/conversation.php:1090
+#: ../../mod/editpost.php:119 ../../include/conversation.php:1093
 msgid "audio link"
 msgstr "lydlink"
 
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1091
+#: ../../mod/editpost.php:120 ../../include/conversation.php:1094
 msgid "Set your location"
 msgstr "Angi din plassering"
 
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1092
+#: ../../mod/editpost.php:121 ../../include/conversation.php:1095
 msgid "set location"
 msgstr "angi plassering"
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1093
+#: ../../mod/editpost.php:122 ../../include/conversation.php:1096
 msgid "Clear browser location"
 msgstr "Fjern nettleserplassering"
 
-#: ../../mod/editpost.php:123 ../../include/conversation.php:1094
+#: ../../mod/editpost.php:123 ../../include/conversation.php:1097
 msgid "clear location"
 msgstr "fjern plassering"
 
-#: ../../mod/editpost.php:125 ../../include/conversation.php:1100
+#: ../../mod/editpost.php:125 ../../include/conversation.php:1103
 msgid "Permission settings"
 msgstr "Tillatelser"
 
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1109
+#: ../../mod/editpost.php:133 ../../include/conversation.php:1112
 msgid "CC: email addresses"
 msgstr "Kopi: e-postadresser"
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1110
+#: ../../mod/editpost.php:134 ../../include/conversation.php:1113
 msgid "Public post"
 msgstr "Offentlig innlegg"
 
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1096
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1099
 msgid "Set title"
 msgstr "Lagre tittel"
 
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1098
+#: ../../mod/editpost.php:139 ../../include/conversation.php:1101
 msgid "Categories (comma-separated list)"
 msgstr "Kategorier (kommaseparert liste)"
 
-#: ../../mod/editpost.php:140 ../../include/conversation.php:1112
+#: ../../mod/editpost.php:140 ../../include/conversation.php:1115
 msgid "Example: bob@example.com, mary@example.com"
 msgstr "Eksempel: ola@example.com, kari@example.com"
 
@@ -2908,7 +2919,7 @@ msgstr "Vennligst logg inn."
 msgid "Find on this site"
 msgstr "Finn på dette nettstedet"
 
-#: ../../mod/directory.php:59 ../../mod/contacts.php:685
+#: ../../mod/directory.php:59 ../../mod/contacts.php:693
 msgid "Finding: "
 msgstr "Fant:"
 
@@ -2916,12 +2927,12 @@ msgstr "Fant:"
 msgid "Site Directory"
 msgstr "Stedets katalog"
 
-#: ../../mod/directory.php:61 ../../mod/contacts.php:686
+#: ../../mod/directory.php:61 ../../mod/contacts.php:694
 #: ../../include/contact_widgets.php:33
 msgid "Find"
 msgstr "Finn"
 
-#: ../../mod/directory.php:111 ../../mod/profiles.php:686
+#: ../../mod/directory.php:111 ../../mod/profiles.php:690
 msgid "Age: "
 msgstr "Alder:"
 
@@ -3050,7 +3061,7 @@ msgstr "Ekstern informasjon om privatlivsinnstillinger er ikke tilgjengelig."
 msgid "Visible to:"
 msgstr "Synlig for:"
 
-#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:937
+#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:941
 msgid "Save"
 msgstr "Lagre"
 
@@ -3147,7 +3158,7 @@ msgstr "Ugyldig profil-URL."
 msgid "Disallowed profile URL."
 msgstr "Underkjent profil-URL."
 
-#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:174
+#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180
 msgid "Failed to update contact record."
 msgstr "Mislyktes med å oppdatere kontaktposten."
 
@@ -3183,7 +3194,7 @@ msgstr "Vennligst bekreft din introduksjons-/forbindelses- forespørsel til %s."
 msgid "Confirm"
 msgstr "Bekreft"
 
-#: ../../mod/dfrn_request.php:716 ../../include/items.php:3532
+#: ../../mod/dfrn_request.php:716 ../../include/items.php:3686
 msgid "[Name Withheld]"
 msgstr "[Navnet tilbakeholdt]"
 
@@ -3235,7 +3246,7 @@ msgstr "Friendica"
 msgid "StatusNet/Federated Social Web"
 msgstr "StatusNet/Federeated Social Web"
 
-#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:722
+#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:730
 #: ../../include/contact_selectors.php:80
 msgid "Diaspora"
 msgstr "Diaspora"
@@ -3261,7 +3272,7 @@ msgstr "Send forespørsel"
 msgid "[Embedded content - reload page to view]"
 msgstr "[Innebygget innhold - hent siden på nytt for å se det]"
 
-#: ../../mod/content.php:496 ../../include/conversation.php:686
+#: ../../mod/content.php:496 ../../include/conversation.php:688
 msgid "View in context"
 msgstr "Vis i sammenheng"
 
@@ -3272,7 +3283,7 @@ msgid_plural "%d contacts edited"
 msgstr[0] "%d kontakt redigert."
 msgstr[1] "%d kontakter redigert"
 
-#: ../../mod/contacts.php:135 ../../mod/contacts.php:258
+#: ../../mod/contacts.php:135 ../../mod/contacts.php:264
 msgid "Could not access contact record."
 msgstr "Fikk ikke tilgang til kontaktposten."
 
@@ -3280,894 +3291,902 @@ msgstr "Fikk ikke tilgang til kontaktposten."
 msgid "Could not locate selected profile."
 msgstr "Kunne ikke lokalisere valgt profil."
 
-#: ../../mod/contacts.php:172
+#: ../../mod/contacts.php:178
 msgid "Contact updated."
 msgstr "Kontakt oppdatert."
 
-#: ../../mod/contacts.php:272
+#: ../../mod/contacts.php:278
 msgid "Contact has been blocked"
 msgstr "Kontakten er blokkert"
 
-#: ../../mod/contacts.php:272
+#: ../../mod/contacts.php:278
 msgid "Contact has been unblocked"
 msgstr "Kontakten er ikke blokkert lenger"
 
-#: ../../mod/contacts.php:282
+#: ../../mod/contacts.php:288
 msgid "Contact has been ignored"
 msgstr "Kontakten er ignorert"
 
-#: ../../mod/contacts.php:282
+#: ../../mod/contacts.php:288
 msgid "Contact has been unignored"
 msgstr "Kontakten er ikke ignorert lenger"
 
-#: ../../mod/contacts.php:293
+#: ../../mod/contacts.php:299
 msgid "Contact has been archived"
 msgstr "Kontakt har blitt arkivert"
 
-#: ../../mod/contacts.php:293
+#: ../../mod/contacts.php:299
 msgid "Contact has been unarchived"
 msgstr "Kontakt har blitt hentet tilbake fra arkivet"
 
-#: ../../mod/contacts.php:318 ../../mod/contacts.php:689
+#: ../../mod/contacts.php:324 ../../mod/contacts.php:697
 msgid "Do you really want to delete this contact?"
 msgstr "Ønsker du virkelig å slette denne kontakten?"
 
-#: ../../mod/contacts.php:335
+#: ../../mod/contacts.php:341
 msgid "Contact has been removed."
 msgstr "Kontakten er fjernet."
 
-#: ../../mod/contacts.php:373
+#: ../../mod/contacts.php:379
 #, php-format
 msgid "You are mutual friends with %s"
 msgstr "Du er gjensidig venn med %s"
 
-#: ../../mod/contacts.php:377
+#: ../../mod/contacts.php:383
 #, php-format
 msgid "You are sharing with %s"
 msgstr "Du deler med %s"
 
-#: ../../mod/contacts.php:382
+#: ../../mod/contacts.php:388
 #, php-format
 msgid "%s is sharing with you"
 msgstr "%s deler med deg"
 
-#: ../../mod/contacts.php:399
+#: ../../mod/contacts.php:405
 msgid "Private communications are not available for this contact."
 msgstr "Privat kommunikasjon er ikke tilgjengelig mot denne kontakten."
 
-#: ../../mod/contacts.php:406
+#: ../../mod/contacts.php:412
 msgid "(Update was successful)"
 msgstr "(Oppdatering vellykket)"
 
-#: ../../mod/contacts.php:406
+#: ../../mod/contacts.php:412
 msgid "(Update was not successful)"
 msgstr "(Oppdatering mislykket)"
 
-#: ../../mod/contacts.php:408
+#: ../../mod/contacts.php:414
 msgid "Suggest friends"
 msgstr "Foreslå venner"
 
-#: ../../mod/contacts.php:412
+#: ../../mod/contacts.php:418
 #, php-format
 msgid "Network type: %s"
 msgstr "Nettverkstype: %s"
 
-#: ../../mod/contacts.php:415 ../../include/contact_widgets.php:199
+#: ../../mod/contacts.php:421 ../../include/contact_widgets.php:199
 #, php-format
 msgid "%d contact in common"
 msgid_plural "%d contacts in common"
 msgstr[0] "%d felles kontakt"
 msgstr[1] "%d felles kontakter"
 
-#: ../../mod/contacts.php:420
+#: ../../mod/contacts.php:426
 msgid "View all contacts"
 msgstr "Vis alle kontakter"
 
-#: ../../mod/contacts.php:428
+#: ../../mod/contacts.php:434
 msgid "Toggle Blocked status"
 msgstr "Veksle blokkeringsstatus"
 
-#: ../../mod/contacts.php:431 ../../mod/contacts.php:485
-#: ../../mod/contacts.php:693
+#: ../../mod/contacts.php:437 ../../mod/contacts.php:491
+#: ../../mod/contacts.php:701
 msgid "Unignore"
 msgstr "Fjern ignorering"
 
-#: ../../mod/contacts.php:431 ../../mod/contacts.php:485
-#: ../../mod/contacts.php:693 ../../mod/notifications.php:51
+#: ../../mod/contacts.php:437 ../../mod/contacts.php:491
+#: ../../mod/contacts.php:701 ../../mod/notifications.php:51
 #: ../../mod/notifications.php:164 ../../mod/notifications.php:210
 msgid "Ignore"
 msgstr "Ignorer"
 
-#: ../../mod/contacts.php:434
+#: ../../mod/contacts.php:440
 msgid "Toggle Ignored status"
 msgstr "Veksle ingnorertstatus"
 
-#: ../../mod/contacts.php:438 ../../mod/contacts.php:694
+#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
 msgid "Unarchive"
 msgstr "Hent ut av arkivet"
 
-#: ../../mod/contacts.php:438 ../../mod/contacts.php:694
+#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
 msgid "Archive"
 msgstr "Arkiver"
 
-#: ../../mod/contacts.php:441
+#: ../../mod/contacts.php:447
 msgid "Toggle Archive status"
 msgstr "Veksle arkivertstatus"
 
-#: ../../mod/contacts.php:444
+#: ../../mod/contacts.php:450
 msgid "Repair"
 msgstr "Reparer"
 
-#: ../../mod/contacts.php:447
+#: ../../mod/contacts.php:453
 msgid "Advanced Contact Settings"
 msgstr "Avanserte kontaktinnstillinger"
 
-#: ../../mod/contacts.php:453
+#: ../../mod/contacts.php:459
 msgid "Communications lost with this contact!"
 msgstr "Kommunikasjon tapt med denne kontakten!"
 
-#: ../../mod/contacts.php:456
+#: ../../mod/contacts.php:462
 msgid "Contact Editor"
 msgstr "Endre kontakt"
 
-#: ../../mod/contacts.php:459
+#: ../../mod/contacts.php:465
 msgid "Profile Visibility"
 msgstr "Profilens synlighet"
 
-#: ../../mod/contacts.php:460
+#: ../../mod/contacts.php:466
 #, php-format
 msgid ""
 "Please choose the profile you would like to display to %s when viewing your "
 "profile securely."
 msgstr "Vennligst velg profilen du ønsker å vise til %s når denne ser profilen på en sikret måte."
 
-#: ../../mod/contacts.php:461
+#: ../../mod/contacts.php:467
 msgid "Contact Information / Notes"
 msgstr "Kontaktinformasjon/-notater"
 
-#: ../../mod/contacts.php:462
+#: ../../mod/contacts.php:468
 msgid "Edit contact notes"
 msgstr "Endre kontaktnotater"
 
-#: ../../mod/contacts.php:467 ../../mod/contacts.php:657
+#: ../../mod/contacts.php:473 ../../mod/contacts.php:665
 #: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
 #, php-format
 msgid "Visit %s's profile [%s]"
 msgstr "Besøk %ss profil [%s]"
 
-#: ../../mod/contacts.php:468
+#: ../../mod/contacts.php:474
 msgid "Block/Unblock contact"
 msgstr "Blokker kontakt/fjern blokkering for kontakt"
 
-#: ../../mod/contacts.php:469
+#: ../../mod/contacts.php:475
 msgid "Ignore contact"
 msgstr "Ignorer kontakt"
 
-#: ../../mod/contacts.php:470
+#: ../../mod/contacts.php:476
 msgid "Repair URL settings"
 msgstr "Reparer URL-innstillinger"
 
-#: ../../mod/contacts.php:471
+#: ../../mod/contacts.php:477
 msgid "View conversations"
 msgstr "Vis samtaler"
 
-#: ../../mod/contacts.php:473
+#: ../../mod/contacts.php:479
 msgid "Delete contact"
 msgstr "Slett kontakt"
 
-#: ../../mod/contacts.php:477
+#: ../../mod/contacts.php:483
 msgid "Last update:"
 msgstr "Siste oppdatering:"
 
-#: ../../mod/contacts.php:479
+#: ../../mod/contacts.php:485
 msgid "Update public posts"
 msgstr "Oppdater offentlige innlegg"
 
-#: ../../mod/contacts.php:488
+#: ../../mod/contacts.php:494
 msgid "Currently blocked"
 msgstr "Blokkert nå"
 
-#: ../../mod/contacts.php:489
+#: ../../mod/contacts.php:495
 msgid "Currently ignored"
 msgstr "Ignorert nå"
 
-#: ../../mod/contacts.php:490
+#: ../../mod/contacts.php:496
 msgid "Currently archived"
 msgstr "For øyeblikket arkivert"
 
-#: ../../mod/contacts.php:491 ../../mod/notifications.php:157
+#: ../../mod/contacts.php:497 ../../mod/notifications.php:157
 #: ../../mod/notifications.php:204
 msgid "Hide this contact from others"
 msgstr "Skjul denne kontakten for andre"
 
-#: ../../mod/contacts.php:491
+#: ../../mod/contacts.php:497
 msgid ""
 "Replies/likes to your public posts <strong>may</strong> still be visible"
 msgstr "Svar/liker til dine offentlige innlegg <strong>kan</strong> fortsatt være synlige"
 
-#: ../../mod/contacts.php:542
+#: ../../mod/contacts.php:498
+msgid "Notification for new posts"
+msgstr "Varsling om nye innlegg"
+
+#: ../../mod/contacts.php:498
+msgid "Send a notification of every new post of this contact"
+msgstr "Send et varsel ved hvert nytt innlegg fra denne kontakten"
+
+#: ../../mod/contacts.php:499
+msgid "Fetch further information for feeds"
+msgstr "Hent ytterligere informasjon til strømmer"
+
+#: ../../mod/contacts.php:550
 msgid "Suggestions"
 msgstr "Forslag"
 
-#: ../../mod/contacts.php:545
+#: ../../mod/contacts.php:553
 msgid "Suggest potential friends"
 msgstr "Foreslå mulige venner"
 
-#: ../../mod/contacts.php:548 ../../mod/group.php:194
+#: ../../mod/contacts.php:556 ../../mod/group.php:194
 msgid "All Contacts"
 msgstr "Alle kontakter"
 
-#: ../../mod/contacts.php:551
+#: ../../mod/contacts.php:559
 msgid "Show all contacts"
 msgstr "Vis alle kontakter"
 
-#: ../../mod/contacts.php:554
+#: ../../mod/contacts.php:562
 msgid "Unblocked"
 msgstr "Ikke blokkert"
 
-#: ../../mod/contacts.php:557
+#: ../../mod/contacts.php:565
 msgid "Only show unblocked contacts"
 msgstr "Bare vis ikke blokkerte kontakter"
 
-#: ../../mod/contacts.php:561
+#: ../../mod/contacts.php:569
 msgid "Blocked"
 msgstr "Blokkert"
 
-#: ../../mod/contacts.php:564
+#: ../../mod/contacts.php:572
 msgid "Only show blocked contacts"
 msgstr "Bare vis blokkerte kontakter"
 
-#: ../../mod/contacts.php:568
+#: ../../mod/contacts.php:576
 msgid "Ignored"
 msgstr "Ignorert"
 
-#: ../../mod/contacts.php:571
+#: ../../mod/contacts.php:579
 msgid "Only show ignored contacts"
 msgstr "Bare vis ignorerte kontakter"
 
-#: ../../mod/contacts.php:575
+#: ../../mod/contacts.php:583
 msgid "Archived"
 msgstr "Arkivert"
 
-#: ../../mod/contacts.php:578
+#: ../../mod/contacts.php:586
 msgid "Only show archived contacts"
 msgstr "Bare vis arkiverte kontakter"
 
-#: ../../mod/contacts.php:582
+#: ../../mod/contacts.php:590
 msgid "Hidden"
 msgstr "Skjult"
 
-#: ../../mod/contacts.php:585
+#: ../../mod/contacts.php:593
 msgid "Only show hidden contacts"
 msgstr "Bare vis skjulte kontakter"
 
-#: ../../mod/contacts.php:633
+#: ../../mod/contacts.php:641
 msgid "Mutual Friendship"
 msgstr "Gjensidig vennskap"
 
-#: ../../mod/contacts.php:637
+#: ../../mod/contacts.php:645
 msgid "is a fan of yours"
 msgstr "er en tilhenger av deg"
 
-#: ../../mod/contacts.php:641
+#: ../../mod/contacts.php:649
 msgid "you are a fan of"
 msgstr "du er en tilhenger av"
 
-#: ../../mod/contacts.php:658 ../../mod/nogroup.php:41
+#: ../../mod/contacts.php:666 ../../mod/nogroup.php:41
 msgid "Edit contact"
 msgstr "Endre kontakt"
 
-#: ../../mod/contacts.php:684
+#: ../../mod/contacts.php:692
 msgid "Search your contacts"
 msgstr "Søk i dine kontakter"
 
-#: ../../mod/contacts.php:691 ../../mod/settings.php:126
-#: ../../mod/settings.php:627
+#: ../../mod/contacts.php:699 ../../mod/settings.php:131
+#: ../../mod/settings.php:634
 msgid "Update"
 msgstr "Oppdater"
 
-#: ../../mod/settings.php:28 ../../mod/photos.php:79
+#: ../../mod/settings.php:28 ../../mod/photos.php:80
 msgid "everybody"
 msgstr "alle"
 
-#: ../../mod/settings.php:35 ../../mod/uexport.php:9 ../../include/nav.php:167
-msgid "Account settings"
-msgstr "Kontoinnstillinger"
-
 #: ../../mod/settings.php:40
 msgid "Additional features"
 msgstr "Tilleggsfunksjoner"
 
-#: ../../mod/settings.php:45 ../../mod/uexport.php:14
-msgid "Display settings"
-msgstr "Visningsinnstillinger"
+#: ../../mod/settings.php:45
+msgid "Display"
+msgstr "Vis"
 
-#: ../../mod/settings.php:51 ../../mod/uexport.php:20
-msgid "Connector settings"
-msgstr "Koblingsinnstillinger"
+#: ../../mod/settings.php:51 ../../mod/settings.php:774
+msgid "Social Networks"
+msgstr "Sosiale nettverk"
 
-#: ../../mod/settings.php:56 ../../mod/uexport.php:25
-msgid "Plugin settings"
-msgstr "Tilleggsinnstillinger"
+#: ../../mod/settings.php:61 ../../include/nav.php:167
+msgid "Delegations"
+msgstr "Delegasjoner"
 
-#: ../../mod/settings.php:61 ../../mod/uexport.php:30
+#: ../../mod/settings.php:66
 msgid "Connected apps"
 msgstr "Tilkoblede programmer"
 
-#: ../../mod/settings.php:66 ../../mod/uexport.php:35 ../../mod/uexport.php:80
+#: ../../mod/settings.php:71 ../../mod/uexport.php:85
 msgid "Export personal data"
 msgstr "Eksporter personlige data"
 
-#: ../../mod/settings.php:71 ../../mod/uexport.php:40
+#: ../../mod/settings.php:76
 msgid "Remove account"
 msgstr "Fjern konto"
 
-#: ../../mod/settings.php:123
+#: ../../mod/settings.php:128
 msgid "Missing some important data!"
 msgstr "Mangler noen viktige data!"
 
-#: ../../mod/settings.php:232
+#: ../../mod/settings.php:237
 msgid "Failed to connect with email account using the settings provided."
 msgstr "Mislyktes i å opprette forbindelse med e-postkontoen med de oppgitte innstillingene."
 
-#: ../../mod/settings.php:237
+#: ../../mod/settings.php:242
 msgid "Email settings updated."
 msgstr "E-postinnstillinger er oppdatert."
 
-#: ../../mod/settings.php:252
+#: ../../mod/settings.php:257
 msgid "Features updated"
 msgstr "Funksjoner oppdatert"
 
-#: ../../mod/settings.php:311
+#: ../../mod/settings.php:318
 msgid "Relocate message has been send to your contacts"
 msgstr "Omplasseringsmelding har blitt sendt til dine kontakter"
 
-#: ../../mod/settings.php:325
+#: ../../mod/settings.php:332
 msgid "Passwords do not match. Password unchanged."
 msgstr "Passordene er ikke like. Passord uendret."
 
-#: ../../mod/settings.php:330
+#: ../../mod/settings.php:337
 msgid "Empty passwords are not allowed. Password unchanged."
 msgstr "Tomme passord er ikke lov. Passord uendret."
 
-#: ../../mod/settings.php:338
+#: ../../mod/settings.php:345
 msgid "Wrong password."
 msgstr "Feil passord."
 
-#: ../../mod/settings.php:349
+#: ../../mod/settings.php:356
 msgid "Password changed."
 msgstr "Passord endret."
 
-#: ../../mod/settings.php:351
+#: ../../mod/settings.php:358
 msgid "Password update failed. Please try again."
 msgstr "Passordoppdatering mislyktes. Vennligst prøv igjen."
 
-#: ../../mod/settings.php:416
+#: ../../mod/settings.php:423
 msgid " Please use a shorter name."
 msgstr "Vennligst bruk et kortere navn."
 
-#: ../../mod/settings.php:418
+#: ../../mod/settings.php:425
 msgid " Name too short."
 msgstr "Navnet er for kort."
 
-#: ../../mod/settings.php:427
+#: ../../mod/settings.php:434
 msgid "Wrong Password"
 msgstr "Feil passord"
 
-#: ../../mod/settings.php:432
+#: ../../mod/settings.php:439
 msgid " Not valid email."
 msgstr "Ugyldig e-postadresse."
 
-#: ../../mod/settings.php:438
+#: ../../mod/settings.php:445
 msgid " Cannot change to that email."
 msgstr "Kan ikke endre til den e-postadressen."
 
-#: ../../mod/settings.php:493
+#: ../../mod/settings.php:500
 msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr "Privat forum har ingen personverntillatelser. Bruker standard personverngruppe."
 
-#: ../../mod/settings.php:497
+#: ../../mod/settings.php:504
 msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr "Privat forum har ingen personverntillatelser og ingen standard personverngruppe."
 
-#: ../../mod/settings.php:527
+#: ../../mod/settings.php:534
 msgid "Settings updated."
 msgstr "Innstillinger oppdatert."
 
-#: ../../mod/settings.php:600 ../../mod/settings.php:626
-#: ../../mod/settings.php:662
+#: ../../mod/settings.php:607 ../../mod/settings.php:633
+#: ../../mod/settings.php:669
 msgid "Add application"
 msgstr "Legg til program"
 
-#: ../../mod/settings.php:604 ../../mod/settings.php:630
+#: ../../mod/settings.php:611 ../../mod/settings.php:637
 msgid "Consumer Key"
 msgstr "Consumer Key"
 
-#: ../../mod/settings.php:605 ../../mod/settings.php:631
+#: ../../mod/settings.php:612 ../../mod/settings.php:638
 msgid "Consumer Secret"
 msgstr "Consumer Secret"
 
-#: ../../mod/settings.php:606 ../../mod/settings.php:632
+#: ../../mod/settings.php:613 ../../mod/settings.php:639
 msgid "Redirect"
 msgstr "Omdiriger"
 
-#: ../../mod/settings.php:607 ../../mod/settings.php:633
+#: ../../mod/settings.php:614 ../../mod/settings.php:640
 msgid "Icon url"
 msgstr "Ikon URL"
 
-#: ../../mod/settings.php:618
+#: ../../mod/settings.php:625
 msgid "You can't edit this application."
 msgstr "Du kan ikke redigere dette programmet."
 
-#: ../../mod/settings.php:661
+#: ../../mod/settings.php:668
 msgid "Connected Apps"
 msgstr "Tilkoblede programmer"
 
-#: ../../mod/settings.php:665
+#: ../../mod/settings.php:672
 msgid "Client key starts with"
 msgstr "Klientnøkkelen starter med"
 
-#: ../../mod/settings.php:666
+#: ../../mod/settings.php:673
 msgid "No name"
 msgstr "Ingen navn"
 
-#: ../../mod/settings.php:667
+#: ../../mod/settings.php:674
 msgid "Remove authorization"
 msgstr "Fjern tillatelse"
 
-#: ../../mod/settings.php:679
+#: ../../mod/settings.php:686
 msgid "No Plugin settings configured"
 msgstr "Ingen tilleggsinnstillinger konfigurert"
 
-#: ../../mod/settings.php:687
+#: ../../mod/settings.php:694
 msgid "Plugin Settings"
 msgstr "Tilleggsinnstillinger"
 
-#: ../../mod/settings.php:701
+#: ../../mod/settings.php:708
 msgid "Off"
 msgstr "Av"
 
-#: ../../mod/settings.php:701
+#: ../../mod/settings.php:708
 msgid "On"
 msgstr "På"
 
-#: ../../mod/settings.php:709
+#: ../../mod/settings.php:716
 msgid "Additional Features"
 msgstr "Tilleggsfunksjoner"
 
-#: ../../mod/settings.php:722 ../../mod/settings.php:723
+#: ../../mod/settings.php:730 ../../mod/settings.php:731
 #, php-format
 msgid "Built-in support for %s connectivity is %s"
 msgstr "Innebygget støtte for %s forbindelse er %s"
 
-#: ../../mod/settings.php:722 ../../mod/settings.php:723
+#: ../../mod/settings.php:730 ../../mod/settings.php:731
 msgid "enabled"
 msgstr "aktivert"
 
-#: ../../mod/settings.php:722 ../../mod/settings.php:723
+#: ../../mod/settings.php:730 ../../mod/settings.php:731
 msgid "disabled"
 msgstr "avskrudd"
 
-#: ../../mod/settings.php:723
+#: ../../mod/settings.php:731
 msgid "StatusNet"
 msgstr "StatusNet"
 
-#: ../../mod/settings.php:755
+#: ../../mod/settings.php:767
 msgid "Email access is disabled on this site."
 msgstr "E-posttilgang er avskrudd på dette stedet."
 
-#: ../../mod/settings.php:762
-msgid "Connector Settings"
-msgstr "Koblingsinnstillinger"
-
-#: ../../mod/settings.php:767
+#: ../../mod/settings.php:779
 msgid "Email/Mailbox Setup"
 msgstr "E-post-/postboksinnstillinger"
 
-#: ../../mod/settings.php:768
+#: ../../mod/settings.php:780
 msgid ""
 "If you wish to communicate with email contacts using this service "
 "(optional), please specify how to connect to your mailbox."
 msgstr "Hvis du ønsker å kommunisere med e-postkontakter via denne tjenesten (frivillig), vennligst oppgi hvordan din postboks kontaktes."
 
-#: ../../mod/settings.php:769
+#: ../../mod/settings.php:781
 msgid "Last successful email check:"
 msgstr "Siste vellykkede e-postsjekk:"
 
-#: ../../mod/settings.php:771
+#: ../../mod/settings.php:783
 msgid "IMAP server name:"
 msgstr "IMAP-tjeners navn:"
 
-#: ../../mod/settings.php:772
+#: ../../mod/settings.php:784
 msgid "IMAP port:"
 msgstr "IMAP port:"
 
-#: ../../mod/settings.php:773
+#: ../../mod/settings.php:785
 msgid "Security:"
 msgstr "Sikkerhet:"
 
-#: ../../mod/settings.php:773 ../../mod/settings.php:778
+#: ../../mod/settings.php:785 ../../mod/settings.php:790
 msgid "None"
 msgstr "Ingen"
 
-#: ../../mod/settings.php:774
+#: ../../mod/settings.php:786
 msgid "Email login name:"
 msgstr "E-post brukernavn:"
 
-#: ../../mod/settings.php:775
+#: ../../mod/settings.php:787
 msgid "Email password:"
 msgstr "E-post passord:"
 
-#: ../../mod/settings.php:776
+#: ../../mod/settings.php:788
 msgid "Reply-to address:"
 msgstr "Svar-til-adresse:"
 
-#: ../../mod/settings.php:777
+#: ../../mod/settings.php:789
 msgid "Send public posts to all email contacts:"
 msgstr "Send offentlige meldinger til alle e-postkontakter:"
 
-#: ../../mod/settings.php:778
+#: ../../mod/settings.php:790
 msgid "Action after import:"
 msgstr "Handling etter import:"
 
-#: ../../mod/settings.php:778
+#: ../../mod/settings.php:790
 msgid "Mark as seen"
 msgstr "Marker som sett"
 
-#: ../../mod/settings.php:778
+#: ../../mod/settings.php:790
 msgid "Move to folder"
 msgstr "Flytt til mappe"
 
-#: ../../mod/settings.php:779
+#: ../../mod/settings.php:791
 msgid "Move to folder:"
 msgstr "Flytt til mappe:"
 
-#: ../../mod/settings.php:854
+#: ../../mod/settings.php:869
 msgid "Display Settings"
 msgstr "Visningsinnstillinger"
 
-#: ../../mod/settings.php:860 ../../mod/settings.php:873
+#: ../../mod/settings.php:875 ../../mod/settings.php:889
 msgid "Display Theme:"
 msgstr "Vis tema:"
 
-#: ../../mod/settings.php:861
+#: ../../mod/settings.php:876
 msgid "Mobile Theme:"
 msgstr "Mobilt tema:"
 
-#: ../../mod/settings.php:862
+#: ../../mod/settings.php:877
 msgid "Update browser every xx seconds"
 msgstr "Oppdater nettleser hvert xx sekund"
 
-#: ../../mod/settings.php:862
+#: ../../mod/settings.php:877
 msgid "Minimum of 10 seconds, no maximum"
 msgstr "Minimum 10 sekunder, ikke noe maksimum"
 
-#: ../../mod/settings.php:863
+#: ../../mod/settings.php:878
 msgid "Number of items to display per page:"
 msgstr "Antall elementer som vises per side:"
 
-#: ../../mod/settings.php:863 ../../mod/settings.php:864
+#: ../../mod/settings.php:878 ../../mod/settings.php:879
 msgid "Maximum of 100 items"
 msgstr "Maksimum 100 elementer"
 
-#: ../../mod/settings.php:864
+#: ../../mod/settings.php:879
 msgid "Number of items to display per page when viewed from mobile device:"
 msgstr "Antall elementer å vise per side ved visning på mobil enhet:"
 
-#: ../../mod/settings.php:865
+#: ../../mod/settings.php:880
 msgid "Don't show emoticons"
 msgstr "Ikke vis uttrykksikoner"
 
-#: ../../mod/settings.php:866
+#: ../../mod/settings.php:881
+msgid "Don't show notices"
+msgstr "Ikke vis varsler"
+
+#: ../../mod/settings.php:882
 msgid "Infinite scroll"
 msgstr "Uendelig rulling"
 
-#: ../../mod/settings.php:942
+#: ../../mod/settings.php:959
 msgid "Normal Account Page"
 msgstr "Vanlig konto-side"
 
-#: ../../mod/settings.php:943
+#: ../../mod/settings.php:960
 msgid "This account is a normal personal profile"
 msgstr "Denne kontoen er en vanlig personlig profil"
 
-#: ../../mod/settings.php:946
+#: ../../mod/settings.php:963
 msgid "Soapbox Page"
 msgstr "Talerstol-side"
 
-#: ../../mod/settings.php:947
+#: ../../mod/settings.php:964
 msgid "Automatically approve all connection/friend requests as read-only fans"
 msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med kun leserettigheter"
 
-#: ../../mod/settings.php:950
+#: ../../mod/settings.php:967
 msgid "Community Forum/Celebrity Account"
 msgstr "Fellesskapsforum/Kjendis-side"
 
-#: ../../mod/settings.php:951
+#: ../../mod/settings.php:968
 msgid ""
 "Automatically approve all connection/friend requests as read-write fans"
 msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med lese- og skriverettigheter"
 
-#: ../../mod/settings.php:954
+#: ../../mod/settings.php:971
 msgid "Automatic Friend Page"
 msgstr "Automatisk venn-side"
 
-#: ../../mod/settings.php:955
+#: ../../mod/settings.php:972
 msgid "Automatically approve all connection/friend requests as friends"
 msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som venner"
 
-#: ../../mod/settings.php:958
+#: ../../mod/settings.php:975
 msgid "Private Forum [Experimental]"
 msgstr "Privat forum [Eksperimentell]"
 
-#: ../../mod/settings.php:959
+#: ../../mod/settings.php:976
 msgid "Private forum - approved members only"
 msgstr "Privat forum - kun godkjente medlemmer"
 
-#: ../../mod/settings.php:971
+#: ../../mod/settings.php:988
 msgid "OpenID:"
 msgstr "OpenID:"
 
-#: ../../mod/settings.php:971
+#: ../../mod/settings.php:988
 msgid "(Optional) Allow this OpenID to login to this account."
 msgstr "(Valgfritt) Tillat denne OpenID-en å logge inn i denne kontoen."
 
-#: ../../mod/settings.php:981
+#: ../../mod/settings.php:998
 msgid "Publish your default profile in your local site directory?"
 msgstr "Skal standardprofilen din publiseres i katalogen til nettstedet ditt?"
 
-#: ../../mod/settings.php:987
+#: ../../mod/settings.php:1004
 msgid "Publish your default profile in the global social directory?"
 msgstr "Skal standardprofilen din publiseres i den globale sosiale katalogen?"
 
-#: ../../mod/settings.php:995
+#: ../../mod/settings.php:1012
 msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr "Skjul kontakt-/venne-listen din for besøkende til standardprofilen din?"
 
-#: ../../mod/settings.php:999
+#: ../../mod/settings.php:1016
 msgid "Hide your profile details from unknown viewers?"
 msgstr "Skjul dine profildetaljer fra ukjente besøkende?"
 
-#: ../../mod/settings.php:1004
+#: ../../mod/settings.php:1021
 msgid "Allow friends to post to your profile page?"
 msgstr "Tillat venner å poste innlegg på din profilside?"
 
-#: ../../mod/settings.php:1010
+#: ../../mod/settings.php:1027
 msgid "Allow friends to tag your posts?"
 msgstr "Tillat venner å merke dine innlegg?"
 
-#: ../../mod/settings.php:1016
+#: ../../mod/settings.php:1033
 msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr "Tillat oss å foreslå deg som en mulig venn til nye medlemmer?"
 
-#: ../../mod/settings.php:1022
+#: ../../mod/settings.php:1039
 msgid "Permit unknown people to send you private mail?"
 msgstr "Tillat ukjente personer å sende deg privat post?"
 
-#: ../../mod/settings.php:1030
+#: ../../mod/settings.php:1047
 msgid "Profile is <strong>not published</strong>."
 msgstr "Profilen er <strong>ikke publisert</strong>."
 
-#: ../../mod/settings.php:1033 ../../mod/profile_photo.php:248
+#: ../../mod/settings.php:1050 ../../mod/profile_photo.php:248
 msgid "or"
 msgstr "eller"
 
-#: ../../mod/settings.php:1038
+#: ../../mod/settings.php:1055
 msgid "Your Identity Address is"
 msgstr "Din identitetsadresse er"
 
-#: ../../mod/settings.php:1049
+#: ../../mod/settings.php:1066
 msgid "Automatically expire posts after this many days:"
 msgstr "Innlegg utgår automatisk etter så mange dager:"
 
-#: ../../mod/settings.php:1049
+#: ../../mod/settings.php:1066
 msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr "Tomme innlegg utgår ikke. Utgåtte innlegg slettes."
 
-#: ../../mod/settings.php:1050
+#: ../../mod/settings.php:1067
 msgid "Advanced expiration settings"
 msgstr "Avanserte innstillinger for å utgå"
 
-#: ../../mod/settings.php:1051
+#: ../../mod/settings.php:1068
 msgid "Advanced Expiration"
 msgstr "Avansert utgå"
 
-#: ../../mod/settings.php:1052
+#: ../../mod/settings.php:1069
 msgid "Expire posts:"
 msgstr "Innlegg utgår:"
 
-#: ../../mod/settings.php:1053
+#: ../../mod/settings.php:1070
 msgid "Expire personal notes:"
 msgstr "Personlige notater utgår:"
 
-#: ../../mod/settings.php:1054
+#: ../../mod/settings.php:1071
 msgid "Expire starred posts:"
 msgstr "Innlegg med stjerne utgår:"
 
-#: ../../mod/settings.php:1055
+#: ../../mod/settings.php:1072
 msgid "Expire photos:"
 msgstr "Bilder utgår:"
 
-#: ../../mod/settings.php:1056
+#: ../../mod/settings.php:1073
 msgid "Only expire posts by others:"
 msgstr "Kun innlegg fra andre utgår:"
 
-#: ../../mod/settings.php:1082
+#: ../../mod/settings.php:1099
 msgid "Account Settings"
 msgstr "Kontoinnstillinger"
 
-#: ../../mod/settings.php:1090
+#: ../../mod/settings.php:1107
 msgid "Password Settings"
 msgstr "Passordinnstillinger"
 
-#: ../../mod/settings.php:1091
+#: ../../mod/settings.php:1108
 msgid "New Password:"
 msgstr "Nytt passord:"
 
-#: ../../mod/settings.php:1092
+#: ../../mod/settings.php:1109
 msgid "Confirm:"
 msgstr "Bekreft:"
 
-#: ../../mod/settings.php:1092
+#: ../../mod/settings.php:1109
 msgid "Leave password fields blank unless changing"
 msgstr "La passordfeltene stå tomme hvis du ikke skal bytte"
 
-#: ../../mod/settings.php:1093
+#: ../../mod/settings.php:1110
 msgid "Current Password:"
 msgstr "Gjeldende passord:"
 
-#: ../../mod/settings.php:1093 ../../mod/settings.php:1094
+#: ../../mod/settings.php:1110 ../../mod/settings.php:1111
 msgid "Your current password to confirm the changes"
 msgstr "Ditt gjeldende passord for å bekrefte endringene"
 
-#: ../../mod/settings.php:1094
+#: ../../mod/settings.php:1111
 msgid "Password:"
 msgstr "Passord:"
 
-#: ../../mod/settings.php:1098
+#: ../../mod/settings.php:1115
 msgid "Basic Settings"
 msgstr "Grunninnstillinger"
 
-#: ../../mod/settings.php:1099 ../../include/profile_advanced.php:15
+#: ../../mod/settings.php:1116 ../../include/profile_advanced.php:15
 msgid "Full Name:"
 msgstr "Fullt navn:"
 
-#: ../../mod/settings.php:1100
+#: ../../mod/settings.php:1117
 msgid "Email Address:"
 msgstr "E-postadresse:"
 
-#: ../../mod/settings.php:1101
+#: ../../mod/settings.php:1118
 msgid "Your Timezone:"
 msgstr "Din tidssone:"
 
-#: ../../mod/settings.php:1102
+#: ../../mod/settings.php:1119
 msgid "Default Post Location:"
 msgstr "Standard oppholdssted når du poster:"
 
-#: ../../mod/settings.php:1103
+#: ../../mod/settings.php:1120
 msgid "Use Browser Location:"
 msgstr "Bruk nettleserens oppholdssted:"
 
-#: ../../mod/settings.php:1106
+#: ../../mod/settings.php:1123
 msgid "Security and Privacy Settings"
 msgstr "Sikkerhet og privatlivsinnstillinger"
 
-#: ../../mod/settings.php:1108
+#: ../../mod/settings.php:1125
 msgid "Maximum Friend Requests/Day:"
 msgstr "Maksimum venneforespørsler/dag:"
 
-#: ../../mod/settings.php:1108 ../../mod/settings.php:1138
+#: ../../mod/settings.php:1125 ../../mod/settings.php:1155
 msgid "(to prevent spam abuse)"
 msgstr "(for å forhindre søppelpost)"
 
-#: ../../mod/settings.php:1109
+#: ../../mod/settings.php:1126
 msgid "Default Post Permissions"
 msgstr "Standardtillatelser ved posting"
 
-#: ../../mod/settings.php:1110
+#: ../../mod/settings.php:1127
 msgid "(click to open/close)"
 msgstr "(klikk for å åpne/lukke)"
 
-#: ../../mod/settings.php:1119 ../../mod/photos.php:1140
-#: ../../mod/photos.php:1506
+#: ../../mod/settings.php:1136 ../../mod/photos.php:1144
+#: ../../mod/photos.php:1515
 msgid "Show to Groups"
 msgstr "Vis til grupper"
 
-#: ../../mod/settings.php:1120 ../../mod/photos.php:1141
-#: ../../mod/photos.php:1507
+#: ../../mod/settings.php:1137 ../../mod/photos.php:1145
+#: ../../mod/photos.php:1516
 msgid "Show to Contacts"
 msgstr "Vis til kontakter"
 
-#: ../../mod/settings.php:1121
+#: ../../mod/settings.php:1138
 msgid "Default Private Post"
 msgstr "Standard privat innlegg"
 
-#: ../../mod/settings.php:1122
+#: ../../mod/settings.php:1139
 msgid "Default Public Post"
 msgstr "Standard offentlig innlegg"
 
-#: ../../mod/settings.php:1126
+#: ../../mod/settings.php:1143
 msgid "Default Permissions for New Posts"
 msgstr "Standard tillatelser for nye innlegg"
 
-#: ../../mod/settings.php:1138
+#: ../../mod/settings.php:1155
 msgid "Maximum private messages per day from unknown people:"
 msgstr "Maksimalt antall private meldinger per dag fra ukjente personer:"
 
-#: ../../mod/settings.php:1141
+#: ../../mod/settings.php:1158
 msgid "Notification Settings"
 msgstr "Beskjedinnstillinger"
 
-#: ../../mod/settings.php:1142
+#: ../../mod/settings.php:1159
 msgid "By default post a status message when:"
 msgstr "Standard å legge inn en statusmelding når:"
 
-#: ../../mod/settings.php:1143
+#: ../../mod/settings.php:1160
 msgid "accepting a friend request"
 msgstr "aksepterer en venneforespørsel"
 
-#: ../../mod/settings.php:1144
+#: ../../mod/settings.php:1161
 msgid "joining a forum/community"
 msgstr "blir med i et forum/fellesskap"
 
-#: ../../mod/settings.php:1145
+#: ../../mod/settings.php:1162
 msgid "making an <em>interesting</em> profile change"
 msgstr "gjør en <em>interessant</em> profilendring"
 
-#: ../../mod/settings.php:1146
+#: ../../mod/settings.php:1163
 msgid "Send a notification email when:"
 msgstr "Send en e-post med beskjed når:"
 
-#: ../../mod/settings.php:1147
+#: ../../mod/settings.php:1164
 msgid "You receive an introduction"
 msgstr "Du mottar en introduksjon"
 
-#: ../../mod/settings.php:1148
+#: ../../mod/settings.php:1165
 msgid "Your introductions are confirmed"
 msgstr "Dine introduksjoner er bekreftet"
 
-#: ../../mod/settings.php:1149
+#: ../../mod/settings.php:1166
 msgid "Someone writes on your profile wall"
 msgstr "Noen skriver på veggen til profilen din"
 
-#: ../../mod/settings.php:1150
+#: ../../mod/settings.php:1167
 msgid "Someone writes a followup comment"
 msgstr "Noen skriver en oppfølgingskommentar"
 
-#: ../../mod/settings.php:1151
+#: ../../mod/settings.php:1168
 msgid "You receive a private message"
 msgstr "Du mottar en privat melding"
 
-#: ../../mod/settings.php:1152
+#: ../../mod/settings.php:1169
 msgid "You receive a friend suggestion"
 msgstr "Du mottar et venneforslag"
 
-#: ../../mod/settings.php:1153
+#: ../../mod/settings.php:1170
 msgid "You are tagged in a post"
 msgstr "Du er merket i et innlegg"
 
-#: ../../mod/settings.php:1154
+#: ../../mod/settings.php:1171
 msgid "You are poked/prodded/etc. in a post"
 msgstr "Du er dyttet/dultet/etc i et innlegg"
 
-#: ../../mod/settings.php:1157
+#: ../../mod/settings.php:1174
 msgid "Advanced Account/Page Type Settings"
 msgstr "Avanserte konto-/sidetype-innstillinger"
 
-#: ../../mod/settings.php:1158
+#: ../../mod/settings.php:1175
 msgid "Change the behaviour of this account for special situations"
 msgstr "Endre oppførselen til denne kontoen i spesielle situasjoner"
 
-#: ../../mod/settings.php:1161
+#: ../../mod/settings.php:1178
 msgid "Relocate"
 msgstr "Omplasser"
 
-#: ../../mod/settings.php:1162
+#: ../../mod/settings.php:1179
 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 "Hvis du har flyttet denne profilen fra en annen tjener, og noen av dine kontakter ikke mottar dine oppdateringer, prøv å trykke denne knappen."
 
-#: ../../mod/settings.php:1163
+#: ../../mod/settings.php:1180
 msgid "Resend relocate message to contacts"
 msgstr "Send omplasseringsmelding på nytt til kontakter"
 
@@ -4191,265 +4210,265 @@ msgstr "Profilen er utilgjengelig for kloning."
 msgid "Profile Name is required."
 msgstr "Profilnavn er påkrevet."
 
-#: ../../mod/profiles.php:317
+#: ../../mod/profiles.php:321
 msgid "Marital Status"
 msgstr "Ekteskapelig status"
 
-#: ../../mod/profiles.php:321
+#: ../../mod/profiles.php:325
 msgid "Romantic Partner"
 msgstr "Romantisk partner"
 
-#: ../../mod/profiles.php:325
+#: ../../mod/profiles.php:329
 msgid "Likes"
 msgstr "Liker"
 
-#: ../../mod/profiles.php:329
+#: ../../mod/profiles.php:333
 msgid "Dislikes"
 msgstr "Liker ikke"
 
-#: ../../mod/profiles.php:333
+#: ../../mod/profiles.php:337
 msgid "Work/Employment"
 msgstr "Arbeid/ansatt hos"
 
-#: ../../mod/profiles.php:336
+#: ../../mod/profiles.php:340
 msgid "Religion"
 msgstr "Religion"
 
-#: ../../mod/profiles.php:340
+#: ../../mod/profiles.php:344
 msgid "Political Views"
 msgstr "Politisk ståsted"
 
-#: ../../mod/profiles.php:344
+#: ../../mod/profiles.php:348
 msgid "Gender"
 msgstr "Kjønn"
 
-#: ../../mod/profiles.php:348
+#: ../../mod/profiles.php:352
 msgid "Sexual Preference"
 msgstr "Seksuell orientering"
 
-#: ../../mod/profiles.php:352
+#: ../../mod/profiles.php:356
 msgid "Homepage"
 msgstr "Hjemmeside"
 
-#: ../../mod/profiles.php:356
+#: ../../mod/profiles.php:360
 msgid "Interests"
 msgstr "Interesser"
 
-#: ../../mod/profiles.php:360
+#: ../../mod/profiles.php:364
 msgid "Address"
 msgstr "Adresse"
 
-#: ../../mod/profiles.php:367
+#: ../../mod/profiles.php:371
 msgid "Location"
 msgstr "Plassering"
 
-#: ../../mod/profiles.php:450
+#: ../../mod/profiles.php:454
 msgid "Profile updated."
 msgstr "Profil oppdatert."
 
-#: ../../mod/profiles.php:521
+#: ../../mod/profiles.php:525
 msgid " and "
 msgstr "og"
 
-#: ../../mod/profiles.php:529
+#: ../../mod/profiles.php:533
 msgid "public profile"
 msgstr "offentlig profil"
 
-#: ../../mod/profiles.php:532
+#: ../../mod/profiles.php:536
 #, php-format
 msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
 msgstr "%1$s endret %2$s til &ldquo;%3$s&rdquo;"
 
-#: ../../mod/profiles.php:533
+#: ../../mod/profiles.php:537
 #, php-format
 msgid " - Visit %1$s's %2$s"
 msgstr "- Besøk %1$s sin %2$s"
 
-#: ../../mod/profiles.php:536
+#: ../../mod/profiles.php:540
 #, php-format
 msgid "%1$s has an updated %2$s, changing %3$s."
 msgstr "%1$s har oppdatert %2$s, endret %3$s."
 
-#: ../../mod/profiles.php:609
+#: ../../mod/profiles.php:613
 msgid "Hide your contact/friend list from viewers of this profile?"
 msgstr "Skjul kontakten/vennen din fra folk som kan se denne profilen?"
 
-#: ../../mod/profiles.php:629
+#: ../../mod/profiles.php:633
 msgid "Edit Profile Details"
 msgstr "Endre profildetaljer"
 
-#: ../../mod/profiles.php:631
+#: ../../mod/profiles.php:635
 msgid "Change Profile Photo"
 msgstr "Endre profilbilde"
 
-#: ../../mod/profiles.php:632
+#: ../../mod/profiles.php:636
 msgid "View this profile"
 msgstr "Vis denne profilen"
 
-#: ../../mod/profiles.php:633
+#: ../../mod/profiles.php:637
 msgid "Create a new profile using these settings"
 msgstr "Opprett en ny profil med disse innstillingene"
 
-#: ../../mod/profiles.php:634
+#: ../../mod/profiles.php:638
 msgid "Clone this profile"
 msgstr "Klon denne profilen"
 
-#: ../../mod/profiles.php:635
+#: ../../mod/profiles.php:639
 msgid "Delete this profile"
 msgstr "Slette denne profilen"
 
-#: ../../mod/profiles.php:636
+#: ../../mod/profiles.php:640
 msgid "Profile Name:"
 msgstr "Profilnavn:"
 
-#: ../../mod/profiles.php:637
+#: ../../mod/profiles.php:641
 msgid "Your Full Name:"
 msgstr "Ditt fulle navn:"
 
-#: ../../mod/profiles.php:638
+#: ../../mod/profiles.php:642
 msgid "Title/Description:"
 msgstr "Tittel/Beskrivelse:"
 
-#: ../../mod/profiles.php:639
+#: ../../mod/profiles.php:643
 msgid "Your Gender:"
 msgstr "Ditt kjønn:"
 
-#: ../../mod/profiles.php:640
+#: ../../mod/profiles.php:644
 #, php-format
 msgid "Birthday (%s):"
 msgstr "Fødselsdag (%s):"
 
-#: ../../mod/profiles.php:641
+#: ../../mod/profiles.php:645
 msgid "Street Address:"
 msgstr "Gateadresse:"
 
-#: ../../mod/profiles.php:642
+#: ../../mod/profiles.php:646
 msgid "Locality/City:"
 msgstr "Plassering/by:"
 
-#: ../../mod/profiles.php:643
+#: ../../mod/profiles.php:647
 msgid "Postal/Zip Code:"
 msgstr "Postnummer:"
 
-#: ../../mod/profiles.php:644
+#: ../../mod/profiles.php:648
 msgid "Country:"
 msgstr "Land:"
 
-#: ../../mod/profiles.php:645
+#: ../../mod/profiles.php:649
 msgid "Region/State:"
 msgstr "Region/fylke:"
 
-#: ../../mod/profiles.php:646
+#: ../../mod/profiles.php:650
 msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
 msgstr "<span class=\"heart\">&hearts;</span> Sivilstand:"
 
-#: ../../mod/profiles.php:647
+#: ../../mod/profiles.php:651
 msgid "Who: (if applicable)"
 msgstr "Hvem: (hvis gjeldende)"
 
-#: ../../mod/profiles.php:648
+#: ../../mod/profiles.php:652
 msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
 msgstr "Eksempler: kari123, Kari Nordmann, kari@example.com"
 
-#: ../../mod/profiles.php:649
+#: ../../mod/profiles.php:653
 msgid "Since [date]:"
 msgstr "Fra [dato]:"
 
-#: ../../mod/profiles.php:650 ../../include/profile_advanced.php:46
+#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:46
 msgid "Sexual Preference:"
 msgstr "Seksuell orientering:"
 
-#: ../../mod/profiles.php:651
+#: ../../mod/profiles.php:655
 msgid "Homepage URL:"
 msgstr "Hjemmeside URL:"
 
-#: ../../mod/profiles.php:652 ../../include/profile_advanced.php:50
+#: ../../mod/profiles.php:656 ../../include/profile_advanced.php:50
 msgid "Hometown:"
 msgstr "Hjemsted:"
 
-#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:54
+#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:54
 msgid "Political Views:"
 msgstr "Politisk ståsted:"
 
-#: ../../mod/profiles.php:654
+#: ../../mod/profiles.php:658
 msgid "Religious Views:"
 msgstr "Religiøst ståsted:"
 
-#: ../../mod/profiles.php:655
+#: ../../mod/profiles.php:659
 msgid "Public Keywords:"
 msgstr "Offentlige nøkkelord:"
 
-#: ../../mod/profiles.php:656
+#: ../../mod/profiles.php:660
 msgid "Private Keywords:"
 msgstr "Private nøkkelord:"
 
-#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:62
+#: ../../mod/profiles.php:661 ../../include/profile_advanced.php:62
 msgid "Likes:"
 msgstr "Liker:"
 
-#: ../../mod/profiles.php:658 ../../include/profile_advanced.php:64
+#: ../../mod/profiles.php:662 ../../include/profile_advanced.php:64
 msgid "Dislikes:"
 msgstr "Liker ikke:"
 
-#: ../../mod/profiles.php:659
+#: ../../mod/profiles.php:663
 msgid "Example: fishing photography software"
 msgstr "Eksempel: fisking fotografering programvare"
 
-#: ../../mod/profiles.php:660
+#: ../../mod/profiles.php:664
 msgid "(Used for suggesting potential friends, can be seen by others)"
 msgstr "(Brukes for å foreslå mulige venner, kan ses av andre)"
 
-#: ../../mod/profiles.php:661
+#: ../../mod/profiles.php:665
 msgid "(Used for searching profiles, never shown to others)"
 msgstr "(Brukes for å søke i profiler, vises aldri til andre)"
 
-#: ../../mod/profiles.php:662
+#: ../../mod/profiles.php:666
 msgid "Tell us about yourself..."
 msgstr "Fortell oss om deg selv..."
 
-#: ../../mod/profiles.php:663
+#: ../../mod/profiles.php:667
 msgid "Hobbies/Interests"
 msgstr "Hobbier/interesser"
 
-#: ../../mod/profiles.php:664
+#: ../../mod/profiles.php:668
 msgid "Contact information and Social Networks"
 msgstr "Kontaktinformasjon og sosiale nettverk"
 
-#: ../../mod/profiles.php:665
+#: ../../mod/profiles.php:669
 msgid "Musical interests"
 msgstr "Musikksmak"
 
-#: ../../mod/profiles.php:666
+#: ../../mod/profiles.php:670
 msgid "Books, literature"
 msgstr "Bøker, litteratur"
 
-#: ../../mod/profiles.php:667
+#: ../../mod/profiles.php:671
 msgid "Television"
 msgstr "TV"
 
-#: ../../mod/profiles.php:668
+#: ../../mod/profiles.php:672
 msgid "Film/dance/culture/entertainment"
 msgstr "Film/dans/kultur/underholdning"
 
-#: ../../mod/profiles.php:669
+#: ../../mod/profiles.php:673
 msgid "Love/romance"
 msgstr "Kjærlighet/romanse"
 
-#: ../../mod/profiles.php:670
+#: ../../mod/profiles.php:674
 msgid "Work/employment"
 msgstr "Arbeid/ansatt hos"
 
-#: ../../mod/profiles.php:671
+#: ../../mod/profiles.php:675
 msgid "School/education"
 msgstr "Skole/utdanning"
 
-#: ../../mod/profiles.php:676
+#: ../../mod/profiles.php:680
 msgid ""
 "This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
 "be visible to anybody using the internet."
 msgstr "Dette er din <strong>offentlige</strong> profil.<br>Den <strong>kan</strong> ses av alle på Internet."
 
-#: ../../mod/profiles.php:725
+#: ../../mod/profiles.php:729
 msgid "Edit/Manage Profiles"
 msgstr "Rediger/Behandle profiler"
 
@@ -4565,7 +4584,7 @@ msgstr "Ingen flere systemvarsler."
 msgid "System Notifications"
 msgstr "Systemvarsler"
 
-#: ../../mod/message.php:9 ../../include/nav.php:159
+#: ../../mod/message.php:9 ../../include/nav.php:161
 msgid "New Message"
 msgstr "Ny melding"
 
@@ -4574,7 +4593,7 @@ msgid "Unable to locate contact information."
 msgstr "Mislyktes med å finne kontaktinformasjon."
 
 #: ../../mod/message.php:182 ../../mod/notifications.php:103
-#: ../../include/nav.php:156
+#: ../../include/nav.php:158
 msgid "Messages"
 msgstr "Meldinger"
 
@@ -4642,7 +4661,7 @@ msgstr "Ingen sikker kommunikasjon tilgjengelig. Du <strong>kan kanskje</strong>
 msgid "Send Reply"
 msgstr "Send svar"
 
-#: ../../mod/like.php:170 ../../include/conversation.php:140
+#: ../../mod/like.php:169 ../../include/conversation.php:140
 #, php-format
 msgid "%1$s doesn't like %2$s's %3$s"
 msgstr "%1$s liker ikke %2$s's %3$s"
@@ -4652,7 +4671,7 @@ msgid "Post successful."
 msgstr "Innlegg vellykket."
 
 #: ../../mod/localtime.php:12 ../../include/event.php:11
-#: ../../include/bb2diaspora.php:393
+#: ../../include/bb2diaspora.php:133
 msgid "l F d, Y \\@ g:i A"
 msgstr "l F d, Y \\@ g:i A"
 
@@ -4685,8 +4704,8 @@ msgstr "Konvertert lokaltid: %s"
 msgid "Please select your timezone:"
 msgstr "Vennligst velg din tidssone:"
 
-#: ../../mod/filer.php:30 ../../include/conversation.php:1001
-#: ../../include/conversation.php:1019
+#: ../../mod/filer.php:30 ../../include/conversation.php:1004
+#: ../../include/conversation.php:1022
 msgid "Save to Folder:"
 msgstr "Lagre til mappe:"
 
@@ -4714,7 +4733,7 @@ msgstr "Alle kontakter (med sikret profiltilgang)"
 msgid "No contacts."
 msgstr "Ingen kontakter."
 
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:857
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:861
 msgid "View Contacts"
 msgstr "Vis kontakter"
 
@@ -4726,201 +4745,210 @@ msgstr "Personsøk"
 msgid "No matches"
 msgstr "Ingen treff"
 
-#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795
+#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1810
 msgid "Upload New Photos"
 msgstr "Last opp nye bilder"
 
-#: ../../mod/photos.php:143
+#: ../../mod/photos.php:144
 msgid "Contact information unavailable"
 msgstr "Kontaktinformasjon utilgjengelig"
 
-#: ../../mod/photos.php:164
+#: ../../mod/photos.php:165
 msgid "Album not found."
 msgstr "Album ble ikke funnet."
 
-#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200
+#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
 msgid "Delete Album"
 msgstr "Slett album"
 
-#: ../../mod/photos.php:197
+#: ../../mod/photos.php:198
 msgid "Do you really want to delete this photo album and all its photos?"
 msgstr "Ønsker du virkelig å slette dette fotoalbumet og alle bildene i det?"
 
-#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502
+#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511
 msgid "Delete Photo"
 msgstr "Slett bilde"
 
-#: ../../mod/photos.php:285
+#: ../../mod/photos.php:287
 msgid "Do you really want to delete this photo?"
 msgstr "Ønsker du virkelig å slette dette bildet?"
 
-#: ../../mod/photos.php:656
+#: ../../mod/photos.php:660
 #, php-format
 msgid "%1$s was tagged in %2$s by %3$s"
 msgstr "%1$s ble merket i %2$s av %3$s"
 
-#: ../../mod/photos.php:656
+#: ../../mod/photos.php:660
 msgid "a photo"
 msgstr "et bilde"
 
-#: ../../mod/photos.php:761
+#: ../../mod/photos.php:765
 msgid "Image exceeds size limit of "
 msgstr "Bilde overstiger størrelsesbegrensningen på "
 
-#: ../../mod/photos.php:769
+#: ../../mod/photos.php:773
 msgid "Image file is empty."
 msgstr "Bildefilen er tom."
 
-#: ../../mod/photos.php:801 ../../mod/wall_upload.php:112
+#: ../../mod/photos.php:805 ../../mod/wall_upload.php:112
 #: ../../mod/profile_photo.php:153
 msgid "Unable to process image."
 msgstr "Ikke i stand til å behandle bildet."
 
-#: ../../mod/photos.php:828 ../../mod/wall_upload.php:138
+#: ../../mod/photos.php:832 ../../mod/wall_upload.php:138
 #: ../../mod/profile_photo.php:301
 msgid "Image upload failed."
 msgstr "Mislyktes med å laste opp bilde."
 
-#: ../../mod/photos.php:924
+#: ../../mod/photos.php:928
 msgid "No photos selected"
 msgstr "Ingen bilder er valgt"
 
-#: ../../mod/photos.php:1025 ../../mod/videos.php:226
+#: ../../mod/photos.php:1029 ../../mod/videos.php:226
 msgid "Access to this item is restricted."
 msgstr "Tilgang til dette elementet er begrenset."
 
-#: ../../mod/photos.php:1088
+#: ../../mod/photos.php:1092
 #, php-format
 msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
 msgstr "Du har brukt %1$.2f Mbytes av %2$.2f Mbytes bildelagring."
 
-#: ../../mod/photos.php:1123
+#: ../../mod/photos.php:1127
 msgid "Upload Photos"
 msgstr "Last opp bilder"
 
-#: ../../mod/photos.php:1127 ../../mod/photos.php:1195
+#: ../../mod/photos.php:1131 ../../mod/photos.php:1199
 msgid "New album name: "
 msgstr "Nytt albumnavn:"
 
-#: ../../mod/photos.php:1128
+#: ../../mod/photos.php:1132
 msgid "or existing album name: "
 msgstr "eller eksisterende albumnavn:"
 
-#: ../../mod/photos.php:1129
+#: ../../mod/photos.php:1133
 msgid "Do not show a status post for this upload"
 msgstr "Ikke vis statusoppdatering for denne opplastingen"
 
-#: ../../mod/photos.php:1131 ../../mod/photos.php:1497
+#: ../../mod/photos.php:1135 ../../mod/photos.php:1506
 msgid "Permissions"
 msgstr "Tillatelser"
 
-#: ../../mod/photos.php:1142
+#: ../../mod/photos.php:1146
 msgid "Private Photo"
 msgstr "Privat bilde"
 
-#: ../../mod/photos.php:1143
+#: ../../mod/photos.php:1147
 msgid "Public Photo"
 msgstr "Offentlig bilde"
 
-#: ../../mod/photos.php:1210
+#: ../../mod/photos.php:1214
 msgid "Edit Album"
 msgstr "Endre album"
 
-#: ../../mod/photos.php:1216
+#: ../../mod/photos.php:1220
 msgid "Show Newest First"
 msgstr "Vis nyeste først"
 
-#: ../../mod/photos.php:1218
+#: ../../mod/photos.php:1222
 msgid "Show Oldest First"
 msgstr "Vis eldste først"
 
-#: ../../mod/photos.php:1251 ../../mod/photos.php:1778
+#: ../../mod/photos.php:1255 ../../mod/photos.php:1793
 msgid "View Photo"
 msgstr "Vis bilde"
 
-#: ../../mod/photos.php:1286
+#: ../../mod/photos.php:1290
 msgid "Permission denied. Access to this item may be restricted."
 msgstr "Tilgang nektet. Tilgang til dette elementet kan være begrenset."
 
-#: ../../mod/photos.php:1288
+#: ../../mod/photos.php:1292
 msgid "Photo not available"
 msgstr "Bilde ikke tilgjengelig"
 
-#: ../../mod/photos.php:1344
+#: ../../mod/photos.php:1348
 msgid "View photo"
 msgstr "Vis foto"
 
-#: ../../mod/photos.php:1344
+#: ../../mod/photos.php:1348
 msgid "Edit photo"
 msgstr "Endre bilde"
 
-#: ../../mod/photos.php:1345
+#: ../../mod/photos.php:1349
 msgid "Use as profile photo"
 msgstr "Bruk som profilbilde"
 
-#: ../../mod/photos.php:1370
+#: ../../mod/photos.php:1374
 msgid "View Full Size"
 msgstr "Vis i full størrelse"
 
-#: ../../mod/photos.php:1444
+#: ../../mod/photos.php:1453
 msgid "Tags: "
 msgstr "Tagger:"
 
-#: ../../mod/photos.php:1447
+#: ../../mod/photos.php:1456
 msgid "[Remove any tag]"
 msgstr "[Fjern en tag]"
 
-#: ../../mod/photos.php:1487
+#: ../../mod/photos.php:1496
 msgid "Rotate CW (right)"
 msgstr "Roter med klokka (høyre)"
 
-#: ../../mod/photos.php:1488
+#: ../../mod/photos.php:1497
 msgid "Rotate CCW (left)"
 msgstr "Roter mot klokka (venstre)"
 
-#: ../../mod/photos.php:1490
+#: ../../mod/photos.php:1499
 msgid "New album name"
 msgstr "Nytt albumnavn"
 
-#: ../../mod/photos.php:1493
+#: ../../mod/photos.php:1502
 msgid "Caption"
 msgstr "Overskrift"
 
-#: ../../mod/photos.php:1495
+#: ../../mod/photos.php:1504
 msgid "Add a Tag"
 msgstr "Legg til tag"
 
-#: ../../mod/photos.php:1499
+#: ../../mod/photos.php:1508
 msgid ""
 "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: ../../mod/photos.php:1508
+#: ../../mod/photos.php:1517
 msgid "Private photo"
 msgstr "Privat bilde"
 
-#: ../../mod/photos.php:1509
+#: ../../mod/photos.php:1518
 msgid "Public photo"
 msgstr "Offentlig bilde"
 
-#: ../../mod/photos.php:1531 ../../include/conversation.php:1080
+#: ../../mod/photos.php:1540 ../../include/conversation.php:1083
 msgid "Share"
 msgstr "Del"
 
-#: ../../mod/photos.php:1784 ../../mod/videos.php:308
+#: ../../mod/photos.php:1799 ../../mod/videos.php:308
 msgid "View Album"
 msgstr "Vis album"
 
-#: ../../mod/photos.php:1793
+#: ../../mod/photos.php:1808
 msgid "Recent Photos"
 msgstr "Nye bilder"
 
-#: ../../mod/wall_attach.php:69
+#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Beklager, din opplasting er kanskje større enn PHP-konfigurasjonen tillater"
+
+#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75
+msgid "Or - did you try to upload an empty file?"
+msgstr "Eller - forsøkte du å laste opp en tom fil?"
+
+#: ../../mod/wall_attach.php:81 ../../wall_attach.php:81
 #, php-format
 msgid "File exceeds size limit of %d"
 msgstr "Filstørrelsen er større enn begrensning på %d"
 
-#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
+#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
+#: ../../wall_attach.php:122 ../../wall_attach.php:133
 msgid "File upload failed."
 msgstr "Opplasting av filen mislyktes."
 
@@ -4928,7 +4956,7 @@ msgstr "Opplasting av filen mislyktes."
 msgid "No videos selected"
 msgstr "Ingen videoer er valgt"
 
-#: ../../mod/videos.php:301 ../../include/text.php:1383
+#: ../../mod/videos.php:301 ../../include/text.php:1387
 msgid "View Video"
 msgstr "Vis video"
 
@@ -4965,21 +4993,21 @@ msgstr "Gjør dette innlegget privat"
 msgid "%1$s is following %2$s's %3$s"
 msgstr "%1$s følger %2$s sin %3$s"
 
-#: ../../mod/uexport.php:72
+#: ../../mod/uexport.php:77
 msgid "Export account"
 msgstr "Eksporter konto"
 
-#: ../../mod/uexport.php:72
+#: ../../mod/uexport.php:77
 msgid ""
 "Export your account info and contacts. Use this to make a backup of your "
 "account and/or to move it to another server."
 msgstr "Eksporter din kontos informasjon og kontakter. Bruk denne til å ta en sikkerhetskopi av kontoen din og/eller for å flytte til en annen tjener."
 
-#: ../../mod/uexport.php:73
+#: ../../mod/uexport.php:78
 msgid "Export all"
 msgstr "Eksporter alt"
 
-#: ../../mod/uexport.php:73
+#: ../../mod/uexport.php:78
 msgid ""
 "Export your accout info, contacts and all your items as json. Could be a "
 "very big file, and could take a lot of time. Use this to make a full backup "
@@ -5000,7 +5028,7 @@ msgid "Image exceeds size limit of %d"
 msgstr "Bildets størrelse overstiger størrelsesbegrensningen på %d"
 
 #: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
-#: ../../mod/wall_upload.php:151 ../../mod/item.php:453
+#: ../../mod/wall_upload.php:151 ../../mod/item.php:455
 #: ../../include/message.php:144
 msgid "Wall Photos"
 msgstr "Veggbilder"
@@ -5101,7 +5129,7 @@ msgstr "Fjern tag"
 msgid "Select a tag to remove: "
 msgstr "Velg en tag å fjerne:"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133
 msgid "Remove"
 msgstr "Slett"
 
@@ -5117,7 +5145,8 @@ msgstr "l, F j"
 msgid "Edit event"
 msgstr "Rediger hendelse"
 
-#: ../../mod/events.php:335 ../../include/text.php:1615
+#: ../../mod/events.php:335 ../../include/text.php:1620
+#: ../../include/text.php:1631
 msgid "link to source"
 msgstr "lenke til kilde"
 
@@ -5178,34 +5207,34 @@ msgstr "Del denne hendelsen"
 msgid "No potential page delegates located."
 msgstr "Fant ingen potensielle sidedelegater."
 
-#: ../../mod/delegate.php:121 ../../include/nav.php:165
+#: ../../mod/delegate.php:124 ../../include/nav.php:167
 msgid "Delegate Page Management"
 msgstr "Deleger sidebehandling"
 
-#: ../../mod/delegate.php:123
+#: ../../mod/delegate.php:126
 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 "Delegater kan behandle alle sider ved denne kontoen/siden, bortsett fra grunnleggende kontoinnstillinger. Vennligst ikke deleger din personlige konto til noen som du ikke stoler fullt og fast på."
 
-#: ../../mod/delegate.php:124
+#: ../../mod/delegate.php:127
 msgid "Existing Page Managers"
 msgstr "Eksisterende sidebehandlere"
 
-#: ../../mod/delegate.php:126
+#: ../../mod/delegate.php:129
 msgid "Existing Page Delegates"
 msgstr "Eksisterende sidedelegater"
 
-#: ../../mod/delegate.php:128
+#: ../../mod/delegate.php:131
 msgid "Potential Delegates"
 msgstr "Mulige delegater"
 
-#: ../../mod/delegate.php:131
+#: ../../mod/delegate.php:134
 msgid "Add"
 msgstr "Legg til"
 
-#: ../../mod/delegate.php:132
+#: ../../mod/delegate.php:135
 msgid "No entries."
 msgstr "Ingen oppføringer"
 
@@ -5248,37 +5277,37 @@ msgstr "Foreslå venner"
 msgid "Suggest a friend for %s"
 msgstr "Foreslå en venn for %s"
 
-#: ../../mod/item.php:108
+#: ../../mod/item.php:110
 msgid "Unable to locate original post."
 msgstr "Mislyktes med å lokalisere opprinnelig melding."
 
-#: ../../mod/item.php:317
+#: ../../mod/item.php:319
 msgid "Empty post discarded."
 msgstr "Tom melding forkastet."
 
-#: ../../mod/item.php:884
+#: ../../mod/item.php:891
 msgid "System error. Post not saved."
 msgstr "Systemfeil. Meldingen ble ikke lagret."
 
-#: ../../mod/item.php:909
+#: ../../mod/item.php:917
 #, php-format
 msgid ""
 "This message was sent to you by %s, a member of the Friendica social "
 "network."
 msgstr "Denne meldingen ble sendt til deg av %s, et medlem av det sosiale nettverket Friendica."
 
-#: ../../mod/item.php:911
+#: ../../mod/item.php:919
 #, php-format
 msgid "You may visit them online at %s"
 msgstr "Du kan besøke dem online på %s"
 
-#: ../../mod/item.php:912
+#: ../../mod/item.php:920
 msgid ""
 "Please contact the sender by replying to this post if you do not wish to "
 "receive these messages."
 msgstr "Vennligst kontakt avsenderen ved å svare på denne meldingen hvis du ikke ønsker å motta disse meldingene."
 
-#: ../../mod/item.php:916
+#: ../../mod/item.php:924
 #, php-format
 msgid "%s posted an update."
 msgstr "%s postet en oppdatering."
@@ -5355,11 +5384,11 @@ msgstr "Forkast"
 msgid "System"
 msgstr "System"
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:140
+#: ../../mod/notifications.php:83 ../../include/nav.php:142
 msgid "Network"
 msgstr "Nettverk"
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:149
+#: ../../mod/notifications.php:98 ../../include/nav.php:151
 msgid "Introductions"
 msgstr "Introduksjoner"
 
@@ -5432,7 +5461,7 @@ msgstr "Ny følgesvenn"
 msgid "No introductions."
 msgstr "Ingen introduksjoner."
 
-#: ../../mod/notifications.php:220 ../../include/nav.php:150
+#: ../../mod/notifications.php:220 ../../include/nav.php:152
 msgid "Notifications"
 msgstr "Varslinger"
 
@@ -5656,7 +5685,7 @@ msgstr "Nettverk"
 msgid "All Networks"
 msgstr "Alle nettverk"
 
-#: ../../include/contact_widgets.php:103 ../../include/features.php:59
+#: ../../include/contact_widgets.php:103 ../../include/features.php:60
 msgid "Saved Folders"
 msgstr "Lagrede mapper"
 
@@ -5680,33 +5709,37 @@ msgstr "Denne handlingen overstiger grensene satt i din abonnementsplan."
 msgid "This action is not available under your subscription plan."
 msgstr "Denne handlingen er ikke tilgjengelig i henhold til din abonnementsplan."
 
-#: ../../include/api.php:255 ../../include/api.php:266
-#: ../../include/api.php:356
+#: ../../include/api.php:263 ../../include/api.php:274
+#: ../../include/api.php:375
 msgid "User not found."
 msgstr "Brukeren ble ikke funnet."
 
-#: ../../include/api.php:1024
+#: ../../include/api.php:1123
 msgid "There is no status with this id."
 msgstr "Det er ingen status tilknyttet denne id-en."
 
-#: ../../include/network.php:883
+#: ../../include/api.php:1193
+msgid "There is no conversation with this id."
+msgstr "Det finnes ingen samtale med denne id-en."
+
+#: ../../include/network.php:886
 msgid "view full size"
 msgstr "Vis i full størrelse"
 
-#: ../../include/event.php:20 ../../include/bb2diaspora.php:399
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:139
 msgid "Starts:"
 msgstr "Starter:"
 
-#: ../../include/event.php:30 ../../include/bb2diaspora.php:407
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:147
 msgid "Finishes:"
 msgstr "Slutter:"
 
-#: ../../include/notifier.php:774 ../../include/delivery.php:457
+#: ../../include/notifier.php:774 ../../include/delivery.php:456
 msgid "(no subject)"
 msgstr "(uten emne)"
 
 #: ../../include/notifier.php:784 ../../include/enotify.php:28
-#: ../../include/delivery.php:468
+#: ../../include/delivery.php:467
 msgid "noreply"
 msgstr "ikke svar"
 
@@ -5798,7 +5831,7 @@ msgstr "Venner"
 msgid "%1$s poked %2$s"
 msgstr "%1$s dyttet %2$s"
 
-#: ../../include/conversation.php:211 ../../include/text.php:986
+#: ../../include/conversation.php:211 ../../include/text.php:990
 msgid "poked"
 msgstr "dyttet"
 
@@ -5811,129 +5844,129 @@ msgstr "innlegg/element"
 msgid "%1$s marked %2$s's %3$s as favorite"
 msgstr "%1$s merket %2$s's %3$s som en favoritt"
 
-#: ../../include/conversation.php:767
+#: ../../include/conversation.php:770
 msgid "remove"
 msgstr "slett"
 
-#: ../../include/conversation.php:771
+#: ../../include/conversation.php:774
 msgid "Delete Selected Items"
 msgstr "Slette valgte elementer"
 
-#: ../../include/conversation.php:870
+#: ../../include/conversation.php:873
 msgid "Follow Thread"
 msgstr "Følg tråd"
 
-#: ../../include/conversation.php:871 ../../include/Contact.php:229
+#: ../../include/conversation.php:874 ../../include/Contact.php:229
 msgid "View Status"
 msgstr "Vis status"
 
-#: ../../include/conversation.php:872 ../../include/Contact.php:230
+#: ../../include/conversation.php:875 ../../include/Contact.php:230
 msgid "View Profile"
 msgstr "Vis profil"
 
-#: ../../include/conversation.php:873 ../../include/Contact.php:231
+#: ../../include/conversation.php:876 ../../include/Contact.php:231
 msgid "View Photos"
 msgstr "Vis bilder"
 
-#: ../../include/conversation.php:874 ../../include/Contact.php:232
+#: ../../include/conversation.php:877 ../../include/Contact.php:232
 #: ../../include/Contact.php:255
 msgid "Network Posts"
 msgstr "Nettverksinnlegg"
 
-#: ../../include/conversation.php:875 ../../include/Contact.php:233
+#: ../../include/conversation.php:878 ../../include/Contact.php:233
 #: ../../include/Contact.php:255
 msgid "Edit Contact"
 msgstr "Endre kontakt"
 
-#: ../../include/conversation.php:876 ../../include/Contact.php:235
+#: ../../include/conversation.php:879 ../../include/Contact.php:235
 #: ../../include/Contact.php:255
 msgid "Send PM"
 msgstr "Send privat melding"
 
-#: ../../include/conversation.php:877 ../../include/Contact.php:228
+#: ../../include/conversation.php:880 ../../include/Contact.php:228
 msgid "Poke"
 msgstr "Dytt"
 
-#: ../../include/conversation.php:939
+#: ../../include/conversation.php:942
 #, php-format
 msgid "%s likes this."
 msgstr "%s liker dette."
 
-#: ../../include/conversation.php:939
+#: ../../include/conversation.php:942
 #, php-format
 msgid "%s doesn't like this."
 msgstr "%s liker ikke dette."
 
-#: ../../include/conversation.php:944
+#: ../../include/conversation.php:947
 #, php-format
 msgid "<span  %1$s>%2$d people</span> like this"
 msgstr "<span %1$s>%2$d personer</span> liker dette"
 
-#: ../../include/conversation.php:947
+#: ../../include/conversation.php:950
 #, php-format
 msgid "<span  %1$s>%2$d people</span> don't like this"
 msgstr "<span %1$s>%2$d personer</span> liker ikke dette"
 
-#: ../../include/conversation.php:961
+#: ../../include/conversation.php:964
 msgid "and"
 msgstr "og"
 
-#: ../../include/conversation.php:967
+#: ../../include/conversation.php:970
 #, php-format
 msgid ", and %d other people"
 msgstr ", og %d andre personer"
 
-#: ../../include/conversation.php:969
+#: ../../include/conversation.php:972
 #, php-format
 msgid "%s like this."
 msgstr "%s liker dette."
 
-#: ../../include/conversation.php:969
+#: ../../include/conversation.php:972
 #, php-format
 msgid "%s don't like this."
 msgstr "%s liker ikke dette."
 
-#: ../../include/conversation.php:996 ../../include/conversation.php:1014
+#: ../../include/conversation.php:999 ../../include/conversation.php:1017
 msgid "Visible to <strong>everybody</strong>"
 msgstr "Synlig for <strong>alle</strong>"
 
-#: ../../include/conversation.php:998 ../../include/conversation.php:1016
+#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
 msgid "Please enter a video link/URL:"
 msgstr "Vennligst skriv inn en videolenke/-URL:"
 
-#: ../../include/conversation.php:999 ../../include/conversation.php:1017
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
 msgid "Please enter an audio link/URL:"
 msgstr "Vennligst skriv inn en lydlenke/-URL:"
 
-#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
+#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
 msgid "Tag term:"
 msgstr "Merkelapp begrep:"
 
-#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
+#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
 msgid "Where are you right now?"
 msgstr "Hvor er du akkurat nå?"
 
-#: ../../include/conversation.php:1003
+#: ../../include/conversation.php:1006
 msgid "Delete item(s)?"
 msgstr "Slett element(er)?"
 
-#: ../../include/conversation.php:1045
+#: ../../include/conversation.php:1048
 msgid "Post to Email"
 msgstr "Innlegg til e-post"
 
-#: ../../include/conversation.php:1101
+#: ../../include/conversation.php:1104
 msgid "permissions"
 msgstr "tillatelser"
 
-#: ../../include/conversation.php:1125
+#: ../../include/conversation.php:1128
 msgid "Post to Groups"
 msgstr "Innlegg til grupper"
 
-#: ../../include/conversation.php:1126
+#: ../../include/conversation.php:1129
 msgid "Post to Contacts"
 msgstr "Innlegg til kontakter"
 
-#: ../../include/conversation.php:1127
+#: ../../include/conversation.php:1130
 msgid "Private post"
 msgstr "Privat innlegg"
 
@@ -5977,262 +6010,262 @@ msgstr[1] "%d kontakter ikke importert"
 msgid "Done. You can now login with your username and password"
 msgstr "Ferdig. Du kan nå logge inn med ditt brukernavn og passord"
 
-#: ../../include/text.php:300
+#: ../../include/text.php:304
 msgid "newer"
 msgstr "nyere"
 
-#: ../../include/text.php:302
+#: ../../include/text.php:306
 msgid "older"
 msgstr "eldre"
 
-#: ../../include/text.php:307
+#: ../../include/text.php:311
 msgid "prev"
 msgstr "forrige"
 
-#: ../../include/text.php:309
+#: ../../include/text.php:313
 msgid "first"
 msgstr "første"
 
-#: ../../include/text.php:341
+#: ../../include/text.php:345
 msgid "last"
 msgstr "siste"
 
-#: ../../include/text.php:344
+#: ../../include/text.php:348
 msgid "next"
 msgstr "neste"
 
-#: ../../include/text.php:836
+#: ../../include/text.php:840
 msgid "No contacts"
 msgstr "Ingen kontakter"
 
-#: ../../include/text.php:845
+#: ../../include/text.php:849
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
 msgstr[0] "%d kontakt"
 msgstr[1] "%d kontakter"
 
-#: ../../include/text.php:986
+#: ../../include/text.php:990
 msgid "poke"
 msgstr "dytt"
 
-#: ../../include/text.php:987
+#: ../../include/text.php:991
 msgid "ping"
 msgstr "ping"
 
-#: ../../include/text.php:987
+#: ../../include/text.php:991
 msgid "pinged"
 msgstr "pinget"
 
-#: ../../include/text.php:988
+#: ../../include/text.php:992
 msgid "prod"
 msgstr "dult"
 
-#: ../../include/text.php:988
+#: ../../include/text.php:992
 msgid "prodded"
 msgstr "dultet"
 
-#: ../../include/text.php:989
+#: ../../include/text.php:993
 msgid "slap"
 msgstr "klaske"
 
-#: ../../include/text.php:989
+#: ../../include/text.php:993
 msgid "slapped"
 msgstr "klasket"
 
-#: ../../include/text.php:990
+#: ../../include/text.php:994
 msgid "finger"
 msgstr "fingre"
 
-#: ../../include/text.php:990
+#: ../../include/text.php:994
 msgid "fingered"
 msgstr "fingret"
 
-#: ../../include/text.php:991
+#: ../../include/text.php:995
 msgid "rebuff"
 msgstr "avslå"
 
-#: ../../include/text.php:991
+#: ../../include/text.php:995
 msgid "rebuffed"
 msgstr "avslo"
 
-#: ../../include/text.php:1005
+#: ../../include/text.php:1009
 msgid "happy"
 msgstr "glad"
 
-#: ../../include/text.php:1006
+#: ../../include/text.php:1010
 msgid "sad"
 msgstr "trist"
 
-#: ../../include/text.php:1007
+#: ../../include/text.php:1011
 msgid "mellow"
 msgstr "dempet"
 
-#: ../../include/text.php:1008
+#: ../../include/text.php:1012
 msgid "tired"
 msgstr "trøtt"
 
-#: ../../include/text.php:1009
+#: ../../include/text.php:1013
 msgid "perky"
 msgstr "oppkvikket"
 
-#: ../../include/text.php:1010
+#: ../../include/text.php:1014
 msgid "angry"
 msgstr "sint"
 
-#: ../../include/text.php:1011
+#: ../../include/text.php:1015
 msgid "stupified"
 msgstr "tanketom"
 
-#: ../../include/text.php:1012
+#: ../../include/text.php:1016
 msgid "puzzled"
 msgstr "forundret"
 
-#: ../../include/text.php:1013
+#: ../../include/text.php:1017
 msgid "interested"
 msgstr "interessert"
 
-#: ../../include/text.php:1014
+#: ../../include/text.php:1018
 msgid "bitter"
 msgstr "bitter"
 
-#: ../../include/text.php:1015
+#: ../../include/text.php:1019
 msgid "cheerful"
 msgstr "munter"
 
-#: ../../include/text.php:1016
+#: ../../include/text.php:1020
 msgid "alive"
 msgstr "livlig"
 
-#: ../../include/text.php:1017
+#: ../../include/text.php:1021
 msgid "annoyed"
 msgstr "irritert"
 
-#: ../../include/text.php:1018
+#: ../../include/text.php:1022
 msgid "anxious"
 msgstr "nervøs"
 
-#: ../../include/text.php:1019
+#: ../../include/text.php:1023
 msgid "cranky"
 msgstr "grinete"
 
-#: ../../include/text.php:1020
+#: ../../include/text.php:1024
 msgid "disturbed"
 msgstr "forstyrret"
 
-#: ../../include/text.php:1021
+#: ../../include/text.php:1025
 msgid "frustrated"
 msgstr "frustrert"
 
-#: ../../include/text.php:1022
+#: ../../include/text.php:1026
 msgid "motivated"
 msgstr "motivert"
 
-#: ../../include/text.php:1023
+#: ../../include/text.php:1027
 msgid "relaxed"
 msgstr "avslappet"
 
-#: ../../include/text.php:1024
+#: ../../include/text.php:1028
 msgid "surprised"
 msgstr "overrasket"
 
-#: ../../include/text.php:1192
+#: ../../include/text.php:1196
 msgid "Monday"
 msgstr "mandag"
 
-#: ../../include/text.php:1192
+#: ../../include/text.php:1196
 msgid "Tuesday"
 msgstr "tirsdag"
 
-#: ../../include/text.php:1192
+#: ../../include/text.php:1196
 msgid "Wednesday"
 msgstr "onsdag"
 
-#: ../../include/text.php:1192
+#: ../../include/text.php:1196
 msgid "Thursday"
 msgstr "torsdag"
 
-#: ../../include/text.php:1192
+#: ../../include/text.php:1196
 msgid "Friday"
 msgstr "fredag"
 
-#: ../../include/text.php:1192
+#: ../../include/text.php:1196
 msgid "Saturday"
 msgstr "lørdag"
 
-#: ../../include/text.php:1192
+#: ../../include/text.php:1196
 msgid "Sunday"
 msgstr "søndag"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1200
 msgid "January"
 msgstr "januar"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1200
 msgid "February"
 msgstr "februar"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1200
 msgid "March"
 msgstr "mars"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1200
 msgid "April"
 msgstr "april"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1200
 msgid "May"
 msgstr "mai"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1200
 msgid "June"
 msgstr "juni"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1200
 msgid "July"
 msgstr "juli"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1200
 msgid "August"
 msgstr "august"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1200
 msgid "September"
 msgstr "september"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1200
 msgid "October"
 msgstr "oktober"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1200
 msgid "November"
 msgstr "november"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1200
 msgid "December"
 msgstr "desember"
 
-#: ../../include/text.php:1415
+#: ../../include/text.php:1419
 msgid "bytes"
 msgstr "bytes"
 
-#: ../../include/text.php:1439 ../../include/text.php:1451
+#: ../../include/text.php:1443 ../../include/text.php:1455
 msgid "Click to open/close"
 msgstr "Klikk for å åpne/lukke"
 
-#: ../../include/text.php:1670
+#: ../../include/text.php:1688
 msgid "Select an alternate language"
 msgstr "Velg et annet språk"
 
-#: ../../include/text.php:1926
+#: ../../include/text.php:1944
 msgid "activity"
 msgstr "aktivitet"
 
-#: ../../include/text.php:1929
+#: ../../include/text.php:1947
 msgid "post"
 msgstr "innlegg"
 
-#: ../../include/text.php:2084
+#: ../../include/text.php:2115
 msgid "Item filed"
 msgstr "Element arkivert"
 
@@ -6278,151 +6311,166 @@ msgstr "en privat melding"
 msgid "Please visit %s to view and/or reply to your private messages."
 msgstr "Vennligst besøk %s for å se og/eller svare på dine private meldinger."
 
-#: ../../include/enotify.php:90
+#: ../../include/enotify.php:91
 #, php-format
 msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
 msgstr "%1$s kommenterte på [url=%2$s]a %3$s[/url]"
 
-#: ../../include/enotify.php:97
+#: ../../include/enotify.php:98
 #, php-format
 msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
 msgstr "%1$s kommenterte på [url=%2$s]%3$s sin %4$s[/url]"
 
-#: ../../include/enotify.php:105
+#: ../../include/enotify.php:106
 #, php-format
 msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
 msgstr "%1$s kommenterte på [url=%2$s] din %3$s[/url]"
 
-#: ../../include/enotify.php:115
+#: ../../include/enotify.php:116
 #, php-format
 msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
 msgstr "[Friendica:Notify] Kommentar til samtale #%1$d av %2$s"
 
-#: ../../include/enotify.php:116
+#: ../../include/enotify.php:117
 #, php-format
 msgid "%s commented on an item/conversation you have been following."
 msgstr "%s kommenterte på et element/en samtale du har fulgt."
 
-#: ../../include/enotify.php:119 ../../include/enotify.php:134
-#: ../../include/enotify.php:147 ../../include/enotify.php:165
-#: ../../include/enotify.php:178
+#: ../../include/enotify.php:120 ../../include/enotify.php:135
+#: ../../include/enotify.php:148 ../../include/enotify.php:161
+#: ../../include/enotify.php:179 ../../include/enotify.php:192
 #, php-format
 msgid "Please visit %s to view and/or reply to the conversation."
 msgstr "Vennligst besøk %s for å se og/eller svare på samtalen."
 
-#: ../../include/enotify.php:126
+#: ../../include/enotify.php:127
 #, php-format
 msgid "[Friendica:Notify] %s posted to your profile wall"
 msgstr "[Friendica:Notify] %s skrev et innlegg på veggen til din profil"
 
-#: ../../include/enotify.php:128
+#: ../../include/enotify.php:129
 #, php-format
 msgid "%1$s posted to your profile wall at %2$s"
 msgstr "%1$s skrev et innlegg på veggen til din profil %2$s"
 
-#: ../../include/enotify.php:130
+#: ../../include/enotify.php:131
 #, php-format
 msgid "%1$s posted to [url=%2$s]your wall[/url]"
 msgstr "%1$s skrev et innlegg til [url=%2$s]din vegg[/url]"
 
-#: ../../include/enotify.php:141
+#: ../../include/enotify.php:142
 #, php-format
 msgid "[Friendica:Notify] %s tagged you"
 msgstr "[Friendica:Notify] %s merket deg"
 
-#: ../../include/enotify.php:142
+#: ../../include/enotify.php:143
 #, php-format
 msgid "%1$s tagged you at %2$s"
 msgstr "%1$s merket deg %2$s"
 
-#: ../../include/enotify.php:143
+#: ../../include/enotify.php:144
 #, php-format
 msgid "%1$s [url=%2$s]tagged you[/url]."
 msgstr "%1$s [url=%2$s]merket deg[/url]."
 
 #: ../../include/enotify.php:155
 #, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica:Notify] %s delte et nytt innlegg"
+
+#: ../../include/enotify.php:156
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s delte et nytt innlegg på %2$s"
+
+#: ../../include/enotify.php:157
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]delte et innlegg[/url]."
+
+#: ../../include/enotify.php:169
+#, php-format
 msgid "[Friendica:Notify] %1$s poked you"
 msgstr "[Friendica:Notify] %1$s dyttet deg"
 
-#: ../../include/enotify.php:156
+#: ../../include/enotify.php:170
 #, php-format
 msgid "%1$s poked you at %2$s"
 msgstr "%1$s dyttet deg %2$s"
 
-#: ../../include/enotify.php:157
+#: ../../include/enotify.php:171
 #, php-format
 msgid "%1$s [url=%2$s]poked you[/url]."
 msgstr "%1$s [url=%2$s]dyttet deg[/url]."
 
-#: ../../include/enotify.php:172
+#: ../../include/enotify.php:186
 #, php-format
 msgid "[Friendica:Notify] %s tagged your post"
 msgstr "[Friendica:Notify] %s merket ditt innlegg"
 
-#: ../../include/enotify.php:173
+#: ../../include/enotify.php:187
 #, php-format
 msgid "%1$s tagged your post at %2$s"
 msgstr "%1$s merket ditt innlegg %2$s"
 
-#: ../../include/enotify.php:174
+#: ../../include/enotify.php:188
 #, php-format
 msgid "%1$s tagged [url=%2$s]your post[/url]"
 msgstr "%1$s merket [url=%2$s]ditt innlegg[/url]"
 
-#: ../../include/enotify.php:185
+#: ../../include/enotify.php:199
 msgid "[Friendica:Notify] Introduction received"
 msgstr "[Friendica:Notify] Introduksjon mottatt"
 
-#: ../../include/enotify.php:186
+#: ../../include/enotify.php:200
 #, php-format
 msgid "You've received an introduction from '%1$s' at %2$s"
 msgstr "Du mottok en introduksjon fra '%1$s'  %2$s"
 
-#: ../../include/enotify.php:187
+#: ../../include/enotify.php:201
 #, php-format
 msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
 msgstr "Du mottok [url=%1$s]en introduksjon[/url] fra %2$s."
 
-#: ../../include/enotify.php:190 ../../include/enotify.php:208
+#: ../../include/enotify.php:204 ../../include/enotify.php:222
 #, php-format
 msgid "You may visit their profile at %s"
 msgstr "Du kan besøke profilen deres på %s"
 
-#: ../../include/enotify.php:192
+#: ../../include/enotify.php:206
 #, php-format
 msgid "Please visit %s to approve or reject the introduction."
 msgstr "Vennligst besøk %s for å godkjenne eller avslå introduksjonen."
 
-#: ../../include/enotify.php:199
+#: ../../include/enotify.php:213
 msgid "[Friendica:Notify] Friend suggestion received"
 msgstr "[Friendica:Notify] Venneforslag mottatt"
 
-#: ../../include/enotify.php:200
+#: ../../include/enotify.php:214
 #, php-format
 msgid "You've received a friend suggestion from '%1$s' at %2$s"
 msgstr "Du mottok et venneforslag fra '%1$s'  %2$s"
 
-#: ../../include/enotify.php:201
+#: ../../include/enotify.php:215
 #, php-format
 msgid ""
 "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
 msgstr "Du mottok  [url=%1$s]et venneforslag[/url] om %2$s fra %3$s."
 
-#: ../../include/enotify.php:206
+#: ../../include/enotify.php:220
 msgid "Name:"
 msgstr "Navn:"
 
-#: ../../include/enotify.php:207
+#: ../../include/enotify.php:221
 msgid "Photo:"
 msgstr "Bilde:"
 
-#: ../../include/enotify.php:210
+#: ../../include/enotify.php:224
 #, php-format
 msgid "Please visit %s to approve or reject the suggestion."
 msgstr "Vennligst besøk %s for å godkjenne eller avslå forslaget."
 
-#: ../../include/Scrape.php:583
+#: ../../include/Scrape.php:584
 msgid " on Last.fm"
 msgstr "på Last.fm"
 
@@ -6560,71 +6608,79 @@ msgstr "Katalog"
 msgid "People directory"
 msgstr "Personkatalog"
 
-#: ../../include/nav.php:140
+#: ../../include/nav.php:132
+msgid "Information"
+msgstr "Informasjon"
+
+#: ../../include/nav.php:132
+msgid "Information about this friendica instance"
+msgstr "Informasjon om denne Friendica-instansen."
+
+#: ../../include/nav.php:142
 msgid "Conversations from your friends"
 msgstr "Samtaler fra dine venner"
 
-#: ../../include/nav.php:141
+#: ../../include/nav.php:143
 msgid "Network Reset"
 msgstr "Nettverk tilbakestilling"
 
-#: ../../include/nav.php:141
+#: ../../include/nav.php:143
 msgid "Load Network page with no filters"
 msgstr "Hent Nettverk-siden uten filter"
 
-#: ../../include/nav.php:149
+#: ../../include/nav.php:151
 msgid "Friend Requests"
 msgstr "Venneforespørsler"
 
-#: ../../include/nav.php:151
+#: ../../include/nav.php:153
 msgid "See all notifications"
 msgstr "Se alle varslinger"
 
-#: ../../include/nav.php:152
+#: ../../include/nav.php:154
 msgid "Mark all system notifications seen"
 msgstr "Merk alle systemvarsler som sett"
 
-#: ../../include/nav.php:156
+#: ../../include/nav.php:158
 msgid "Private mail"
 msgstr "Privat post"
 
-#: ../../include/nav.php:157
+#: ../../include/nav.php:159
 msgid "Inbox"
 msgstr "Innboks"
 
-#: ../../include/nav.php:158
+#: ../../include/nav.php:160
 msgid "Outbox"
 msgstr "Utboks"
 
-#: ../../include/nav.php:162
+#: ../../include/nav.php:164
 msgid "Manage"
 msgstr "Behandle"
 
-#: ../../include/nav.php:162
+#: ../../include/nav.php:164
 msgid "Manage other pages"
 msgstr "Behandle andre sider"
 
-#: ../../include/nav.php:165
-msgid "Delegations"
-msgstr "Delegasjoner"
-
 #: ../../include/nav.php:169
+msgid "Account settings"
+msgstr "Kontoinnstillinger"
+
+#: ../../include/nav.php:171
 msgid "Manage/Edit Profiles"
 msgstr "Behandle/endre profiler"
 
-#: ../../include/nav.php:171
+#: ../../include/nav.php:173
 msgid "Manage/edit friends and contacts"
 msgstr "Behandle/endre venner og kontakter"
 
-#: ../../include/nav.php:178
+#: ../../include/nav.php:180
 msgid "Site setup and configuration"
 msgstr "Nettstedsoppsett og konfigurasjon"
 
-#: ../../include/nav.php:182
+#: ../../include/nav.php:184
 msgid "Navigation"
 msgstr "Navigasjon"
 
-#: ../../include/nav.php:182
+#: ../../include/nav.php:184
 msgid "Site map"
 msgstr "Nettstedskart"
 
@@ -6693,23 +6749,27 @@ msgstr "Arbeid/ansatt hos:"
 msgid "School/education:"
 msgstr "Skole/utdanning:"
 
-#: ../../include/bbcode.php:215 ../../include/bbcode.php:620
-#: ../../include/bbcode.php:621
+#: ../../include/bbcode.php:284 ../../include/bbcode.php:917
+#: ../../include/bbcode.php:918
 msgid "Image/photo"
 msgstr "Bilde/fotografi"
 
-#: ../../include/bbcode.php:285
+#: ../../include/bbcode.php:354
 #, 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> skrev det følgende <a href=\"%s\" target=\"external-link\">innlegget</a>"
+"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"_blank\">post</a>"
+msgstr "<span><a href=\"%s\" target=\"_blank\">%s</a> skrev følgende <a href=\"%s\" target=\"_blank\">innlegg</a>"
+
+#: ../../include/bbcode.php:453
+msgid "<span><b>"
+msgstr "<span><b>"
 
-#: ../../include/bbcode.php:584 ../../include/bbcode.php:604
+#: ../../include/bbcode.php:881 ../../include/bbcode.php:901
 msgid "$1 wrote:"
 msgstr "$1 skrev:"
 
-#: ../../include/bbcode.php:631 ../../include/bbcode.php:632
+#: ../../include/bbcode.php:932 ../../include/bbcode.php:933
 msgid "Encrypted content"
 msgstr "Kryptert innhold"
 
@@ -6781,6 +6841,14 @@ msgstr "pump.io"
 msgid "Twitter"
 msgstr "Twitter"
 
+#: ../../include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Diaspora-forbindelse"
+
+#: ../../include/contact_selectors.php:91
+msgid "Statusnet"
+msgstr "StatusNet"
+
 #: ../../include/datetime.php:43 ../../include/datetime.php:45
 msgid "Miscellaneous"
 msgstr "Diverse"
@@ -6854,12 +6922,12 @@ msgstr "sekunder"
 msgid "%1$d %2$s ago"
 msgstr "%1$d %2$s siden"
 
-#: ../../include/datetime.php:472 ../../include/items.php:1829
+#: ../../include/datetime.php:472 ../../include/items.php:1964
 #, php-format
 msgid "%s's birthday"
 msgstr "%s sin bursdag"
 
-#: ../../include/datetime.php:473 ../../include/items.php:1830
+#: ../../include/datetime.php:473 ../../include/items.php:1965
 #, php-format
 msgid "Happy Birthday %s"
 msgstr "Gratulerer med dagen, %s"
@@ -6896,155 +6964,164 @@ msgstr "Forhåndsvisning av innlegg"
 msgid "Allow previewing posts and comments before publishing them"
 msgstr "Tillat forhåndsvisning av innlegg og kommentarer før publisering"
 
-#: ../../include/features.php:37
+#: ../../include/features.php:33
+msgid "Auto-mention Forums"
+msgstr "Auto-nevning av forum"
+
+#: ../../include/features.php:33
+msgid ""
+"Add/remove mention when a fourm page is selected/deselected in ACL window."
+msgstr "Legg til/fjern nevning når en forumside velges/ikke lenger velges i tilgangsstyringsvinduet/ACL-vinduet."
+
+#: ../../include/features.php:38
 msgid "Network Sidebar Widgets"
 msgstr "Småprogrammer i sidestolpen for Nettverk"
 
-#: ../../include/features.php:38
+#: ../../include/features.php:39
 msgid "Search by Date"
 msgstr "Søk etter dato"
 
-#: ../../include/features.php:38
+#: ../../include/features.php:39
 msgid "Ability to select posts by date ranges"
 msgstr "Mulighet for å velge innlegg etter datoområder"
 
-#: ../../include/features.php:39
+#: ../../include/features.php:40
 msgid "Group Filter"
 msgstr "Gruppefilter"
 
-#: ../../include/features.php:39
+#: ../../include/features.php:40
 msgid "Enable widget to display Network posts only from selected group"
 msgstr "Skru på småprogrammet som viser Nettverksinnlegg bare fra den valgte gruppen"
 
-#: ../../include/features.php:40
+#: ../../include/features.php:41
 msgid "Network Filter"
 msgstr "Nettverksfilter"
 
-#: ../../include/features.php:40
+#: ../../include/features.php:41
 msgid "Enable widget to display Network posts only from selected network"
 msgstr "Skru på småprogrammet for å vise Nettverksinnlegg bare fra valgt nettverk"
 
-#: ../../include/features.php:41
+#: ../../include/features.php:42
 msgid "Save search terms for re-use"
 msgstr "Lagre søkeuttrykk for gjenbruk"
 
-#: ../../include/features.php:46
+#: ../../include/features.php:47
 msgid "Network Tabs"
 msgstr "Nettverksfaner"
 
-#: ../../include/features.php:47
+#: ../../include/features.php:48
 msgid "Network Personal Tab"
 msgstr "Nettverk personlig fane"
 
-#: ../../include/features.php:47
+#: ../../include/features.php:48
 msgid "Enable tab to display only Network posts that you've interacted on"
 msgstr "Skru på fane for å vise bare Nettverksinnlegg som du har vært med i"
 
-#: ../../include/features.php:48
+#: ../../include/features.php:49
 msgid "Network New Tab"
 msgstr "Nettverk Ny fane"
 
-#: ../../include/features.php:48
+#: ../../include/features.php:49
 msgid "Enable tab to display only new Network posts (from the last 12 hours)"
 msgstr "Skru på fane for å vise bare nye Nettverksinnlegg (fra de siste 12 timer)"
 
-#: ../../include/features.php:49
+#: ../../include/features.php:50
 msgid "Network Shared Links Tab"
 msgstr "Nettverk Delte lenker fane"
 
-#: ../../include/features.php:49
+#: ../../include/features.php:50
 msgid "Enable tab to display only Network posts with links in them"
 msgstr "Skru på fane for å vise bare Nettverksinnlegg med lenker i dem"
 
-#: ../../include/features.php:54
+#: ../../include/features.php:55
 msgid "Post/Comment Tools"
 msgstr "Innleggs-/kommentarverktøy"
 
-#: ../../include/features.php:55
+#: ../../include/features.php:56
 msgid "Multiple Deletion"
 msgstr "Slett flere"
 
-#: ../../include/features.php:55
+#: ../../include/features.php:56
 msgid "Select and delete multiple posts/comments at once"
 msgstr "Velg og slett flere innlegg/kommentarer på en gang"
 
-#: ../../include/features.php:56
+#: ../../include/features.php:57
 msgid "Edit Sent Posts"
 msgstr "Endre sendte innlegg"
 
-#: ../../include/features.php:56
+#: ../../include/features.php:57
 msgid "Edit and correct posts and comments after sending"
 msgstr "Endre og korriger innlegg og kommentarer etter sending"
 
-#: ../../include/features.php:57
+#: ../../include/features.php:58
 msgid "Tagging"
 msgstr "Merking"
 
-#: ../../include/features.php:57
+#: ../../include/features.php:58
 msgid "Ability to tag existing posts"
 msgstr "Mulighet til å merke eksisterende innlegg"
 
-#: ../../include/features.php:58
+#: ../../include/features.php:59
 msgid "Post Categories"
 msgstr "Innleggskategorier"
 
-#: ../../include/features.php:58
+#: ../../include/features.php:59
 msgid "Add categories to your posts"
 msgstr "Legg til kategorier til dine innlegg"
 
-#: ../../include/features.php:59
+#: ../../include/features.php:60
 msgid "Ability to file posts under folders"
 msgstr "Mulighet til å sortere innlegg i mapper"
 
-#: ../../include/features.php:60
+#: ../../include/features.php:61
 msgid "Dislike Posts"
 msgstr "Liker ikke innlegg"
 
-#: ../../include/features.php:60
+#: ../../include/features.php:61
 msgid "Ability to dislike posts/comments"
 msgstr "Mulighet til å ikke like innlegg/kommentarer"
 
-#: ../../include/features.php:61
+#: ../../include/features.php:62
 msgid "Star Posts"
 msgstr "Stjerneinnlegg"
 
-#: ../../include/features.php:61
+#: ../../include/features.php:62
 msgid "Ability to mark special posts with a star indicator"
 msgstr "Mulighet til å merke spesielle innlegg med en stjerneindikator"
 
-#: ../../include/diaspora.php:704
+#: ../../include/diaspora.php:703
 msgid "Sharing notification from Diaspora network"
 msgstr "Dele varslinger fra Diaspora nettverket"
 
-#: ../../include/diaspora.php:2269
+#: ../../include/diaspora.php:2299
 msgid "Attachments:"
 msgstr "Vedlegg:"
 
-#: ../../include/acl_selectors.php:325
+#: ../../include/acl_selectors.php:326
 msgid "Visible to everybody"
 msgstr "Synlig for alle"
 
-#: ../../include/items.php:3539
+#: ../../include/items.php:3693
 msgid "A new person is sharing with you at "
 msgstr "En ny person deler med deg hos"
 
-#: ../../include/items.php:3539
+#: ../../include/items.php:3693
 msgid "You have a new follower at "
 msgstr "Du har en ny følgesvenn på "
 
-#: ../../include/items.php:4062
+#: ../../include/items.php:4216
 msgid "Do you really want to delete this item?"
 msgstr "Ønsker du virkelig å slette dette elementet?"
 
-#: ../../include/items.php:4285
+#: ../../include/items.php:4443
 msgid "Archives"
 msgstr "Arkiverer"
 
-#: ../../include/oembed.php:140
+#: ../../include/oembed.php:174
 msgid "Embedded content"
 msgstr "Innebygd innhold"
 
-#: ../../include/oembed.php:149
+#: ../../include/oembed.php:183
 msgid "Embedding disabled"
 msgstr "Innebygging avskrudd"
 
@@ -7302,7 +7379,7 @@ msgstr "sluttet å følge"
 msgid "Drop Contact"
 msgstr "Fjern kontakt"
 
-#: ../../include/dba.php:44
+#: ../../include/dba.php:45
 #, php-format
 msgid "Cannot locate DNS info for database server '%s'"
 msgstr "Kan ikke finne DNS informasjon for databasetjeneren '%s' "
index 3b6d3a77e1aa264e19786ae87325054b2a12b62f..235dfff9f4a1bf81bb41c48041da3a73ec59dc50 100644 (file)
@@ -120,6 +120,7 @@ $a->strings["font size"] = "skriftstørrelse";
 $a->strings["base font size for your interface"] = "standard skriftstørrelse i ditt brukergrensesnitt";
 $a->strings["Set resize level for images in posts and comments (width and height)"] = "Angi størrelsesendringen for bilder i innlegg og kommentarer (bredde og høyde)";
 $a->strings["Set theme width"] = "Angi temabredde";
+$a->strings["Set style"] = "Angi stil";
 $a->strings["Delete this item?"] = "Slett dette elementet?";
 $a->strings["show fewer"] = "vis færre";
 $a->strings["Update %s failed. See error logs."] = "Oppdatering %s mislyktes. Se feilloggene.";
@@ -418,6 +419,7 @@ $a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] =
 $a->strings["Site settings updated."] = "Nettstedets innstillinger er oppdatert.";
 $a->strings["No special theme for mobile devices"] = "Ikke eget tema for mobile enheter";
 $a->strings["Never"] = "Aldri";
+$a->strings["At post arrival"] = "Ved mottak av innlegg";
 $a->strings["Frequently"] = "Ofte";
 $a->strings["Hourly"] = "Hver time";
 $a->strings["Twice daily"] = "To ganger daglig";
@@ -498,7 +500,7 @@ $a->strings["Use PHP UTF8 regular expressions"] = "Bruk PHP UTF8 regulære uttry
 $a->strings["Show Community Page"] = "Vis Felleskap-side";
 $a->strings["Display a Community page showing all recent public postings on this site."] = "Vis en Fellesskapsside som viser de siste offentlige meldinger på dette nettstedet.";
 $a->strings["Enable OStatus support"] = "Aktiver Ostatus-støtte";
-$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."] = "Tilby innebygget OStatus-kompatibilitet (identi.ca, status.net, etc.). All kommunikasjon via OStatus er offentlig, så personvernadvarsler vil bli vist av og til.";
+$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Tilby innebygget Ostatus-samhandling (StatusNet, GNU Social osv.). All kommunikasjon via OStatus er offentlig, så advarsler om personvern vil bli vist av og til.";
 $a->strings["OStatus conversation completion interval"] = "OStatus intervall for samtalefullførelse";
 $a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Hvor ofte skal spørrefunksjonen sjekke etter nye oppføringer i OStatus-samtaler? Dette kan være en svært ressurskrevende oppgave.";
 $a->strings["Enable Diaspora support"] = "Aktiver Diaspora-støtte";
@@ -769,6 +771,9 @@ $a->strings["Currently ignored"] = "Ignorert nå";
 $a->strings["Currently archived"] = "For øyeblikket arkivert";
 $a->strings["Hide this contact from others"] = "Skjul denne kontakten for andre";
 $a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Svar/liker til dine offentlige innlegg <strong>kan</strong> fortsatt være synlige";
+$a->strings["Notification for new posts"] = "Varsling om nye innlegg";
+$a->strings["Send a notification of every new post of this contact"] = "Send et varsel ved hvert nytt innlegg fra denne kontakten";
+$a->strings["Fetch further information for feeds"] = "Hent ytterligere informasjon til strømmer";
 $a->strings["Suggestions"] = "Forslag";
 $a->strings["Suggest potential friends"] = "Foreslå mulige venner";
 $a->strings["All Contacts"] = "Alle kontakter";
@@ -790,11 +795,10 @@ $a->strings["Edit contact"] = "Endre kontakt";
 $a->strings["Search your contacts"] = "Søk i dine kontakter";
 $a->strings["Update"] = "Oppdater";
 $a->strings["everybody"] = "alle";
-$a->strings["Account settings"] = "Kontoinnstillinger";
 $a->strings["Additional features"] = "Tilleggsfunksjoner";
-$a->strings["Display settings"] = "Visningsinnstillinger";
-$a->strings["Connector settings"] = "Koblingsinnstillinger";
-$a->strings["Plugin settings"] = "Tilleggsinnstillinger";
+$a->strings["Display"] = "Vis";
+$a->strings["Social Networks"] = "Sosiale nettverk";
+$a->strings["Delegations"] = "Delegasjoner";
 $a->strings["Connected apps"] = "Tilkoblede programmer";
 $a->strings["Export personal data"] = "Eksporter personlige data";
 $a->strings["Remove account"] = "Fjern konto";
@@ -836,7 +840,6 @@ $a->strings["enabled"] = "aktivert";
 $a->strings["disabled"] = "avskrudd";
 $a->strings["StatusNet"] = "StatusNet";
 $a->strings["Email access is disabled on this site."] = "E-posttilgang er avskrudd på dette stedet.";
-$a->strings["Connector Settings"] = "Koblingsinnstillinger";
 $a->strings["Email/Mailbox Setup"] = "E-post-/postboksinnstillinger";
 $a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Hvis du ønsker å kommunisere med e-postkontakter via denne tjenesten (frivillig), vennligst oppgi hvordan din postboks kontaktes.";
 $a->strings["Last successful email check:"] = "Siste vellykkede e-postsjekk:";
@@ -861,6 +864,7 @@ $a->strings["Number of items to display per page:"] = "Antall elementer som vise
 $a->strings["Maximum of 100 items"] = "Maksimum 100 elementer";
 $a->strings["Number of items to display per page when viewed from mobile device:"] = "Antall elementer å vise per side ved visning på mobil enhet:";
 $a->strings["Don't show emoticons"] = "Ikke vis uttrykksikoner";
+$a->strings["Don't show notices"] = "Ikke vis varsler";
 $a->strings["Infinite scroll"] = "Uendelig rulling";
 $a->strings["Normal Account Page"] = "Vanlig konto-side";
 $a->strings["This account is a normal personal profile"] = "Denne kontoen er en vanlig personlig profil";
@@ -1120,6 +1124,8 @@ $a->strings["Public photo"] = "Offentlig bilde";
 $a->strings["Share"] = "Del";
 $a->strings["View Album"] = "Vis album";
 $a->strings["Recent Photos"] = "Nye bilder";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Beklager, din opplasting er kanskje større enn PHP-konfigurasjonen tillater";
+$a->strings["Or - did you try to upload an empty file?"] = "Eller - forsøkte du å laste opp en tom fil?";
 $a->strings["File exceeds size limit of %d"] = "Filstørrelsen er større enn begrensning på %d";
 $a->strings["File upload failed."] = "Opplasting av filen mislyktes.";
 $a->strings["No videos selected"] = "Ingen videoer er valgt";
@@ -1300,6 +1306,7 @@ $a->strings["This action exceeds the limits set by your subscription plan."] = "
 $a->strings["This action is not available under your subscription plan."] = "Denne handlingen er ikke tilgjengelig i henhold til din abonnementsplan.";
 $a->strings["User not found."] = "Brukeren ble ikke funnet.";
 $a->strings["There is no status with this id."] = "Det er ingen status tilknyttet denne id-en.";
+$a->strings["There is no conversation with this id."] = "Det finnes ingen samtale med denne id-en.";
 $a->strings["view full size"] = "Vis i full størrelse";
 $a->strings["Starts:"] = "Starter:";
 $a->strings["Finishes:"] = "Slutter:";
@@ -1457,6 +1464,9 @@ $a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s skrev et innl
 $a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s merket deg";
 $a->strings["%1\$s tagged you at %2\$s"] = "%1\$s merket deg %2\$s";
 $a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]merket deg[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s delte et nytt innlegg";
+$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s delte et nytt innlegg på %2\$s";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]delte et innlegg[/url].";
 $a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s dyttet deg";
 $a->strings["%1\$s poked you at %2\$s"] = "%1\$s dyttet deg %2\$s";
 $a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]dyttet deg[/url].";
@@ -1506,6 +1516,8 @@ $a->strings["Search site content"] = "Søk i nettstedets innhold";
 $a->strings["Conversations on this site"] = "Samtaler på dette nettstedet";
 $a->strings["Directory"] = "Katalog";
 $a->strings["People directory"] = "Personkatalog";
+$a->strings["Information"] = "Informasjon";
+$a->strings["Information about this friendica instance"] = "Informasjon om denne Friendica-instansen.";
 $a->strings["Conversations from your friends"] = "Samtaler fra dine venner";
 $a->strings["Network Reset"] = "Nettverk tilbakestilling";
 $a->strings["Load Network page with no filters"] = "Hent Nettverk-siden uten filter";
@@ -1517,7 +1529,7 @@ $a->strings["Inbox"] = "Innboks";
 $a->strings["Outbox"] = "Utboks";
 $a->strings["Manage"] = "Behandle";
 $a->strings["Manage other pages"] = "Behandle andre sider";
-$a->strings["Delegations"] = "Delegasjoner";
+$a->strings["Account settings"] = "Kontoinnstillinger";
 $a->strings["Manage/Edit Profiles"] = "Behandle/endre profiler";
 $a->strings["Manage/edit friends and contacts"] = "Behandle/endre venner og kontakter";
 $a->strings["Site setup and configuration"] = "Nettstedsoppsett og konfigurasjon";
@@ -1540,7 +1552,8 @@ $a->strings["Love/Romance:"] = "Kjærlighet/romanse:";
 $a->strings["Work/employment:"] = "Arbeid/ansatt hos:";
 $a->strings["School/education:"] = "Skole/utdanning:";
 $a->strings["Image/photo"] = "Bilde/fotografi";
-$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "<span><a href=\"%s\" target=\"external-link\">%s</a> skrev det følgende <a href=\"%s\" target=\"external-link\">innlegget</a>";
+$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "<span><a href=\"%s\" target=\"_blank\">%s</a> skrev følgende <a href=\"%s\" target=\"_blank\">innlegg</a>";
+$a->strings["<span><b>"] = "<span><b>";
 $a->strings["$1 wrote:"] = "$1 skrev:";
 $a->strings["Encrypted content"] = "Kryptert innhold";
 $a->strings["Unknown | Not categorised"] = "Ukjent | Ikke kategorisert";
@@ -1560,6 +1573,8 @@ $a->strings["MySpace"] = "MySpace";
 $a->strings["Google+"] = "Google+";
 $a->strings["pump.io"] = "pump.io";
 $a->strings["Twitter"] = "Twitter";
+$a->strings["Diaspora Connector"] = "Diaspora-forbindelse";
+$a->strings["Statusnet"] = "StatusNet";
 $a->strings["Miscellaneous"] = "Diverse";
 $a->strings["year"] = "år";
 $a->strings["month"] = "måned";
@@ -1588,6 +1603,8 @@ $a->strings["Richtext Editor"] = "Rik tekstredigering";
 $a->strings["Enable richtext editor"] = "Skru på rik tekstredigering";
 $a->strings["Post Preview"] = "Forhåndsvisning av innlegg";
 $a->strings["Allow previewing posts and comments before publishing them"] = "Tillat forhåndsvisning av innlegg og kommentarer før publisering";
+$a->strings["Auto-mention Forums"] = "Auto-nevning av forum";
+$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Legg til/fjern nevning når en forumside velges/ikke lenger velges i tilgangsstyringsvinduet/ACL-vinduet.";
 $a->strings["Network Sidebar Widgets"] = "Småprogrammer i sidestolpen for Nettverk";
 $a->strings["Search by Date"] = "Søk etter dato";
 $a->strings["Ability to select posts by date ranges"] = "Mulighet for å velge innlegg etter datoområder";
index 89158fb018bce957cc9c9988b2af202bfa7f13ed..c65016e6cfba1a32fc083ee13917641eb4975f66 100644 (file)
@@ -13,8 +13,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-12-31 18:07+0100\n"
-"PO-Revision-Date: 2014-03-15 17:44+0000\n"
+"POT-Creation-Date: 2014-05-16 11:05+0200\n"
+"PO-Revision-Date: 2014-05-18 22:32+0000\n"
 "Last-Translator: jeroenpraat <>\n"
 "Language-Team: Dutch (http://www.transifex.com/projects/p/friendica/language/nl/)\n"
 "MIME-Version: 1.0\n"
@@ -27,25 +27,26 @@ msgstr ""
 msgid "This entry was edited"
 msgstr ""
 
-#: ../../object/Item.php:113 ../../mod/content.php:619
-#: ../../mod/photos.php:1351
+#: ../../object/Item.php:113 ../../mod/photos.php:1355
+#: ../../mod/content.php:619
 msgid "Private Message"
 msgstr "Privébericht"
 
 #: ../../object/Item.php:117 ../../mod/editpost.php:109
-#: ../../mod/content.php:727 ../../mod/settings.php:663
+#: ../../mod/settings.php:671 ../../mod/content.php:727
 msgid "Edit"
 msgstr "Bewerken"
 
-#: ../../object/Item.php:126 ../../mod/content.php:437
-#: ../../mod/content.php:739 ../../include/conversation.php:611
+#: ../../object/Item.php:126 ../../mod/photos.php:1649
+#: ../../mod/content.php:437 ../../mod/content.php:739
+#: ../../include/conversation.php:612
 msgid "Select"
 msgstr "Kies"
 
-#: ../../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
+#: ../../object/Item.php:127 ../../mod/admin.php:910 ../../mod/photos.php:1650
+#: ../../mod/contacts.php:703 ../../mod/settings.php:672
+#: ../../mod/group.php:171 ../../mod/content.php:438 ../../mod/content.php:740
+#: ../../include/conversation.php:613
 msgid "Delete"
 msgstr "Verwijder"
 
@@ -73,8 +74,8 @@ msgstr "met ster"
 msgid "add tag"
 msgstr "label toevoegen"
 
-#: ../../object/Item.php:213 ../../mod/content.php:683
-#: ../../mod/photos.php:1529
+#: ../../object/Item.php:213 ../../mod/photos.php:1538
+#: ../../mod/content.php:683
 msgid "I like this (toggle)"
 msgstr "Vind ik leuk"
 
@@ -82,8 +83,8 @@ msgstr "Vind ik leuk"
 msgid "like"
 msgstr "leuk"
 
-#: ../../object/Item.php:214 ../../mod/content.php:684
-#: ../../mod/photos.php:1530
+#: ../../object/Item.php:214 ../../mod/photos.php:1539
+#: ../../mod/content.php:684
 msgid "I don't like this (toggle)"
 msgstr "Vind ik niet leuk"
 
@@ -99,2923 +100,2917 @@ msgstr "Delen"
 msgid "share"
 msgstr "Delen"
 
-#: ../../object/Item.php:278 ../../include/conversation.php:663
+#: ../../object/Item.php:298 ../../include/conversation.php:665
 msgid "Categories:"
 msgstr "Categorieën:"
 
-#: ../../object/Item.php:279 ../../include/conversation.php:664
+#: ../../object/Item.php:299 ../../include/conversation.php:666
 msgid "Filed under:"
 msgstr "Bewaard onder:"
 
-#: ../../object/Item.php:287 ../../object/Item.php:288
+#: ../../object/Item.php:307 ../../object/Item.php:308
 #: ../../mod/content.php:471 ../../mod/content.php:851
-#: ../../mod/content.php:852 ../../include/conversation.php:651
+#: ../../mod/content.php:852 ../../include/conversation.php:653
 #, php-format
 msgid "View %s's profile @ %s"
 msgstr "Bekijk het profiel van %s @ %s"
 
-#: ../../object/Item.php:289 ../../mod/content.php:853
+#: ../../object/Item.php:309 ../../mod/content.php:853
 msgid "to"
 msgstr "aan"
 
-#: ../../object/Item.php:290
+#: ../../object/Item.php:310
 msgid "via"
 msgstr "via"
 
-#: ../../object/Item.php:291 ../../mod/content.php:854
+#: ../../object/Item.php:311 ../../mod/content.php:854
 msgid "Wall-to-Wall"
 msgstr "wall-to-wall"
 
-#: ../../object/Item.php:292 ../../mod/content.php:855
+#: ../../object/Item.php:312 ../../mod/content.php:855
 msgid "via Wall-To-Wall:"
 msgstr "via wall-to-wall"
 
-#: ../../object/Item.php:301 ../../mod/content.php:481
-#: ../../mod/content.php:863 ../../include/conversation.php:671
+#: ../../object/Item.php:321 ../../mod/content.php:481
+#: ../../mod/content.php:863 ../../include/conversation.php:673
 #, php-format
 msgid "%s from %s"
 msgstr "%s van %s"
 
-#: ../../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
+#: ../../object/Item.php:341 ../../object/Item.php:657
+#: ../../mod/photos.php:1560 ../../mod/photos.php:1604
+#: ../../mod/photos.php:1692 ../../mod/content.php:708 ../../boot.php:693
 msgid "Comment"
 msgstr "Reacties"
 
-#: ../../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
+#: ../../object/Item.php:344 ../../mod/message.php:334
+#: ../../mod/message.php:565 ../../mod/editpost.php:124
+#: ../../mod/wallmessage.php:156 ../../mod/photos.php:1541
+#: ../../mod/content.php:498 ../../mod/content.php:882
+#: ../../include/conversation.php:690 ../../include/conversation.php:1107
 msgid "Please wait"
 msgstr "Even geduld"
 
-#: ../../object/Item.php:345 ../../mod/content.php:602
+#: ../../object/Item.php:367 ../../mod/content.php:602
 #, php-format
 msgid "%d comment"
 msgid_plural "%d comments"
 msgstr[0] "%d reactie"
 msgstr[1] "%d reacties"
 
-#: ../../object/Item.php:347 ../../object/Item.php:360
-#: ../../mod/content.php:604 ../../include/text.php:1928
+#: ../../object/Item.php:369 ../../object/Item.php:382
+#: ../../mod/content.php:604 ../../include/text.php:1959
 msgid "comment"
 msgid_plural "comments"
 msgstr[0] "reactie"
 msgstr[1] "reacties"
 
-#: ../../object/Item.php:348 ../../boot.php:686 ../../mod/content.php:605
+#: ../../object/Item.php:370 ../../mod/content.php:605 ../../boot.php:694
 #: ../../include/contact_widgets.php:204
 msgid "show more"
 msgstr "toon meer"
 
-#: ../../object/Item.php:633 ../../mod/content.php:706
-#: ../../mod/photos.php:1549 ../../mod/photos.php:1593
-#: ../../mod/photos.php:1676
+#: ../../object/Item.php:655 ../../mod/photos.php:1558
+#: ../../mod/photos.php:1602 ../../mod/photos.php:1690
+#: ../../mod/content.php:706
 msgid "This is you"
 msgstr "Dit ben jij"
 
-#: ../../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:171 ../../mod/content.php:709
-#: ../../mod/contacts.php:458 ../../mod/profiles.php:630
+#: ../../object/Item.php:658 ../../mod/fsuggest.php:107
 #: ../../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
+#: ../../mod/events.php:478 ../../mod/photos.php:1082
+#: ../../mod/photos.php:1203 ../../mod/photos.php:1510
+#: ../../mod/photos.php:1561 ../../mod/photos.php:1605
+#: ../../mod/photos.php:1693 ../../mod/contacts.php:464
+#: ../../mod/invite.php:140 ../../mod/profiles.php:634
+#: ../../mod/manage.php:110 ../../mod/poke.php:199 ../../mod/localtime.php:45
+#: ../../mod/install.php:248 ../../mod/install.php:286
+#: ../../mod/content.php:709 ../../mod/mood.php:137 ../../mod/crepair.php:171
+#: ../../view/theme/diabook/theme.php:633
+#: ../../view/theme/diabook/config.php:148 ../../view/theme/vier/config.php:47
+#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64
+#: ../../view/theme/cleanzero/config.php:80
 msgid "Submit"
 msgstr "Opslaan"
 
-#: ../../object/Item.php:637 ../../mod/content.php:710
+#: ../../object/Item.php:659 ../../mod/content.php:710
 msgid "Bold"
 msgstr "Vet"
 
-#: ../../object/Item.php:638 ../../mod/content.php:711
+#: ../../object/Item.php:660 ../../mod/content.php:711
 msgid "Italic"
 msgstr "Cursief"
 
-#: ../../object/Item.php:639 ../../mod/content.php:712
+#: ../../object/Item.php:661 ../../mod/content.php:712
 msgid "Underline"
 msgstr "Onderstrepen"
 
-#: ../../object/Item.php:640 ../../mod/content.php:713
+#: ../../object/Item.php:662 ../../mod/content.php:713
 msgid "Quote"
 msgstr "Citeren"
 
-#: ../../object/Item.php:641 ../../mod/content.php:714
+#: ../../object/Item.php:663 ../../mod/content.php:714
 msgid "Code"
 msgstr "Broncode"
 
-#: ../../object/Item.php:642 ../../mod/content.php:715
+#: ../../object/Item.php:664 ../../mod/content.php:715
 msgid "Image"
 msgstr "Afbeelding"
 
-#: ../../object/Item.php:643 ../../mod/content.php:716
+#: ../../object/Item.php:665 ../../mod/content.php:716
 msgid "Link"
 msgstr "Link"
 
-#: ../../object/Item.php:644 ../../mod/content.php:717
+#: ../../object/Item.php:666 ../../mod/content.php:717
 msgid "Video"
 msgstr "Video"
 
-#: ../../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
+#: ../../object/Item.php:667 ../../mod/editpost.php:145
+#: ../../mod/photos.php:1562 ../../mod/photos.php:1606
+#: ../../mod/photos.php:1694 ../../mod/content.php:718
+#: ../../include/conversation.php:1124
 msgid "Preview"
 msgstr "Voorvertoning"
 
-#: ../../index.php:199 ../../mod/apps.php:7
+#: ../../index.php:203 ../../mod/apps.php:7
 msgid "You must be logged in to use addons. "
-msgstr ""
+msgstr "Je moet ingelogd zijn om deze addons te kunnen gebruiken. "
 
-#: ../../index.php:243 ../../mod/help.php:90
+#: ../../index.php:247 ../../mod/help.php:90
 msgid "Not Found"
 msgstr "Niet gevonden"
 
-#: ../../index.php:246 ../../mod/help.php:93
+#: ../../index.php:250 ../../mod/help.php:93
 msgid "Page not found."
 msgstr "Pagina niet gevonden"
 
-#: ../../index.php:355 ../../mod/group.php:72 ../../mod/profperm.php:19
+#: ../../index.php:359 ../../mod/profperm.php:19 ../../mod/group.php:72
 msgid "Permission denied"
 msgstr "Toegang geweigerd"
 
-#: ../../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: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
-#: ../../mod/photos.php:1044 ../../mod/wall_attach.php:55
-#: ../../mod/poke.php:135 ../../mod/wall_upload.php:66
+#: ../../index.php:360 ../../mod/fsuggest.php:78 ../../mod/files.php:170
+#: ../../mod/notifications.php:66 ../../mod/message.php:38
+#: ../../mod/message.php:174 ../../mod/editpost.php:10
+#: ../../mod/dfrn_confirm.php:53 ../../mod/events.php:140
+#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
+#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
+#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:66 ../../mod/api.php:26
+#: ../../mod/api.php:31 ../../mod/photos.php:134 ../../mod/photos.php:1048
+#: ../../mod/register.php:41 ../../mod/attach.php:33
+#: ../../mod/contacts.php:246 ../../mod/follow.php:9 ../../mod/uimport.php:23
+#: ../../mod/allfriends.php:9 ../../mod/invite.php:15 ../../mod/invite.php:101
+#: ../../mod/settings.php:102 ../../mod/settings.php:591
+#: ../../mod/settings.php:596 ../../mod/display.php:266
+#: ../../mod/profiles.php:146 ../../mod/profiles.php:575
+#: ../../mod/wall_attach.php:55 ../../mod/suggest.php:56
+#: ../../mod/manage.php:96 ../../mod/delegate.php:6
+#: ../../mod/viewcontacts.php:22 ../../mod/notes.php:20 ../../mod/poke.php:135
 #: ../../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:4215
+#: ../../mod/install.php:151 ../../mod/group.php:19 ../../mod/regmod.php:118
+#: ../../mod/item.php:145 ../../mod/item.php:161 ../../mod/mood.php:114
+#: ../../mod/network.php:4 ../../mod/crepair.php:117
+#: ../../include/items.php:4390
 msgid "Permission denied."
 msgstr "Toegang geweigerd"
 
-#: ../../index.php:415
+#: ../../index.php:419
 msgid "toggle mobile"
 msgstr "mobiel thema omwisselen"
 
-#: ../../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 "Tijdlijn"
-
-#: ../../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 "Jouw berichten en conversaties"
+#: ../../mod/update_notes.php:41 ../../mod/update_profile.php:41
+#: ../../mod/update_community.php:18 ../../mod/update_network.php:22
+#: ../../mod/update_display.php:22
+msgid "[Embedded content - reload page to view]"
+msgstr "[Ingebedde inhoud - herlaad pagina om het te bekijken]"
 
-#: ../../view/theme/perihel/theme.php:34
-#: ../../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
-msgid "Profile"
-msgstr "Profiel"
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131
+msgid "Contact not found."
+msgstr "Contact niet gevonden"
 
-#: ../../view/theme/perihel/theme.php:34
-#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
-msgid "Your profile page"
-msgstr "Jouw profiel pagina"
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Vriendschapsvoorstel verzonden."
 
-#: ../../view/theme/perihel/theme.php:35
-#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1974
-#: ../../mod/fbrowser.php:25 ../../include/nav.php:78
-msgid "Photos"
-msgstr "Foto's"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Stel vrienden voor"
 
-#: ../../view/theme/perihel/theme.php:35
-#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
-msgid "Your photos"
-msgstr "Jouw foto's"
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Stel een vriend voor aan %s"
 
-#: ../../view/theme/perihel/theme.php:36
-#: ../../view/theme/diabook/theme.php:127 ../../boot.php:1991
-#: ../../mod/events.php:370 ../../include/nav.php:79
-msgid "Events"
-msgstr "Gebeurtenissen"
+#: ../../mod/dfrn_request.php:93
+msgid "This introduction has already been accepted."
+msgstr "Verzoek is al goedgekeurd"
 
-#: ../../view/theme/perihel/theme.php:36
-#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79
-msgid "Your events"
-msgstr "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen."
+#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Profiel is ongeldig of bevat geen informatie"
 
-#: ../../view/theme/perihel/theme.php:37
-#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
-msgid "Personal notes"
-msgstr "Persoonlijke nota's"
+#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar."
 
-#: ../../view/theme/perihel/theme.php:37
-#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
-msgid "Your personal photos"
-msgstr "Jouw persoonlijke foto's"
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
+msgid "Warning: profile location has no profile photo."
+msgstr "Waarschuwing: Profieladres heeft geen profielfoto."
 
-#: ../../view/theme/perihel/theme.php:38
-#: ../../view/theme/diabook/theme.php:129 ../../mod/community.php:32
-#: ../../include/nav.php:128
-msgid "Community"
-msgstr "Gemeenschap"
+#: ../../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] "De %d vereiste parameter is niet op het gegeven adres gevonden"
+msgstr[1] "De %d vereiste parameters zijn niet op het gegeven adres gevonden"
 
-#: ../../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 "Niet tonen"
+#: ../../mod/dfrn_request.php:170
+msgid "Introduction complete."
+msgstr "Verzoek voltooid."
 
-#: ../../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 "tonen"
+#: ../../mod/dfrn_request.php:209
+msgid "Unrecoverable protocol error."
+msgstr "Onherstelbare protocolfout. "
 
-#: ../../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 "Thema instellingen"
+#: ../../mod/dfrn_request.php:237
+msgid "Profile unavailable."
+msgstr "Profiel onbeschikbaar"
 
-#: ../../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 "Stel lettergrootte voor berichten en reacties in"
+#: ../../mod/dfrn_request.php:262
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s heeft te veel verzoeken gehad vandaag."
 
-#: ../../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 ""
+#: ../../mod/dfrn_request.php:263
+msgid "Spam protection measures have been invoked."
+msgstr "Beveiligingsmaatregelen tegen spam zijn in werking getreden."
 
-#: ../../view/theme/perihel/config.php:100
-#: ../../view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
-msgstr ""
+#: ../../mod/dfrn_request.php:264
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Wij adviseren vrienden om het over 24 uur nog een keer te proberen."
 
-#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:680
-#: ../../include/nav.php:171
-msgid "Contacts"
-msgstr "Contacten"
+#: ../../mod/dfrn_request.php:326
+msgid "Invalid locator"
+msgstr "Ongeldige plaatsbepaler"
 
-#: ../../view/theme/diabook/theme.php:125
-msgid "Your contacts"
-msgstr "Jouw contacten"
+#: ../../mod/dfrn_request.php:335
+msgid "Invalid email address."
+msgstr "Geen geldig e-mailadres"
 
-#: ../../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 "Gemeenschapspagina's"
+#: ../../mod/dfrn_request.php:362
+msgid "This account has not been configured for email. Request failed."
+msgstr "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail."
 
-#: ../../view/theme/diabook/theme.php:391
-#: ../../view/theme/diabook/theme.php:626
-#: ../../view/theme/diabook/config.php:160
-msgid "Community Profiles"
-msgstr "Gemeenschapsprofielen"
+#: ../../mod/dfrn_request.php:458
+msgid "Unable to resolve your name at the provided location."
+msgstr "Ik kan jouw naam op het opgegeven adres niet vinden."
 
-#: ../../view/theme/diabook/theme.php:412
-#: ../../view/theme/diabook/theme.php:630
-#: ../../view/theme/diabook/config.php:164
-msgid "Last users"
-msgstr "Laatste gebruikers"
+#: ../../mod/dfrn_request.php:471
+msgid "You have already introduced yourself here."
+msgstr "Je hebt jezelf hier al voorgesteld."
 
-#: ../../view/theme/diabook/theme.php:441
-#: ../../view/theme/diabook/theme.php:632
-#: ../../view/theme/diabook/config.php:166
-msgid "Last likes"
-msgstr "Recent leuk gevonden"
+#: ../../mod/dfrn_request.php:475
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Blijkbaar bent u al bevriend met %s."
 
-#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118
-#: ../../include/conversation.php:246 ../../include/text.php:1922
-msgid "event"
-msgstr "gebeurtenis"
+#: ../../mod/dfrn_request.php:496
+msgid "Invalid profile URL."
+msgstr "Ongeldig profiel adres."
 
-#: ../../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:1878
-msgid "status"
-msgstr "Status"
+#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
+msgid "Disallowed profile URL."
+msgstr "Niet toegelaten profiel adres."
 
-#: ../../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:1924 ../../include/diaspora.php:1878
-msgid "photo"
-msgstr "Foto"
+#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180
+msgid "Failed to update contact record."
+msgstr "Ik kon de contactgegevens niet aanpassen."
 
-#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:168
-#: ../../include/conversation.php:137 ../../include/diaspora.php:1894
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s vind %3$s van %2$s leuk"
+#: ../../mod/dfrn_request.php:592
+msgid "Your introduction has been sent."
+msgstr "Je verzoek is verzonden."
 
-#: ../../view/theme/diabook/theme.php:486
-#: ../../view/theme/diabook/theme.php:631
-#: ../../view/theme/diabook/config.php:165
-msgid "Last photos"
-msgstr "Laatste foto's"
+#: ../../mod/dfrn_request.php:645
+msgid "Please login to confirm introduction."
+msgstr "Log in om je verzoek te bevestigen."
 
-#: ../../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 "Contactfoto's"
+#: ../../mod/dfrn_request.php:659
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Je huidige identiteit is niet de juiste. Log met <strong>dit</strong> profiel in."
 
-#: ../../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:334
-#: ../../include/user.php:341 ../../include/user.php:348
-msgid "Profile Photos"
-msgstr "Profielfoto's"
+#: ../../mod/dfrn_request.php:670
+msgid "Hide this contact"
+msgstr "Verberg dit contact"
 
-#: ../../view/theme/diabook/theme.php:523
-#: ../../view/theme/diabook/theme.php:629
-#: ../../view/theme/diabook/config.php:163
-msgid "Find Friends"
-msgstr "Zoek vrienden"
+#: ../../mod/dfrn_request.php:673
+#, php-format
+msgid "Welcome home %s."
+msgstr "Welkom terug %s."
 
-#: ../../view/theme/diabook/theme.php:524
-msgid "Local Directory"
-msgstr "Lokale gids"
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Bevestig je vriendschaps-/connectieverzoek voor %s."
 
-#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:49
-msgid "Global Directory"
-msgstr "Globale gids"
+#: ../../mod/dfrn_request.php:675
+msgid "Confirm"
+msgstr "Bevestig"
 
-#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35
-msgid "Similar Interests"
-msgstr "Dezelfde interesses"
+#: ../../mod/dfrn_request.php:716 ../../include/items.php:3703
+msgid "[Name Withheld]"
+msgstr "[Naam achtergehouden]"
 
-#: ../../view/theme/diabook/theme.php:527 ../../mod/suggest.php:66
-#: ../../include/contact_widgets.php:34
-msgid "Friend Suggestions"
-msgstr "Vriendschapsvoorstellen"
+#: ../../mod/dfrn_request.php:761 ../../mod/photos.php:918
+#: ../../mod/videos.php:115 ../../mod/search.php:89 ../../mod/display.php:19
+#: ../../mod/community.php:18 ../../mod/viewcontacts.php:17
+#: ../../mod/directory.php:31
+msgid "Public access denied."
+msgstr "Niet vrij toegankelijk"
 
-#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37
-msgid "Invite Friends"
-msgstr "Vrienden uitnodigen"
+#: ../../mod/dfrn_request.php:811
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:"
 
-#: ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22
-#: ../../mod/admin.php:1004 ../../mod/admin.php:1212 ../../mod/settings.php:79
-#: ../../mod/uexport.php:48 ../../include/nav.php:167
-msgid "Settings"
-msgstr "Instellingen"
+#: ../../mod/dfrn_request.php:827
+msgid "<strike>Connect as an email follower</strike> (Coming soon)"
+msgstr "<strike>Sluit aan als e-mail volger</strike> (Binnenkort)"
 
-#: ../../view/theme/diabook/theme.php:579
-#: ../../view/theme/diabook/theme.php:625
-#: ../../view/theme/diabook/config.php:159
-msgid "Earth Layers"
-msgstr "Earth Layers"
+#: ../../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 "Als je nog geen lid bent van het vrije sociale web,  <a href=\"http://dir.friendica.com/siteinfo\">volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan</a>."
 
-#: ../../view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
-msgstr ""
+#: ../../mod/dfrn_request.php:832
+msgid "Friend/Connection Request"
+msgstr "Vriendschaps-/connectieverzoek"
 
-#: ../../view/theme/diabook/theme.php:585
-#: ../../view/theme/diabook/config.php:156
-msgid "Set longitude (X) for Earth Layers"
-msgstr ""
+#: ../../mod/dfrn_request.php:833
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
 
-#: ../../view/theme/diabook/theme.php:586
-#: ../../view/theme/diabook/config.php:157
-msgid "Set latitude (Y) for Earth Layers"
-msgstr ""
+#: ../../mod/dfrn_request.php:834
+msgid "Please answer the following:"
+msgstr "Beantwoord het volgende:"
 
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:627
-#: ../../view/theme/diabook/config.php:161
-msgid "Help or @NewHere ?"
-msgstr ""
+#: ../../mod/dfrn_request.php:835
+#, php-format
+msgid "Does %s know you?"
+msgstr "Kent %s jou?"
 
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:628
-#: ../../view/theme/diabook/config.php:162
-msgid "Connect Services"
-msgstr "Diensten verbinden"
+#: ../../mod/dfrn_request.php:836 ../../mod/message.php:209
+#: ../../mod/api.php:105 ../../mod/register.php:243 ../../mod/contacts.php:326
+#: ../../mod/settings.php:1001 ../../mod/settings.php:1007
+#: ../../mod/settings.php:1015 ../../mod/settings.php:1019
+#: ../../mod/settings.php:1024 ../../mod/settings.php:1030
+#: ../../mod/settings.php:1036 ../../mod/settings.php:1042
+#: ../../mod/settings.php:1072 ../../mod/settings.php:1073
+#: ../../mod/settings.php:1074 ../../mod/settings.php:1075
+#: ../../mod/settings.php:1076 ../../mod/profiles.php:614
+#: ../../mod/suggest.php:29 ../../include/items.php:4235
+msgid "Yes"
+msgstr "Ja"
 
-#: ../../view/theme/diabook/theme.php:622
-msgid "Show/hide boxes at right-hand column:"
-msgstr ""
+#: ../../mod/dfrn_request.php:837 ../../mod/api.php:106
+#: ../../mod/register.php:244 ../../mod/settings.php:1001
+#: ../../mod/settings.php:1007 ../../mod/settings.php:1015
+#: ../../mod/settings.php:1019 ../../mod/settings.php:1024
+#: ../../mod/settings.php:1030 ../../mod/settings.php:1036
+#: ../../mod/settings.php:1042 ../../mod/settings.php:1072
+#: ../../mod/settings.php:1073 ../../mod/settings.php:1074
+#: ../../mod/settings.php:1075 ../../mod/settings.php:1076
+#: ../../mod/profiles.php:615
+msgid "No"
+msgstr "Nee"
 
-#: ../../view/theme/diabook/config.php:154
-msgid "Set color scheme"
-msgstr "Stel kleurenschema in"
+#: ../../mod/dfrn_request.php:838
+msgid "Add a personal note:"
+msgstr "Voeg een persoonlijke opmerking toe:"
 
-#: ../../view/theme/diabook/config.php:155
-msgid "Set zoomfactor for Earth Layer"
-msgstr ""
+#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Uitlijning"
+#: ../../mod/dfrn_request.php:841
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Gefedereerde Sociale Web"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Links"
+#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:731
+#: ../../include/contact_selectors.php:80
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Gecentreerd"
+#: ../../mod/dfrn_request.php:843
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr "- Gebruik niet dit formulier. Vul %s in in je Diaspora zoekbalk."
 
-#: ../../view/theme/quattro/config.php:68 ../../view/theme/clean/config.php:76
-#: ../../view/theme/cleanzero/config.php:86
-msgid "Color scheme"
-msgstr "Kleurschema"
+#: ../../mod/dfrn_request.php:844
+msgid "Your Identity Address:"
+msgstr "Adres van uw identiteit:"
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "Lettergrootte berichten"
+#: ../../mod/dfrn_request.php:847
+msgid "Submit Request"
+msgstr "Aanvraag indienen"
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr "Lettergrootte tekstgebieden"
+#: ../../mod/dfrn_request.php:848 ../../mod/message.php:212
+#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../mod/photos.php:203
+#: ../../mod/photos.php:292 ../../mod/contacts.php:329 ../../mod/tagrm.php:11
+#: ../../mod/tagrm.php:94 ../../mod/settings.php:610
+#: ../../mod/settings.php:636 ../../mod/suggest.php:32
+#: ../../include/items.php:4238 ../../include/conversation.php:1127
+msgid "Cancel"
+msgstr "Annuleren"
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Stel kleurschema in"
+#: ../../mod/files.php:156 ../../mod/videos.php:301
+#: ../../include/text.php:1400
+msgid "View Video"
+msgstr "Bekijk Video"
 
-#: ../../view/theme/clean/config.php:54 ../../include/user.php:246
-#: ../../include/text.php:1658
-msgid "default"
-msgstr "standaard"
+#: ../../mod/profile.php:21 ../../boot.php:1353
+msgid "Requested profile is not available."
+msgstr "Gevraagde profiel is niet beschikbaar."
 
-#: ../../view/theme/clean/config.php:74
-msgid "Background Image"
-msgstr ""
+#: ../../mod/profile.php:155 ../../mod/display.php:99
+msgid "Access to this profile has been restricted."
+msgstr "Toegang tot dit profiel is beperkt."
 
-#: ../../view/theme/clean/config.php:74
-msgid ""
-"The URL to a picture (e.g. from your photo album) that should be used as "
-"background image."
-msgstr ""
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Tips voor nieuwe leden"
 
-#: ../../view/theme/clean/config.php:75
-msgid "Background Color"
-msgstr ""
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Ongeldige <em>request identifier</em>."
 
-#: ../../view/theme/clean/config.php:75
-msgid "HEX value for the background color. Don't include the #"
-msgstr ""
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:211
+msgid "Discard"
+msgstr "Verwerpen"
 
-#: ../../view/theme/clean/config.php:77
-msgid "font size"
-msgstr ""
+#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
+#: ../../mod/notifications.php:210 ../../mod/contacts.php:437
+#: ../../mod/contacts.php:491 ../../mod/contacts.php:701
+msgid "Ignore"
+msgstr "Negeren"
 
-#: ../../view/theme/clean/config.php:77
-msgid "base font size for your interface"
-msgstr ""
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "Systeem"
 
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr ""
+#: ../../mod/notifications.php:83 ../../include/nav.php:142
+msgid "Network"
+msgstr "Netwerk"
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Stel breedte van het thema in"
+#: ../../mod/notifications.php:88 ../../mod/network.php:365
+msgid "Personal"
+msgstr "Persoonlijk"
 
-#: ../../boot.php:684
-msgid "Delete this item?"
-msgstr "Dit item verwijderen?"
+#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:123
+#: ../../include/nav.php:104 ../../include/nav.php:145
+msgid "Home"
+msgstr "Tijdlijn"
 
-#: ../../boot.php:687
-msgid "show fewer"
-msgstr "Minder tonen"
+#: ../../mod/notifications.php:98 ../../include/nav.php:151
+msgid "Introductions"
+msgstr "Verzoeken"
 
-#: ../../boot.php:1015
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "Wijziging %s mislukt. Lees de error logbestanden."
+#: ../../mod/notifications.php:103 ../../mod/message.php:182
+#: ../../include/nav.php:158
+msgid "Messages"
+msgstr "Privéberichten"
 
-#: ../../boot.php:1017
-#, php-format
-msgid "Update Error at %s"
-msgstr "Wijzigingsfout op %s"
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Toon genegeerde verzoeken"
 
-#: ../../boot.php:1127
-msgid "Create a New Account"
-msgstr "Nieuw account aanmaken"
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Verberg genegeerde verzoeken"
 
-#: ../../boot.php:1128 ../../mod/register.php:278 ../../include/nav.php:108
-msgid "Register"
-msgstr "Registreer"
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
+msgid "Notification type: "
+msgstr "Notificatiesoort:"
 
-#: ../../boot.php:1152 ../../include/nav.php:73
-msgid "Logout"
-msgstr "Uitloggen"
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Vriendschapsvoorstel"
 
-#: ../../boot.php:1153 ../../include/nav.php:91
-msgid "Login"
-msgstr "Login"
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
+msgstr "Voorgesteld door %s"
 
-#: ../../boot.php:1155
-msgid "Nickname or Email address: "
-msgstr "Bijnaam of e-mailadres:"
+#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
+#: ../../mod/contacts.php:497
+msgid "Hide this contact from others"
+msgstr "Verberg dit contact voor anderen"
 
-#: ../../boot.php:1156
-msgid "Password: "
-msgstr "Wachtwoord:"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "Post a new friend activity"
+msgstr "Bericht over een nieuwe vriend"
 
-#: ../../boot.php:1157
-msgid "Remember me"
-msgstr "Onthou me"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "if applicable"
+msgstr "Indien toepasbaar"
 
-#: ../../boot.php:1160
-msgid "Or login using OpenID: "
-msgstr "Of log in met OpenID:"
+#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
+#: ../../mod/admin.php:908
+msgid "Approve"
+msgstr "Goedkeuren"
 
-#: ../../boot.php:1166
-msgid "Forgot your password?"
-msgstr "Wachtwoord vergeten?"
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Denkt dat u hem of haar kent:"
 
-#: ../../boot.php:1167 ../../mod/lostpass.php:84
-msgid "Password Reset"
-msgstr "Wachtwoord opnieuw instellen"
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "Ja"
 
-#: ../../boot.php:1169
-msgid "Website Terms of Service"
-msgstr "Gebruikersvoorwaarden website"
+#: ../../mod/notifications.php:181
+msgid "no"
+msgstr "Nee"
 
-#: ../../boot.php:1170
-msgid "terms of service"
-msgstr "servicevoorwaarden"
+#: ../../mod/notifications.php:188
+msgid "Approve as: "
+msgstr "Goedkeuren als:"
 
-#: ../../boot.php:1172
-msgid "Website Privacy Policy"
-msgstr "Privacybeleid website"
+#: ../../mod/notifications.php:189
+msgid "Friend"
+msgstr "Vriend"
 
-#: ../../boot.php:1173
-msgid "privacy policy"
-msgstr "privacybeleid"
+#: ../../mod/notifications.php:190
+msgid "Sharer"
+msgstr "Deler"
 
-#: ../../boot.php:1302
-msgid "Requested account is not available."
-msgstr "Gevraagde account is niet beschikbaar."
+#: ../../mod/notifications.php:190
+msgid "Fan/Admirer"
+msgstr "Fan/Bewonderaar"
 
-#: ../../boot.php:1341 ../../mod/profile.php:21
-msgid "Requested profile is not available."
-msgstr "Gevraagde profiel is niet beschikbaar."
+#: ../../mod/notifications.php:196
+msgid "Friend/Connect Request"
+msgstr "Vriendschapsverzoek"
 
-#: ../../boot.php:1381 ../../boot.php:1485
-msgid "Edit profile"
-msgstr "Bewerk profiel"
+#: ../../mod/notifications.php:196
+msgid "New Follower"
+msgstr "Nieuwe Volger"
 
-#: ../../boot.php:1433 ../../mod/suggest.php:88 ../../mod/match.php:58
-#: ../../include/contact_widgets.php:9
-msgid "Connect"
-msgstr "Verbinden"
+#: ../../mod/notifications.php:217
+msgid "No introductions."
+msgstr "Geen vriendschaps- of connectieverzoeken."
 
-#: ../../boot.php:1447
-msgid "Message"
-msgstr "Bericht"
+#: ../../mod/notifications.php:220 ../../include/nav.php:152
+msgid "Notifications"
+msgstr "Notificaties"
 
-#: ../../boot.php:1455 ../../include/nav.php:169
-msgid "Profiles"
-msgstr "Profielen"
+#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
+#: ../../mod/notifications.php:469
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s vond het bericht van %s leuk"
 
-#: ../../boot.php:1455
-msgid "Manage/edit profiles"
-msgstr "Beheer/wijzig profielen"
+#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
+#: ../../mod/notifications.php:478
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s vond het bericht van %s niet leuk"
 
-#: ../../boot.php:1461 ../../boot.php:1487 ../../mod/profiles.php:726
-msgid "Change profile photo"
-msgstr "Profiel foto wijzigen"
+#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
+#: ../../mod/notifications.php:492
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s is nu bevriend met %s"
 
-#: ../../boot.php:1462 ../../mod/profiles.php:727
-msgid "Create New Profile"
-msgstr "Maak nieuw profiel"
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
+#, php-format
+msgid "%s created a new post"
+msgstr "%s schreef een nieuw bericht"
 
-#: ../../boot.php:1472 ../../mod/profiles.php:738
-msgid "Profile Image"
-msgstr "Profiel afbeelding"
+#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
+#: ../../mod/notifications.php:501
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s gaf een reactie op het bericht van %s"
 
-#: ../../boot.php:1475 ../../mod/profiles.php:740
-msgid "visible to everybody"
-msgstr "zichtbaar voor iedereen"
+#: ../../mod/notifications.php:302
+msgid "No more network notifications."
+msgstr "Geen netwerknotificaties meer"
 
-#: ../../boot.php:1476 ../../mod/profiles.php:741
-msgid "Edit visibility"
-msgstr "Pas zichtbaarheid aan"
+#: ../../mod/notifications.php:306
+msgid "Network Notifications"
+msgstr "Netwerknotificaties"
 
-#: ../../boot.php:1501 ../../mod/directory.php:134 ../../mod/events.php:471
-#: ../../include/event.php:40 ../../include/bb2diaspora.php:415
-msgid "Location:"
-msgstr "Plaats:"
+#: ../../mod/notifications.php:332 ../../mod/notify.php:61
+msgid "No more system notifications."
+msgstr "Geen systeemnotificaties meer."
 
-#: ../../boot.php:1503 ../../mod/directory.php:136
-#: ../../include/profile_advanced.php:17
-msgid "Gender:"
-msgstr "Geslacht:"
+#: ../../mod/notifications.php:336 ../../mod/notify.php:65
+msgid "System Notifications"
+msgstr "Systeemnotificaties"
 
-#: ../../boot.php:1506 ../../mod/directory.php:138
-#: ../../include/profile_advanced.php:37
-msgid "Status:"
-msgstr "Tijdlijn:"
+#: ../../mod/notifications.php:427
+msgid "No more personal notifications."
+msgstr "Geen persoonlijke notificaties meer"
 
-#: ../../boot.php:1508 ../../mod/directory.php:140
-#: ../../include/profile_advanced.php:48
-msgid "Homepage:"
-msgstr "Jouw tijdlijn:"
+#: ../../mod/notifications.php:431
+msgid "Personal Notifications"
+msgstr "Persoonlijke notificaties"
 
-#: ../../boot.php:1584 ../../boot.php:1670
-msgid "g A l F d"
-msgstr "G l j F"
+#: ../../mod/notifications.php:508
+msgid "No more home notifications."
+msgstr "Geen tijdlijn-notificaties meer"
 
-#: ../../boot.php:1585 ../../boot.php:1671
-msgid "F d"
-msgstr "d F"
+#: ../../mod/notifications.php:512
+msgid "Home Notifications"
+msgstr "Tijdlijn-notificaties"
 
-#: ../../boot.php:1630 ../../boot.php:1711
-msgid "[today]"
-msgstr "[vandaag]"
+#: ../../mod/like.php:150 ../../mod/tagger.php:62 ../../mod/subthread.php:87
+#: ../../view/theme/diabook/theme.php:471 ../../include/text.php:1955
+#: ../../include/diaspora.php:1908 ../../include/conversation.php:126
+#: ../../include/conversation.php:254
+msgid "photo"
+msgstr "foto"
 
-#: ../../boot.php:1642
-msgid "Birthday Reminders"
-msgstr "Verjaardagsherinneringen"
+#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/tagger.php:62
+#: ../../mod/subthread.php:87 ../../view/theme/diabook/theme.php:466
+#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:1908
+#: ../../include/conversation.php:121 ../../include/conversation.php:130
+#: ../../include/conversation.php:249 ../../include/conversation.php:258
+msgid "status"
+msgstr "status"
 
-#: ../../boot.php:1643
-msgid "Birthdays this week:"
-msgstr "Verjaardagen deze week:"
+#: ../../mod/like.php:167 ../../view/theme/diabook/theme.php:480
+#: ../../include/diaspora.php:1924 ../../include/conversation.php:137
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s vind %3$s van %2$s leuk"
 
-#: ../../boot.php:1704
-msgid "[No description]"
-msgstr "[Geen beschrijving]"
+#: ../../mod/like.php:169 ../../include/conversation.php:140
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s vind %3$s van %2$s niet leuk"
 
-#: ../../boot.php:1722
-msgid "Event Reminders"
-msgstr "Gebeurtenisherinneringen"
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID protocol fout. Geen ID Gevonden."
 
-#: ../../boot.php:1723
-msgid "Events this week:"
-msgstr "Gebeurtenissen deze week:"
+#: ../../mod/openid.php:53
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website."
 
-#: ../../boot.php:1960 ../../include/nav.php:76
-msgid "Status"
-msgstr "Tijdlijn"
+#: ../../mod/openid.php:93 ../../include/auth.php:112
+#: ../../include/auth.php:175
+msgid "Login failed."
+msgstr "Login mislukt."
 
-#: ../../boot.php:1963
-msgid "Status Messages and Posts"
-msgstr "Berichten op jouw tijdlijn"
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Bron (bbcode) tekst:"
 
-#: ../../boot.php:1970
-msgid "Profile Details"
-msgstr "Profiel Details"
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Bron (Diaspora) tekst om naar BBCode om te zetten:"
 
-#: ../../boot.php:1977 ../../mod/photos.php:51
-msgid "Photo Albums"
-msgstr "Fotoalbums"
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "Bron ingave:"
 
-#: ../../boot.php:1981 ../../boot.php:1984
-msgid "Videos"
-msgstr "Video's"
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (ruwe HTML):"
 
-#: ../../boot.php:1994
-msgid "Events and Calendar"
-msgstr "Gebeurtenissen en kalender"
+#: ../../mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html:"
 
-#: ../../boot.php:1998 ../../mod/notes.php:44
-msgid "Personal Notes"
-msgstr "Persoonlijke Nota's"
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
 
-#: ../../boot.php:2001
-msgid "Only You Can See This"
-msgstr "Alleen jij kunt dit zien"
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
 
-#: ../../mod/mood.php:62 ../../include/conversation.php:227
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s is op dit moment %2$s"
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
 
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr "Stemming"
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr "Stel je huidige stemming in, en vertel het je vrienden"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
 
-#: ../../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 "Niet vrij toegankelijk"
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Bron ingave (Diaspora formaat):"
 
-#: ../../mod/display.php:51 ../../mod/display.php:246 ../../mod/decrypt.php:15
-#: ../../mod/admin.php:163 ../../mod/admin.php:952 ../../mod/admin.php:1152
-#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15
-#: ../../include/items.php:4023
-msgid "Item not found."
-msgstr "Item niet gevonden."
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
 
-#: ../../mod/display.php:99 ../../mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "Toegang tot dit profiel is beperkt."
+#: ../../mod/admin.php:55
+msgid "Theme settings updated."
+msgstr "Thema-instellingen aangepast."
 
-#: ../../mod/display.php:239
-msgid "Item has been removed."
-msgstr "Item is verwijderd."
+#: ../../mod/admin.php:102 ../../mod/admin.php:573
+msgid "Site"
+msgstr "Website"
 
-#: ../../mod/decrypt.php:9 ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Toegang geweigerd"
+#: ../../mod/admin.php:103 ../../mod/admin.php:901 ../../mod/admin.php:916
+msgid "Users"
+msgstr "Gebruiker"
 
-#: ../../mod/friendica.php:58
-msgid "This is Friendica, version"
-msgstr "Dit is Friendica, versie"
+#: ../../mod/admin.php:104 ../../mod/admin.php:1005 ../../mod/admin.php:1058
+#: ../../mod/settings.php:57
+msgid "Plugins"
+msgstr "Plugins"
 
-#: ../../mod/friendica.php:59
-msgid "running at web location"
-msgstr "draaiend op web-adres"
+#: ../../mod/admin.php:105 ../../mod/admin.php:1224 ../../mod/admin.php:1258
+msgid "Themes"
+msgstr "Thema's"
 
-#: ../../mod/friendica.php:61
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Bezoek <a href=\"http://friendica.com\">Friendica.com</a> om meer te leren over het Friendica project."
+#: ../../mod/admin.php:106
+msgid "DB updates"
+msgstr "DB aanpassingen"
 
-#: ../../mod/friendica.php:63
-msgid "Bug reports and issues: please visit"
-msgstr "Bug rapporten en problemen: bezoek"
+#: ../../mod/admin.php:121 ../../mod/admin.php:128 ../../mod/admin.php:1345
+msgid "Logs"
+msgstr "Logs"
 
-#: ../../mod/friendica.php:64
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com"
+#: ../../mod/admin.php:126 ../../include/nav.php:180
+msgid "Admin"
+msgstr "Beheer"
 
-#: ../../mod/friendica.php:78
-msgid "Installed plugins/addons/apps:"
-msgstr "Geïnstalleerde plugins/toepassingen:"
+#: ../../mod/admin.php:127
+msgid "Plugin Features"
+msgstr "Plugin Functies"
 
-#: ../../mod/friendica.php:91
-msgid "No installed plugins/addons/apps"
-msgstr "Geen plugins of toepassingen geïnstalleerd"
+#: ../../mod/admin.php:129
+msgid "User registrations waiting for confirmation"
+msgstr "Gebruikersregistraties wachten op bevestiging"
 
-#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s heet %2$s van harte welkom"
+#: ../../mod/admin.php:164 ../../mod/admin.php:955 ../../mod/admin.php:1166
+#: ../../mod/notice.php:15 ../../mod/display.php:51 ../../mod/display.php:270
+#: ../../mod/viewsrc.php:15 ../../include/items.php:4194
+msgid "Item not found."
+msgstr "Item niet gevonden."
 
-#: ../../mod/register.php:91 ../../mod/admin.php:734 ../../mod/regmod.php:54
-#, php-format
-msgid "Registration details for %s"
-msgstr "Registratie details voor %s"
+#: ../../mod/admin.php:188 ../../mod/admin.php:855
+msgid "Normal Account"
+msgstr "Normale Account"
 
-#: ../../mod/register.php:99
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Registratie geslaagd. Kijk je e-mail na voor verdere instructies."
+#: ../../mod/admin.php:189 ../../mod/admin.php:856
+msgid "Soapbox Account"
+msgstr "Zeepkist Account"
 
-#: ../../mod/register.php:103
-msgid "Failed to send email message. Here is the message that failed."
-msgstr "E-mail bericht kon niet verstuurd worden. Hier is het bericht."
+#: ../../mod/admin.php:190 ../../mod/admin.php:857
+msgid "Community/Celebrity Account"
+msgstr "Gemeenschap/Beroemdheid Account"
 
-#: ../../mod/register.php:108
-msgid "Your registration can not be processed."
-msgstr "Je registratie kan niet verwerkt worden."
+#: ../../mod/admin.php:191 ../../mod/admin.php:858
+msgid "Automatic Friend Account"
+msgstr "Automatisch Vriendschapsaccount"
 
-#: ../../mod/register.php:148
-#, php-format
-msgid "Registration request at %s"
-msgstr "Registratieverzoek op %s"
+#: ../../mod/admin.php:192
+msgid "Blog Account"
+msgstr "Blog Account"
 
-#: ../../mod/register.php:157
-msgid "Your registration is pending approval by the site owner."
-msgstr "Je registratie wacht op goedkeuring van de beheerder."
+#: ../../mod/admin.php:193
+msgid "Private Forum"
+msgstr "Privé Forum"
 
-#: ../../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 "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen a.u.b. opnieuw."
+#: ../../mod/admin.php:212
+msgid "Message queues"
+msgstr "Bericht-wachtrijen"
 
-#: ../../mod/register.php:223
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken."
-
-#: ../../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 "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in."
-
-#: ../../mod/register.php:225
-msgid "Your OpenID (optional): "
-msgstr "Je OpenID (optioneel):"
-
-#: ../../mod/register.php:239
-msgid "Include your profile in member directory?"
-msgstr "Je profiel in de ledengids opnemen?"
-
-#: ../../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/admin.php:217 ../../mod/admin.php:572 ../../mod/admin.php:900
+#: ../../mod/admin.php:1004 ../../mod/admin.php:1057 ../../mod/admin.php:1223
+#: ../../mod/admin.php:1257 ../../mod/admin.php:1344
+msgid "Administration"
+msgstr "Beheer"
 
-#: ../../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 "Nee"
+#: ../../mod/admin.php:218
+msgid "Summary"
+msgstr "Samenvatting"
 
-#: ../../mod/register.php:260
-msgid "Membership on this site is by invitation only."
-msgstr "Lidmaatschap van deze website is uitsluitend op uitnodiging."
+#: ../../mod/admin.php:220
+msgid "Registered users"
+msgstr "Geregistreerde gebruikers"
 
-#: ../../mod/register.php:261
-msgid "Your invitation ID: "
-msgstr "Je uitnodigingsid:"
+#: ../../mod/admin.php:222
+msgid "Pending registrations"
+msgstr "Registraties die in de wacht staan"
 
-#: ../../mod/register.php:264 ../../mod/admin.php:572
-msgid "Registration"
-msgstr "Registratie"
+#: ../../mod/admin.php:223
+msgid "Version"
+msgstr "Versie"
 
-#: ../../mod/register.php:272
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Je volledige naam (bijv. Jan Jansens):"
+#: ../../mod/admin.php:225
+msgid "Active plugins"
+msgstr "Actieve plug-ins"
 
-#: ../../mod/register.php:273
-msgid "Your Email Address: "
-msgstr "Je email adres:"
+#: ../../mod/admin.php:248
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr ""
 
-#: ../../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 "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan '<strong>bijnaam@$sitename</strong>' zijn."
+#: ../../mod/admin.php:485
+msgid "Site settings updated."
+msgstr "Site instellingen gewijzigd."
 
-#: ../../mod/register.php:275
-msgid "Choose a nickname: "
-msgstr "Kies een bijnaam:"
+#: ../../mod/admin.php:514 ../../mod/settings.php:823
+msgid "No special theme for mobile devices"
+msgstr "Geen speciaal thema voor mobiele apparaten"
 
-#: ../../mod/register.php:284 ../../mod/uimport.php:64
-msgid "Import"
-msgstr "Importeren"
+#: ../../mod/admin.php:531 ../../mod/contacts.php:408
+msgid "Never"
+msgstr "Nooit"
 
-#: ../../mod/register.php:285
-msgid "Import your profile to this friendica instance"
+#: ../../mod/admin.php:532
+msgid "At post arrival"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18
-#: ../../mod/profiles.php:133 ../../mod/profiles.php:160
-#: ../../mod/profiles.php:583
-msgid "Profile not found."
-msgstr "Profiel niet gevonden"
-
-#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131
-#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
-msgid "Contact not found."
-msgstr "Contact niet gevonden"
+#: ../../mod/admin.php:533 ../../include/contact_selectors.php:56
+msgid "Frequently"
+msgstr "Frequent"
 
-#: ../../mod/dfrn_confirm.php:119
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd."
+#: ../../mod/admin.php:534 ../../include/contact_selectors.php:57
+msgid "Hourly"
+msgstr "elk uur"
 
-#: ../../mod/dfrn_confirm.php:237
-msgid "Response from remote site was not understood."
-msgstr "Antwoord van de website op afstand werd niet begrepen."
+#: ../../mod/admin.php:535 ../../include/contact_selectors.php:58
+msgid "Twice daily"
+msgstr "Twee keer per dag"
 
-#: ../../mod/dfrn_confirm.php:246
-msgid "Unexpected response from remote site: "
-msgstr "Onverwacht antwoord van website op afstand:"
+#: ../../mod/admin.php:536 ../../include/contact_selectors.php:59
+msgid "Daily"
+msgstr "dagelijks"
 
-#: ../../mod/dfrn_confirm.php:254
-msgid "Confirmation completed successfully."
-msgstr "Bevestiging werd correct voltooid."
+#: ../../mod/admin.php:541
+msgid "Multi user instance"
+msgstr "Server voor meerdere gebruikers"
 
-#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
-#: ../../mod/dfrn_confirm.php:277
-msgid "Remote site reported: "
-msgstr "Website op afstand berichtte: "
+#: ../../mod/admin.php:559
+msgid "Closed"
+msgstr "Gesloten"
 
-#: ../../mod/dfrn_confirm.php:268
-msgid "Temporary failure. Please wait and try again."
-msgstr "Tijdelijke fout. Wacht even en probeer opnieuw."
+#: ../../mod/admin.php:560
+msgid "Requires approval"
+msgstr "Toestemming vereist"
 
-#: ../../mod/dfrn_confirm.php:275
-msgid "Introduction failed or was revoked."
-msgstr "Verzoek mislukt of herroepen."
+#: ../../mod/admin.php:561
+msgid "Open"
+msgstr "Open"
 
-#: ../../mod/dfrn_confirm.php:420
-msgid "Unable to set contact photo."
-msgstr "Ik kan geen contact foto instellen."
+#: ../../mod/admin.php:565
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Geen SSL beleid, links zullen SSL status van pagina volgen"
 
-#: ../../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 is nu bevriend met %2$s"
+#: ../../mod/admin.php:566
+msgid "Force all links to use SSL"
+msgstr "Verplicht alle links om SSL te gebruiken"
 
-#: ../../mod/dfrn_confirm.php:562
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Geen gebruiker gevonden voor '%s'"
+#: ../../mod/admin.php:567
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)"
 
-#: ../../mod/dfrn_confirm.php:572
-msgid "Our site encryption key is apparently messed up."
-msgstr "De encryptie-sleutel van onze webstek is blijkbaar beschadigd."
+#: ../../mod/admin.php:574 ../../mod/admin.php:1059 ../../mod/admin.php:1259
+#: ../../mod/admin.php:1346 ../../mod/settings.php:609
+#: ../../mod/settings.php:719 ../../mod/settings.php:793
+#: ../../mod/settings.php:872 ../../mod/settings.php:1104
+msgid "Save Settings"
+msgstr ""
 
-#: ../../mod/dfrn_confirm.php:583
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons."
+#: ../../mod/admin.php:575 ../../mod/register.php:265
+msgid "Registration"
+msgstr "Registratie"
 
-#: ../../mod/dfrn_confirm.php:604
-msgid "Contact record was not found for you on our site."
-msgstr "We vonden op onze webstek geen contactrecord voor jou."
+#: ../../mod/admin.php:576
+msgid "File upload"
+msgstr "Uploaden bestand"
 
-#: ../../mod/dfrn_confirm.php:618
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s."
+#: ../../mod/admin.php:577
+msgid "Policies"
+msgstr "Beleid"
 
-#: ../../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 "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken."
+#: ../../mod/admin.php:578
+msgid "Advanced"
+msgstr "Geavanceerd"
 
-#: ../../mod/dfrn_confirm.php:649
-msgid "Unable to set your contact credentials on our system."
-msgstr "Niet in staat om op dit systeem je contactreferenties in te stellen."
+#: ../../mod/admin.php:579
+msgid "Performance"
+msgstr "Performantie"
 
-#: ../../mod/dfrn_confirm.php:716
-msgid "Unable to update your contact profile details on our system"
+#: ../../mod/admin.php:580
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:751
-#, php-format
-msgid "Connection accepted at %s"
-msgstr "Uw connectie werd geaccepteerd op %s"
+#: ../../mod/admin.php:583
+msgid "Site name"
+msgstr "Site naam"
 
-#: ../../mod/dfrn_confirm.php:800
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s is toegetreden tot %2$s"
+#: ../../mod/admin.php:584
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
+#: ../../mod/admin.php:585
+msgid "Additional Info"
 msgstr ""
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
+#: ../../mod/admin.php:585
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at dir.friendica.com/siteinfo."
 msgstr ""
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Log in om verder te gaan."
+#: ../../mod/admin.php:586
+msgid "System language"
+msgstr "Systeemtaal"
 
-#: ../../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 "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?"
+#: ../../mod/admin.php:587
+msgid "System theme"
+msgstr "Systeem thema"
 
-#: ../../mod/lostpass.php:17
-msgid "No valid account found."
-msgstr "Geen geldige account gevonden."
+#: ../../mod/admin.php:587
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Standaard systeem thema - kan door gebruikersprofielen veranderd worden - <a href='#' id='cnftheme'>verander thema instellingen</a>"
 
-#: ../../mod/lostpass.php:33
-msgid "Password reset request issued. Check your email."
-msgstr "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na."
+#: ../../mod/admin.php:588
+msgid "Mobile system theme"
+msgstr "Mobiel systeem thema"
 
-#: ../../mod/lostpass.php:44
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Op %s werd gevraagd je wachtwoord opnieuw in te stellen"
+#: ../../mod/admin.php:588
+msgid "Theme for mobile devices"
+msgstr "Thema voor mobiele apparaten"
 
-#: ../../mod/lostpass.php:66
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld."
+#: ../../mod/admin.php:589
+msgid "SSL link policy"
+msgstr "Beleid SSL-links"
 
-#: ../../mod/lostpass.php:85
-msgid "Your password has been reset as requested."
-msgstr "Je wachtwoord is opnieuw ingesteld zoals gevraagd."
+#: ../../mod/admin.php:589
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Bepaald of gegenereerde verwijzingen verplicht SSL moeten gebruiken"
 
-#: ../../mod/lostpass.php:86
-msgid "Your new password is"
-msgstr "Je nieuwe wachtwoord is"
+#: ../../mod/admin.php:590
+msgid "Old style 'Share'"
+msgstr ""
 
-#: ../../mod/lostpass.php:87
-msgid "Save or copy your new password - and then"
-msgstr "Bewaar of kopieer je nieuw wachtwoord - en dan"
+#: ../../mod/admin.php:590
+msgid "Deactivates the bbcode element 'share' for repeating items."
+msgstr ""
 
-#: ../../mod/lostpass.php:88
-msgid "click here to login"
-msgstr "klik hier om in te loggen"
+#: ../../mod/admin.php:591
+msgid "Hide help entry from navigation menu"
+msgstr "Verberg de 'help' uit het navigatiemenu"
 
-#: ../../mod/lostpass.php:89
+#: ../../mod/admin.php:591
 msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de <em>Instellingen></em> pagina."
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Verbergt het menu-item voor de Help pagina's uit het navigatiemenu. Je kunt ze nog altijd vinden door /help direct in te geven."
 
-#: ../../mod/lostpass.php:107
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "Je wachtwoord is veranderd op %s"
+#: ../../mod/admin.php:592
+msgid "Single user instance"
+msgstr "Server voor één gebruiker"
 
-#: ../../mod/lostpass.php:122
-msgid "Forgot your Password?"
-msgstr "Wachtwoord vergeten?"
+#: ../../mod/admin.php:592
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Stel deze server in voor meerdere gebruikers, of enkel voor de geselecteerde gebruiker."
 
-#: ../../mod/lostpass.php:123
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies."
+#: ../../mod/admin.php:593
+msgid "Maximum image size"
+msgstr "Maximum afbeeldingsgrootte"
 
-#: ../../mod/lostpass.php:124
-msgid "Nickname or Email: "
-msgstr "Bijnaam of e-mail:"
+#: ../../mod/admin.php:593
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Maximum afmeting in bytes van afbeeldingen. Standaard is 0, dus geen beperking."
 
-#: ../../mod/lostpass.php:125
-msgid "Reset"
-msgstr "Opnieuw"
+#: ../../mod/admin.php:594
+msgid "Maximum image length"
+msgstr "Maximum afbeeldingslengte"
 
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr ""
+#: ../../mod/admin.php:594
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Maximum lengte in pixels van de langste kant van afbeeldingen. Standaard is -1, dus geen beperkingen."
 
-#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
-msgid "No recipient selected."
-msgstr "Geen ontvanger geselecteerd."
+#: ../../mod/admin.php:595
+msgid "JPEG image quality"
+msgstr "JPEG afbeeldingskwaliteit"
 
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "Niet in staat om je tijdlijn-locatie vast te stellen"
+#: ../../mod/admin.php:595
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "JPEGS zullen met deze kwaliteitsinstelling bewaard worden [0-100]. Standaard is 100, dit is volledige kwaliteit."
 
-#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
-msgid "Message could not be sent."
-msgstr "Bericht kon niet verzonden worden."
+#: ../../mod/admin.php:597
+msgid "Register policy"
+msgstr "Registratiebeleid"
 
-#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
-msgid "Message collection failure."
-msgstr "Fout bij het verzamelen van berichten."
+#: ../../mod/admin.php:598
+msgid "Maximum Daily Registrations"
+msgstr "Maximum aantal registraties per dag"
 
-#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
-msgid "Message sent."
-msgstr "Bericht verzonden."
+#: ../../mod/admin.php:598
+msgid ""
+"If registration is permitted above, this sets the maximum number of new user"
+" registrations to accept per day.  If register is set to closed, this "
+"setting has no effect."
+msgstr "Als registratie hierboven is toegelaten, zet dit het maximum aantal registraties van nieuwe gebruikers per dag. Als registratie niet is toegelaten heeft deze instelling geen effect."
 
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Geen ontvanger."
+#: ../../mod/admin.php:599
+msgid "Register text"
+msgstr "Registratietekst"
 
-#: ../../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 "Vul een internetadres/URL in:"
+#: ../../mod/admin.php:599
+msgid "Will be displayed prominently on the registration page."
+msgstr "Dit zal prominent op de registratiepagina getoond worden."
 
-#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
-msgid "Send Private Message"
-msgstr "Verstuur privébericht"
+#: ../../mod/admin.php:600
+msgid "Accounts abandoned after x days"
+msgstr "Verlaten accounts na x dagen"
 
-#: ../../mod/wallmessage.php:143
-#, php-format
+#: ../../mod/admin.php:600
 msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
-msgstr "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat."
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Dit zal geen systeembronnen verspillen aan het nakijken van externe sites voor verlaten accounts. Geef 0 is voor geen tijdslimiet."
 
-#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
-#: ../../mod/message.php:553
-msgid "To:"
-msgstr "Aan:"
+#: ../../mod/admin.php:601
+msgid "Allowed friend domains"
+msgstr "Toegelaten vriend domeinen"
 
-#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
-#: ../../mod/message.php:555
-msgid "Subject:"
-msgstr "Onderwerp:"
+#: ../../mod/admin.php:601
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Komma-gescheiden lijst van domeinen die een vriendschapsband met deze website mogen aangaan. Jokers zijn toegelaten. Laat leeg om alle domeinen toe te laten."
 
-#: ../../mod/wallmessage.php:151 ../../mod/message.php:329
-#: ../../mod/message.php:558 ../../mod/invite.php:134
-msgid "Your message:"
-msgstr "Jouw bericht:"
+#: ../../mod/admin.php:602
+msgid "Allowed email domains"
+msgstr "Toegelaten e-mail domeinen"
 
-#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
-#: ../../mod/message.php:332 ../../mod/message.php:562
-#: ../../include/conversation.php:1081
-msgid "Upload photo"
-msgstr "Foto uploaden"
+#: ../../mod/admin.php:602
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr "Door komma's gescheiden lijst met e-maildomeinen die op deze website mogen registeren. Wildcards zijn toegestaan.\nLeeg laten om alle domeinen toe te staan."
 
-#: ../../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 "Voeg een webadres in"
+#: ../../mod/admin.php:603
+msgid "Block public"
+msgstr "Openbare toegang blokkeren"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Welkom bij Friendica"
+#: ../../mod/admin.php:603
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers."
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Checklist voor nieuwe leden"
+#: ../../mod/admin.php:604
+msgid "Force publish"
+msgstr "Dwing publiceren af"
 
-#: ../../mod/newmember.php:12
+#: ../../mod/admin.php:604
 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 "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen."
-
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Aan de slag"
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Kruis dit aan om af te dwingen dat alle profielen op deze website in de gids van deze website gepubliceerd worden."
 
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Doorloop Friendica"
+#: ../../mod/admin.php:605
+msgid "Global directory update URL"
+msgstr "Update-adres van de globale gids"
 
-#: ../../mod/newmember.php:18
+#: ../../mod/admin.php:605
 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 "Op je <em>Snelstart</em> pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden."
+"URL to update the global directory. If this is not set, the global directory"
+" is completely unavailable to the application."
+msgstr "URL om de globale gids aan te passen. Als dit niet is ingevuld, is de globale gids volledig onbeschikbaar voor deze toepassing."
 
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Ga naar je instellingen"
+#: ../../mod/admin.php:606
+msgid "Allow threaded items"
+msgstr "Sta threads in conversaties toe"
 
-#: ../../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 "Verander je initieel wachtwoord op je <em>instellingenpagina</em>. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale web."
+#: ../../mod/admin.php:606
+msgid "Allow infinite level threading for items on this site."
+msgstr "Sta oneindige niveaus threads in conversaties op deze website toe."
 
-#: ../../mod/newmember.php:28
+#: ../../mod/admin.php:607
+msgid "Private posts by default for new users"
+msgstr "Privéberichten als standaard voor nieuwe gebruikers"
+
+#: ../../mod/admin.php:607
 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 "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden."
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Stel de standaardrechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar."
 
-#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
-msgid "Upload Profile Photo"
-msgstr "Profielfoto uploaden"
+#: ../../mod/admin.php:608
+msgid "Don't include post content in email notifications"
+msgstr "De inhoud van het bericht niet insluiten bij e-mailnotificaties"
 
-#: ../../mod/newmember.php:36
+#: ../../mod/admin.php:608
 msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make"
-" friends than people who do not."
-msgstr "Upload een profielfoto, als je dat nog niet gedaan hebt. Studies tonen aan dat mensen met echte foto's van zichzelf tien keer gemakkelijker vrienden maken dan mensen die dat niet doen."
+"Don't include the content of a post/comment/private message/etc. in the "
+"email notifications that are sent out from this site, as a privacy measure."
+msgstr "De inhoud van berichten/commentaar/privéberichten/enzovoort  niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy."
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Bewerk je profiel"
+#: ../../mod/admin.php:609
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr ""
 
-#: ../../mod/newmember.php:38
+#: ../../mod/admin.php:609
 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 "Bewerk je <strong>standaard</strong> profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen."
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr ""
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Sleutelwoorden voor dit profiel"
+#: ../../mod/admin.php:610
+msgid "Don't embed private images in posts"
+msgstr ""
 
-#: ../../mod/newmember.php:40
+#: ../../mod/admin.php:610
 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 "Stel enkele openbare sleutelwoorden in voor je standaard profiel die je interesses beschrijven. We kunnen dan misschien mensen vinden met gelijkaardige interesses, en vrienden voorstellen."
-
-#: ../../mod/newmember.php:44
-msgid "Connecting"
-msgstr "Verbinding aan het maken"
+"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/newmember.php:49 ../../mod/newmember.php:51
-#: ../../include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../mod/admin.php:611
+msgid "Allow Users to set remote_self"
+msgstr ""
 
-#: ../../mod/newmember.php:49
+#: ../../mod/admin.php:611
 msgid ""
-"Authorise the Facebook Connector if you currently have a Facebook account "
-"and we will (optionally) import all your Facebook friends and conversations."
-msgstr "Machtig de Facebook Connector als je een Facebook account hebt. We zullen (optioneel) al je Facebook vrienden en conversaties importeren."
+"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/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 "<em>Als</em> dit jouw eigen persoonlijke server is kan het installeren van de Facebook toevoeging je overgang naar het vrije sociale web vergemakkelijken."
+#: ../../mod/admin.php:612
+msgid "Block multiple registrations"
+msgstr "Blokkeer meerdere registraties"
 
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
-msgstr "E-mails importeren"
+#: ../../mod/admin.php:612
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Laat niet toe dat gebruikers meerdere accounts aanmaken."
 
-#: ../../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 "Vul je e-mailtoegangsinformatie in op je pagina met verbindingsinstellingen als je vrienden of mailinglijsten uit je e-mail-inbox wilt importeren, en met hen wilt communiceren"
+#: ../../mod/admin.php:613
+msgid "OpenID support"
+msgstr "OpenID ondersteuning"
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "Ga naar je contactenpagina"
+#: ../../mod/admin.php:613
+msgid "OpenID support for registration and logins."
+msgstr "OpenID ondersteuning voor registraties en logins."
 
-#: ../../mod/newmember.php:58
+#: ../../mod/admin.php:614
+msgid "Fullname check"
+msgstr "Controleer volledige naam"
+
+#: ../../mod/admin.php:614
 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 "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de <em>Voeg nieuw contact toe</em> dialoog."
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Verplicht gebruikers om zich te registreren met een spatie tussen voornaam en achternaam, als anti-spam maatregel"
 
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr "Ga naar de gids van je website"
+#: ../../mod/admin.php:615
+msgid "UTF-8 Regular expressions"
+msgstr "UTF-8 reguliere uitdrukkingen"
 
-#: ../../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 "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord <em>Connect</em> of <em>Follow</em> op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd."
+#: ../../mod/admin.php:615
+msgid "Use PHP UTF8 regular expressions"
+msgstr "Gebruik PHP UTF8 reguliere uitdrukkingen"
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-msgstr "Nieuwe mensen vinden"
+#: ../../mod/admin.php:616
+msgid "Show Community Page"
+msgstr "Toon Gemeenschapspagina"
 
-#: ../../mod/newmember.php:62
+#: ../../mod/admin.php:616
 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 "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden."
-
-#: ../../mod/newmember.php:66 ../../include/group.php:270
-msgid "Groups"
-msgstr "Groepen"
+"Display a Community page showing all recent public postings on this site."
+msgstr "Toon een gemeenschapspagina die alle recente openbare berichten op deze website toont."
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "Groepeer je contacten"
+#: ../../mod/admin.php:617
+msgid "Enable OStatus support"
+msgstr "Activeer OStatus ondersteuning"
 
-#: ../../mod/newmember.php:70
+#: ../../mod/admin.php:617
 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 "Als je een aantal vrienden gemaakt hebt kun je ze in je eigen conversatiegroepen indelen vanuit de zijbalk van je 'Conacten' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. "
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr ""
 
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "Waarom zijn mijn berichten niet openbaar?"
+#: ../../mod/admin.php:618
+msgid "OStatus conversation completion interval"
+msgstr ""
 
-#: ../../mod/newmember.php:73
+#: ../../mod/admin.php:618
 msgid ""
-"Friendica respects your privacy. By default, your posts will only show up to"
-" people you've added as friends. For more information, see the help section "
-"from the link above."
-msgstr "Friendica respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie."
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr ""
 
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr "Hulp krijgen"
+#: ../../mod/admin.php:619
+msgid "Enable Diaspora support"
+msgstr "Activeer Diaspora ondersteuning"
 
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "Ga naar de help"
+#: ../../mod/admin.php:619
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Bied ingebouwde ondersteuning voor het Diaspora netwerk."
 
-#: ../../mod/newmember.php:82
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Je kunt onze <strong>help</strong> pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma."
+#: ../../mod/admin.php:620
+msgid "Only allow Friendica contacts"
+msgstr "Laat alleen Friendica contacten toe"
 
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Wil je echt dit voorstel verwijderen?"
+#: ../../mod/admin.php:620
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Alle contacten moeten een Friendica protocol gebruiken. Alle andere ingebouwde communicatieprotocols worden uitgeschakeld."
 
-#: ../../mod/suggest.php:32 ../../mod/editpost.php:148
-#: ../../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:4067
-msgid "Cancel"
-msgstr "Annuleren"
+#: ../../mod/admin.php:621
+msgid "Verify SSL"
+msgstr "Controleer SSL"
 
-#: ../../mod/suggest.php:72
+#: ../../mod/admin.php:621
 msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen."
+"If you wish, you can turn on strict certificate checking. This will mean you"
+" cannot connect (at all) to self-signed SSL sites."
+msgstr "Als je wilt kun je striktere certificaat controle activeren. Dit betekent dat je (totaal) niet kunt connecteren met sites die zelf-ondertekende SSL certificaten gebruiken."
 
-#: ../../mod/suggest.php:90
-msgid "Ignore/Hide"
-msgstr "Negeren/Verbergen"
+#: ../../mod/admin.php:622
+msgid "Proxy user"
+msgstr "Proxy-gebruiker"
 
-#: ../../mod/network.php:179
-msgid "Search Results For:"
-msgstr "Zoekresultaten voor:"
+#: ../../mod/admin.php:623
+msgid "Proxy URL"
+msgstr "Proxy-URL"
 
-#: ../../mod/network.php:222 ../../mod/_search.php:21 ../../mod/search.php:21
-msgid "Remove term"
-msgstr "Verwijder zoekterm"
+#: ../../mod/admin.php:624
+msgid "Network timeout"
+msgstr "Netwerk timeout"
 
-#: ../../mod/network.php:231 ../../mod/_search.php:30 ../../mod/search.php:30
-#: ../../include/features.php:41
-msgid "Saved Searches"
-msgstr "Opgeslagen zoekopdrachten"
+#: ../../mod/admin.php:624
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)."
 
-#: ../../mod/network.php:232 ../../include/group.php:275
-msgid "add"
-msgstr "toevoegen"
+#: ../../mod/admin.php:625
+msgid "Delivery interval"
+msgstr "Afleverinterval"
 
-#: ../../mod/network.php:394
-msgid "Commented Order"
-msgstr "Nieuwe reacties bovenaan"
+#: ../../mod/admin.php:625
+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 "Stel achtergrond processen voor aflevering een aantal seconden uit om systeembelasting te beperken. Aanbevolen: 4-5 voor gedeelde hosten, 2-3 voor virtuele privé servers, 0-1 voor grote servers."
 
-#: ../../mod/network.php:397
-msgid "Sort by Comment Date"
-msgstr "Berichten met nieuwe reacties bovenaan"
+#: ../../mod/admin.php:626
+msgid "Poll interval"
+msgstr "Poll-interval"
 
-#: ../../mod/network.php:400
-msgid "Posted Order"
-msgstr "Nieuwe berichten bovenaan"
+#: ../../mod/admin.php:626
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Stel achtergrondprocessen zoveel seconden uit om de systeembelasting te beperken. Indien 0 wordt het afleverinterval gebruikt."
 
-#: ../../mod/network.php:403
-msgid "Sort by Post Date"
-msgstr "Nieuwe berichten bovenaan"
+#: ../../mod/admin.php:627
+msgid "Maximum Load Average"
+msgstr "Maximum gemiddelde belasting"
 
-#: ../../mod/network.php:441 ../../mod/notifications.php:88
-msgid "Personal"
-msgstr "Persoonlijk"
+#: ../../mod/admin.php:627
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Maximum systeembelasting voordat aflever- en poll-processen uitgesteld worden - standaard 50."
 
-#: ../../mod/network.php:444
-msgid "Posts that mention or involve you"
-msgstr "Alleen berichten die jou vermelden of op jou betrekking hebben"
+#: ../../mod/admin.php:629
+msgid "Use MySQL full text engine"
+msgstr "Gebruik de tekst-zoekfunctie van MySQL"
 
-#: ../../mod/network.php:450
-msgid "New"
-msgstr "Nieuw"
+#: ../../mod/admin.php:629
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
+msgstr "Activeert de zoekmotor. Dit maakt zoeken sneller, maar het kan alleen zoeken naar teksten van minstens vier letters."
 
-#: ../../mod/network.php:453
-msgid "Activity Stream - by date"
-msgstr "Activiteitenstroom - volgens datum"
+#: ../../mod/admin.php:630
+msgid "Suppress Language"
+msgstr ""
 
-#: ../../mod/network.php:459
-msgid "Shared Links"
-msgstr "Gedeelde links"
+#: ../../mod/admin.php:630
+msgid "Suppress language information in meta information about a posting."
+msgstr ""
 
-#: ../../mod/network.php:462
-msgid "Interesting Links"
-msgstr "Interessante links"
-
-#: ../../mod/network.php:468
-msgid "Starred"
-msgstr "Met ster"
+#: ../../mod/admin.php:631
+msgid "Path to item cache"
+msgstr "Pad naar cache voor items"
 
-#: ../../mod/network.php:471
-msgid "Favourite Posts"
-msgstr "Favoriete berichten"
+#: ../../mod/admin.php:632
+msgid "Cache duration in seconds"
+msgstr "Cache tijdsduur in seconden"
 
-#: ../../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] "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk."
-msgstr[1] "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk."
+#: ../../mod/admin.php:632
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day)."
+msgstr "Hoe lang moeten bestanden in cache gehouden worden? Standaard waarde is 86400 seconden (een dag)."
 
-#: ../../mod/network.php:542
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "Privéberichten naar deze groep kunnen openbaar gemaakt worden."
+#: ../../mod/admin.php:633
+msgid "Path for lock file"
+msgstr "Pad voor lock bestand"
 
-#: ../../mod/network.php:588 ../../mod/content.php:119
-msgid "No such group"
-msgstr "Zo'n groep bestaat niet"
+#: ../../mod/admin.php:634
+msgid "Temp path"
+msgstr "Tijdelijk pad"
 
-#: ../../mod/network.php:599 ../../mod/content.php:130
-msgid "Group is empty"
-msgstr "De groep is leeg"
+#: ../../mod/admin.php:635
+msgid "Base path to installation"
+msgstr "Basispad voor installatie"
 
-#: ../../mod/network.php:605 ../../mod/content.php:134
-msgid "Group: "
-msgstr "Groep:"
+#: ../../mod/admin.php:637
+msgid "New base url"
+msgstr ""
 
-#: ../../mod/network.php:617
-msgid "Contact: "
-msgstr "Contact: "
+#: ../../mod/admin.php:655
+msgid "Update has been marked successful"
+msgstr "Wijziging succesvol gemarkeerd "
 
-#: ../../mod/network.php:619
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Privéberichten naar deze persoon kunnen openbaar gemaakt worden."
+#: ../../mod/admin.php:665
+#, php-format
+msgid "Executing %s failed. Check system logs."
+msgstr "Uitvoering van %s is mislukt. Kijk de systeem logbestanden na."
 
-#: ../../mod/network.php:624
-msgid "Invalid contact."
-msgstr "Ongeldig contact."
+#: ../../mod/admin.php:668
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Wijziging %s geslaagd."
 
-#: ../../mod/install.php:117
-msgid "Friendica Communications Server - Setup"
-msgstr ""
+#: ../../mod/admin.php:672
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "Wijziging %s gaf geen status terug. We weten niet of de wijziging geslaagd is."
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
-msgstr "Kon geen toegang krijgen tot de database."
+#: ../../mod/admin.php:675
+#, php-format
+msgid "Update function %s could not be found."
+msgstr "Update-functie %s kon niet gevonden worden."
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "Kon tabel niet aanmaken."
+#: ../../mod/admin.php:690
+msgid "No failed updates."
+msgstr "Geen misluke wijzigingen"
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
-msgstr "De database van je Friendica-website is geïnstalleerd."
+#: ../../mod/admin.php:694
+msgid "Failed Updates"
+msgstr "Misluke wijzigingen"
 
-#: ../../mod/install.php:138
+#: ../../mod/admin.php:695
 msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql."
-
-#: ../../mod/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:521
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Zie het bestand \"INSTALL.txt\"."
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "Dit is zonder de wijzigingen voor 1139, welke geen status teruggaven."
 
-#: ../../mod/install.php:203
-msgid "System check"
-msgstr "Systeemcontrole"
+#: ../../mod/admin.php:696
+msgid "Mark success (if update was manually applied)"
+msgstr "Markeren als succes (als aanpassing manueel doorgevoerd werd)"
 
-#: ../../mod/install.php:207 ../../mod/events.php:373
-msgid "Next"
-msgstr "Volgende"
+#: ../../mod/admin.php:697
+msgid "Attempt to execute this update step automatically"
+msgstr "Probeer deze stap automatisch uit te voeren"
 
-#: ../../mod/install.php:208
-msgid "Check again"
-msgstr "Controleer opnieuw"
+#: ../../mod/admin.php:737 ../../mod/register.php:92 ../../mod/regmod.php:54
+#, php-format
+msgid "Registration details for %s"
+msgstr "Registratie details voor %s"
 
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "Verbinding met database"
+#: ../../mod/admin.php:743
+msgid "Registration successful. Email send to user"
+msgstr ""
 
-#: ../../mod/install.php:228
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken."
+#: ../../mod/admin.php:753
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s gebruiker geblokkeerd/niet geblokkeerd"
+msgstr[1] "%s gebruikers geblokkeerd/niet geblokkeerd"
 
-#: ../../mod/install.php:229
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. "
+#: ../../mod/admin.php:760
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s gebruiker verwijderd"
+msgstr[1] "%s gebruikers verwijderd"
 
-#: ../../mod/install.php:230
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat."
+#: ../../mod/admin.php:799
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Gebruiker '%s' verwijderd"
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
-msgstr "Servernaam database"
+#: ../../mod/admin.php:807
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Gebruiker '%s' niet meer geblokkeerd"
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
-msgstr "Gebruikersnaam database"
+#: ../../mod/admin.php:807
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Gebruiker '%s' geblokkeerd"
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
-msgstr "Wachtwoord database"
+#: ../../mod/admin.php:902
+msgid "Add User"
+msgstr ""
 
-#: ../../mod/install.php:237
-msgid "Database Name"
-msgstr "Naam database"
+#: ../../mod/admin.php:903
+msgid "select all"
+msgstr "Alles selecteren"
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "E-mailadres van de websitebeheerder"
+#: ../../mod/admin.php:904
+msgid "User registrations waiting for confirm"
+msgstr "Gebruikersregistraties wachten op een bevestiging"
 
-#: ../../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 "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken."
+#: ../../mod/admin.php:905
+msgid "User waiting for permanent deletion"
+msgstr ""
 
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
-msgstr "Selecteer een standaard tijdzone voor uw website"
+#: ../../mod/admin.php:906
+msgid "Request date"
+msgstr "Registratiedatum"
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "Website-instellingen"
+#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919
+#: ../../mod/admin.php:932 ../../mod/settings.php:611
+#: ../../mod/settings.php:637 ../../mod/crepair.php:150
+msgid "Name"
+msgstr "Naam"
 
-#: ../../mod/install.php:321
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Kan geen command-line-versie van PHP vinden in het PATH van de webserver."
+#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919
+#: ../../mod/admin.php:934 ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:86
+msgid "Email"
+msgstr "E-mail"
 
-#: ../../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 "Als je geen command-line versie van PHP geïnstalleerd hebt op je server, kun je geen polling op de achtergrond gebruiken via cron. Zie  <a href='http://friendica.com/node/27'>'Activeren van geplande taken'</a>"
+#: ../../mod/admin.php:907
+msgid "No registrations."
+msgstr "Geen registraties."
 
-#: ../../mod/install.php:326
-msgid "PHP executable path"
-msgstr "PATH van het PHP commando"
+#: ../../mod/admin.php:909
+msgid "Deny"
+msgstr "Weiger"
 
-#: ../../mod/install.php:326
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten."
+#: ../../mod/admin.php:911 ../../mod/contacts.php:431
+#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
+msgid "Block"
+msgstr "Blokkeren"
 
-#: ../../mod/install.php:331
-msgid "Command line PHP"
-msgstr "PHP-opdrachtregel"
+#: ../../mod/admin.php:912 ../../mod/contacts.php:431
+#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
+msgid "Unblock"
+msgstr "Blokkering opheffen"
 
-#: ../../mod/install.php:340
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr ""
+#: ../../mod/admin.php:913
+msgid "Site admin"
+msgstr "Sitebeheerder"
 
-#: ../../mod/install.php:341
-msgid "Found PHP version: "
-msgstr "Gevonden PHP versie:"
+#: ../../mod/admin.php:914
+msgid "Account expired"
+msgstr "Account verlopen"
 
-#: ../../mod/install.php:343
-msgid "PHP cli binary"
+#: ../../mod/admin.php:917
+msgid "New User"
 msgstr ""
 
-#: ../../mod/install.php:354
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd."
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Register date"
+msgstr "Registratiedatum"
 
-#: ../../mod/install.php:355
-msgid "This is required for message delivery to work."
-msgstr "Dit is nodig om het verzenden van berichten mogelijk te maken."
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Last login"
+msgstr "Laatste login"
 
-#: ../../mod/install.php:357
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Last item"
+msgstr "Laatste item"
 
-#: ../../mod/install.php:378
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
+#: ../../mod/admin.php:918
+msgid "Deleted since"
 msgstr ""
 
-#: ../../mod/install.php:379
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait."
+#: ../../mod/admin.php:919 ../../mod/settings.php:36
+msgid "Account"
+msgstr "Account"
 
-#: ../../mod/install.php:381
-msgid "Generate encryption keys"
+#: ../../mod/admin.php:921
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Geselecteerde gebruikers zullen verwijderd worden!\\n\\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"
+
+#: ../../mod/admin.php:922
+msgid ""
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "De gebruiker {0} zal verwijderd worden!\\n\\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"
+
+#: ../../mod/admin.php:932
+msgid "Name of the new user."
 msgstr ""
 
-#: ../../mod/install.php:388
-msgid "libCurl PHP module"
-msgstr "libCurl PHP module"
+#: ../../mod/admin.php:933
+msgid "Nickname"
+msgstr ""
 
-#: ../../mod/install.php:389
-msgid "GD graphics PHP module"
-msgstr "GD graphics PHP module"
+#: ../../mod/admin.php:933
+msgid "Nickname of the new user."
+msgstr ""
 
-#: ../../mod/install.php:390
-msgid "OpenSSL PHP module"
-msgstr "OpenSSL PHP module"
+#: ../../mod/admin.php:934
+msgid "Email address of the new user."
+msgstr ""
 
-#: ../../mod/install.php:391
-msgid "mysqli PHP module"
-msgstr "mysqli PHP module"
+#: ../../mod/admin.php:967
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Plugin %s uitgeschakeld."
 
-#: ../../mod/install.php:392
-msgid "mb_string PHP module"
-msgstr "mb_string PHP module"
+#: ../../mod/admin.php:971
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Plugin %s ingeschakeld."
 
-#: ../../mod/install.php:397 ../../mod/install.php:399
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite module"
+#: ../../mod/admin.php:981 ../../mod/admin.php:1195
+msgid "Disable"
+msgstr "Uitschakelen"
 
-#: ../../mod/install.php:397
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd."
+#: ../../mod/admin.php:983 ../../mod/admin.php:1197
+msgid "Enable"
+msgstr "Inschakelen"
 
-#: ../../mod/install.php:405
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd."
+#: ../../mod/admin.php:1006 ../../mod/admin.php:1225
+msgid "Toggle"
+msgstr "Schakelaar"
 
-#: ../../mod/install.php:409
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd."
+#: ../../mod/admin.php:1007 ../../mod/admin.php:1226
+#: ../../mod/newmember.php:22 ../../mod/settings.php:85
+#: ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:169
+msgid "Settings"
+msgstr "Instellingen"
 
-#: ../../mod/install.php:413
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd."
+#: ../../mod/admin.php:1014 ../../mod/admin.php:1235
+msgid "Author: "
+msgstr "Auteur:"
 
-#: ../../mod/install.php:417
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd."
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1236
+msgid "Maintainer: "
+msgstr "Onderhoud:"
 
-#: ../../mod/install.php:421
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd."
+#: ../../mod/admin.php:1155
+msgid "No themes found."
+msgstr "Geen thema's gevonden."
 
-#: ../../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 "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen."
+#: ../../mod/admin.php:1217
+msgid "Screenshot"
+msgstr "Schermafdruk"
 
-#: ../../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 "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel."
+#: ../../mod/admin.php:1263
+msgid "[Experimental]"
+msgstr "[Experimenteel]"
 
-#: ../../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 "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map."
+#: ../../mod/admin.php:1264
+msgid "[Unsupported]"
+msgstr "[Niet ondersteund]"
 
-#: ../../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 "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies."
+#: ../../mod/admin.php:1291
+msgid "Log settings updated."
+msgstr "Log instellingen gewijzigd"
 
-#: ../../mod/install.php:444
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php is schrijfbaar"
+#: ../../mod/admin.php:1347
+msgid "Clear"
+msgstr "Wis"
 
-#: ../../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 "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen."
+#: ../../mod/admin.php:1353
+msgid "Enable Debugging"
+msgstr ""
 
-#: ../../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 "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie."
+#: ../../mod/admin.php:1354
+msgid "Log file"
+msgstr "Logbestand"
 
-#: ../../mod/install.php:456
+#: ../../mod/admin.php:1354
 msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Zorg er a.u.b. voor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map."
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "De webserver moet hier kunnen schrijven. Relatief t.o.v. van de hoogste folder binnen uw Friendica-installatie."
 
-#: ../../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 "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten."
+#: ../../mod/admin.php:1355
+msgid "Log level"
+msgstr "Log niveau"
 
-#: ../../mod/install.php:460
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 is schrijfbaar"
+#: ../../mod/admin.php:1404 ../../mod/contacts.php:487
+msgid "Update now"
+msgstr "Wijzig nu"
 
-#: ../../mod/install.php:472
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr ""
+#: ../../mod/admin.php:1405
+msgid "Close"
+msgstr "Afsluiten"
 
-#: ../../mod/install.php:474
-msgid "Url rewrite is working"
-msgstr ""
+#: ../../mod/admin.php:1411
+msgid "FTP Host"
+msgstr "FTP Server"
 
-#: ../../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 "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver."
+#: ../../mod/admin.php:1412
+msgid "FTP Path"
+msgstr "FTP Pad"
 
-#: ../../mod/install.php:508
-msgid "Errors encountered creating database tables."
-msgstr "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld."
+#: ../../mod/admin.php:1413
+msgid "FTP User"
+msgstr "FTP Gebruiker"
 
-#: ../../mod/install.php:519
-msgid "<h1>What next</h1>"
-msgstr "<h1>Wat nu</h1>"
+#: ../../mod/admin.php:1414
+msgid "FTP Password"
+msgstr "FTP wachtwoord"
 
-#: ../../mod/install.php:520
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller."
+#: ../../mod/message.php:9 ../../include/nav.php:161
+msgid "New Message"
+msgstr "Nieuw Bericht"
 
-#: ../../mod/admin.php:55
-msgid "Theme settings updated."
-msgstr "Thema instellingen aangepast."
+#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
+msgid "No recipient selected."
+msgstr "Geen ontvanger geselecteerd."
 
-#: ../../mod/admin.php:101 ../../mod/admin.php:570
-msgid "Site"
-msgstr "Website"
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Ik kan geen contact informatie vinden."
 
-#: ../../mod/admin.php:102 ../../mod/admin.php:898 ../../mod/admin.php:913
-msgid "Users"
-msgstr "Gebruiker"
+#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
+msgid "Message could not be sent."
+msgstr "Bericht kon niet verzonden worden."
 
-#: ../../mod/admin.php:103 ../../mod/admin.php:1002 ../../mod/admin.php:1044
-msgid "Plugins"
-msgstr "Plugins"
+#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
+msgid "Message collection failure."
+msgstr "Fout bij het verzamelen van berichten."
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:1210 ../../mod/admin.php:1244
-msgid "Themes"
-msgstr "Thema's"
+#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
+msgid "Message sent."
+msgstr "Bericht verzonden."
 
-#: ../../mod/admin.php:105
-msgid "DB updates"
-msgstr "DB aanpassingen"
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Wil je echt dit bericht verwijderen?"
 
-#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1331
-msgid "Logs"
-msgstr "Logs"
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "Bericht verwijderd."
 
-#: ../../mod/admin.php:125 ../../include/nav.php:178
-msgid "Admin"
-msgstr "Beheer"
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "Gesprek verwijderd."
 
-#: ../../mod/admin.php:126
-msgid "Plugin Features"
-msgstr "Plugin Functies"
+#: ../../mod/message.php:283 ../../mod/message.php:291
+#: ../../mod/message.php:466 ../../mod/message.php:474
+#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
+#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
+msgid "Please enter a link URL:"
+msgstr "Vul een internetadres/URL in:"
 
-#: ../../mod/admin.php:128
-msgid "User registrations waiting for confirmation"
-msgstr "Gebruikersregistraties wachten op bevestiging"
+#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
+msgid "Send Private Message"
+msgstr "Verstuur privébericht"
 
-#: ../../mod/admin.php:187 ../../mod/admin.php:852
-msgid "Normal Account"
-msgstr "Normale Account"
+#: ../../mod/message.php:320 ../../mod/message.php:553
+#: ../../mod/wallmessage.php:144
+msgid "To:"
+msgstr "Aan:"
 
-#: ../../mod/admin.php:188 ../../mod/admin.php:853
-msgid "Soapbox Account"
-msgstr "Zeepkist Account"
+#: ../../mod/message.php:325 ../../mod/message.php:555
+#: ../../mod/wallmessage.php:145
+msgid "Subject:"
+msgstr "Onderwerp:"
 
-#: ../../mod/admin.php:189 ../../mod/admin.php:854
-msgid "Community/Celebrity Account"
-msgstr "Gemeenschap/Beroemdheid Account"
+#: ../../mod/message.php:329 ../../mod/message.php:558
+#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
+msgid "Your message:"
+msgstr "Jouw bericht:"
 
-#: ../../mod/admin.php:190 ../../mod/admin.php:855
-msgid "Automatic Friend Account"
-msgstr "Automatisch Vriendschapsaccount"
+#: ../../mod/message.php:332 ../../mod/message.php:562
+#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154
+#: ../../include/conversation.php:1089
+msgid "Upload photo"
+msgstr "Foto uploaden"
 
-#: ../../mod/admin.php:191
-msgid "Blog Account"
-msgstr "Blog Account"
+#: ../../mod/message.php:333 ../../mod/message.php:563
+#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155
+#: ../../include/conversation.php:1093
+msgid "Insert web link"
+msgstr "Voeg een webadres in"
 
-#: ../../mod/admin.php:192
-msgid "Private Forum"
-msgstr "Privé Forum"
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Geen berichten."
 
-#: ../../mod/admin.php:211
-msgid "Message queues"
-msgstr "Bericht-wachtrijen"
+#: ../../mod/message.php:378
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "Onbekende afzender - %s"
 
-#: ../../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 "Beheer"
+#: ../../mod/message.php:381
+#, php-format
+msgid "You and %s"
+msgstr "Jij en %s"
 
-#: ../../mod/admin.php:217
-msgid "Summary"
-msgstr "Samenvatting"
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s en jij"
 
-#: ../../mod/admin.php:219
-msgid "Registered users"
-msgstr "Geregistreerde gebruikers"
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Verwijder gesprek"
 
-#: ../../mod/admin.php:221
-msgid "Pending registrations"
-msgstr "Registraties die in de wacht staan"
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D, d M Y - g:i A"
 
-#: ../../mod/admin.php:222
-msgid "Version"
-msgstr "Versie"
+#: ../../mod/message.php:411
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d bericht"
+msgstr[1] "%d berichten"
 
-#: ../../mod/admin.php:224
-msgid "Active plugins"
-msgstr "Actieve plug-ins"
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "Bericht niet beschikbaar."
 
-#: ../../mod/admin.php:247
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr ""
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Verwijder bericht"
 
-#: ../../mod/admin.php:483
-msgid "Site settings updated."
-msgstr "Site instellingen gewijzigd."
+#: ../../mod/message.php:548
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Geen beveiligde communicatie beschikbaar. Je kunt <strong>misschien</strong> antwoorden vanaf de profiel-pagina van de afzender."
 
-#: ../../mod/admin.php:512 ../../mod/settings.php:810
-msgid "No special theme for mobile devices"
-msgstr "Geen speciaal thema voor mobiele apparaten"
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Verstuur Antwoord"
 
-#: ../../mod/admin.php:529 ../../mod/contacts.php:402
-msgid "Never"
-msgstr "Nooit"
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "Item niet gevonden"
 
-#: ../../mod/admin.php:530 ../../include/contact_selectors.php:56
-msgid "Frequently"
-msgstr "Frequent"
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Bericht bewerken"
 
-#: ../../mod/admin.php:531 ../../include/contact_selectors.php:57
-msgid "Hourly"
-msgstr "elk uur"
+#: ../../mod/editpost.php:111 ../../include/conversation.php:1090
+msgid "upload photo"
+msgstr "Foto uploaden"
 
-#: ../../mod/admin.php:532 ../../include/contact_selectors.php:58
-msgid "Twice daily"
-msgstr "Twee keer per dag"
+#: ../../mod/editpost.php:112 ../../include/conversation.php:1091
+msgid "Attach file"
+msgstr "Bestand bijvoegen"
 
-#: ../../mod/admin.php:533 ../../include/contact_selectors.php:59
-msgid "Daily"
-msgstr "dagelijks"
+#: ../../mod/editpost.php:113 ../../include/conversation.php:1092
+msgid "attach file"
+msgstr "bestand bijvoegen"
 
-#: ../../mod/admin.php:538
-msgid "Multi user instance"
-msgstr "Server voor meerdere gebruikers"
+#: ../../mod/editpost.php:115 ../../include/conversation.php:1094
+msgid "web link"
+msgstr "webadres"
 
-#: ../../mod/admin.php:556
-msgid "Closed"
-msgstr "Gesloten"
+#: ../../mod/editpost.php:116 ../../include/conversation.php:1095
+msgid "Insert video link"
+msgstr "Voeg video toe"
 
-#: ../../mod/admin.php:557
-msgid "Requires approval"
-msgstr "Toestemming vereist"
+#: ../../mod/editpost.php:117 ../../include/conversation.php:1096
+msgid "video link"
+msgstr "video adres"
 
-#: ../../mod/admin.php:558
-msgid "Open"
-msgstr "Open"
+#: ../../mod/editpost.php:118 ../../include/conversation.php:1097
+msgid "Insert audio link"
+msgstr "Voeg audio adres toe"
 
-#: ../../mod/admin.php:562
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Geen SSL beleid, links zullen SSL status van pagina volgen"
+#: ../../mod/editpost.php:119 ../../include/conversation.php:1098
+msgid "audio link"
+msgstr "audio adres"
 
-#: ../../mod/admin.php:563
-msgid "Force all links to use SSL"
-msgstr "Verplicht alle links om SSL te gebruiken"
+#: ../../mod/editpost.php:120 ../../include/conversation.php:1099
+msgid "Set your location"
+msgstr "Stel uw locatie in"
 
-#: ../../mod/admin.php:564
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)"
+#: ../../mod/editpost.php:121 ../../include/conversation.php:1100
+msgid "set location"
+msgstr "Stel uw locatie in"
 
-#: ../../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/editpost.php:122 ../../include/conversation.php:1101
+msgid "Clear browser location"
+msgstr "Verwijder locatie uit uw webbrowser"
 
-#: ../../mod/admin.php:573
-msgid "File upload"
-msgstr "Uploaden bestand"
+#: ../../mod/editpost.php:123 ../../include/conversation.php:1102
+msgid "clear location"
+msgstr "Verwijder locatie uit uw webbrowser"
 
-#: ../../mod/admin.php:574
-msgid "Policies"
-msgstr "Beleid"
+#: ../../mod/editpost.php:125 ../../include/conversation.php:1108
+msgid "Permission settings"
+msgstr "Instellingen van rechten"
 
-#: ../../mod/admin.php:575
-msgid "Advanced"
-msgstr "Geavanceerd"
+#: ../../mod/editpost.php:133 ../../include/conversation.php:1117
+msgid "CC: email addresses"
+msgstr "CC: e-mailadressen"
 
-#: ../../mod/admin.php:576
-msgid "Performance"
-msgstr "Performantie"
+#: ../../mod/editpost.php:134 ../../include/conversation.php:1118
+msgid "Public post"
+msgstr "Openbare post"
 
-#: ../../mod/admin.php:577
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr ""
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1104
+msgid "Set title"
+msgstr "Titel plaatsen"
 
-#: ../../mod/admin.php:580
-msgid "Site name"
-msgstr "Site naam"
+#: ../../mod/editpost.php:139 ../../include/conversation.php:1106
+msgid "Categories (comma-separated list)"
+msgstr "Categorieën (komma-gescheiden lijst)"
 
-#: ../../mod/admin.php:581
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: ../../mod/editpost.php:140 ../../include/conversation.php:1120
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be"
 
-#: ../../mod/admin.php:582
-msgid "Additional Info"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18
+#: ../../mod/profiles.php:133 ../../mod/profiles.php:160
+#: ../../mod/profiles.php:587
+msgid "Profile not found."
+msgstr "Profiel niet gevonden"
 
-#: ../../mod/admin.php:582
+#: ../../mod/dfrn_confirm.php:119
 msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at dir.friendica.com/siteinfo."
-msgstr ""
-
-#: ../../mod/admin.php:583
-msgid "System language"
-msgstr "Systeemtaal"
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd."
 
-#: ../../mod/admin.php:584
-msgid "System theme"
-msgstr "Systeem thema"
+#: ../../mod/dfrn_confirm.php:237
+msgid "Response from remote site was not understood."
+msgstr "Antwoord van de website op afstand werd niet begrepen."
 
-#: ../../mod/admin.php:584
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Standaard systeem thema - kan door gebruikersprofielen veranderd worden - <a href='#' id='cnftheme'>verander thema instellingen</a>"
+#: ../../mod/dfrn_confirm.php:246
+msgid "Unexpected response from remote site: "
+msgstr "Onverwacht antwoord van website op afstand:"
 
-#: ../../mod/admin.php:585
-msgid "Mobile system theme"
-msgstr "Mobiel systeem thema"
+#: ../../mod/dfrn_confirm.php:254
+msgid "Confirmation completed successfully."
+msgstr "Bevestiging werd correct voltooid."
 
-#: ../../mod/admin.php:585
-msgid "Theme for mobile devices"
-msgstr "Thema voor mobiele apparaten"
+#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
+#: ../../mod/dfrn_confirm.php:277
+msgid "Remote site reported: "
+msgstr "Website op afstand berichtte: "
 
-#: ../../mod/admin.php:586
-msgid "SSL link policy"
-msgstr "Beleid SSL-links"
+#: ../../mod/dfrn_confirm.php:268
+msgid "Temporary failure. Please wait and try again."
+msgstr "Tijdelijke fout. Wacht even en probeer opnieuw."
 
-#: ../../mod/admin.php:586
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Bepaald of gegenereerde verwijzingen verplicht SSL moeten gebruiken"
+#: ../../mod/dfrn_confirm.php:275
+msgid "Introduction failed or was revoked."
+msgstr "Verzoek mislukt of herroepen."
 
-#: ../../mod/admin.php:587
-msgid "Old style 'Share'"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
+msgstr "Ik kan geen contact foto instellen."
 
-#: ../../mod/admin.php:587
-msgid "Deactivates the bbcode element 'share' for repeating items."
-msgstr ""
+#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:620
+#: ../../include/conversation.php:172
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s is nu bevriend met %2$s"
 
-#: ../../mod/admin.php:588
-msgid "Hide help entry from navigation menu"
-msgstr "Verberg de 'help' uit het navigatiemenu"
+#: ../../mod/dfrn_confirm.php:562
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Geen gebruiker gevonden voor '%s'"
 
-#: ../../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 "Verbergt het menu-item voor de Help pagina's uit het navigatiemenu. Je kunt ze nog altijd vinden door /help direct in te geven."
+#: ../../mod/dfrn_confirm.php:572
+msgid "Our site encryption key is apparently messed up."
+msgstr "De encryptie-sleutel van onze webstek is blijkbaar beschadigd."
 
-#: ../../mod/admin.php:589
-msgid "Single user instance"
-msgstr "Server voor één gebruiker"
+#: ../../mod/dfrn_confirm.php:583
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons."
 
-#: ../../mod/admin.php:589
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr "Stel deze server in voor meerdere gebruikers, of enkel voor de geselecteerde gebruiker."
+#: ../../mod/dfrn_confirm.php:604
+msgid "Contact record was not found for you on our site."
+msgstr "We vonden op onze webstek geen contactrecord voor jou."
 
-#: ../../mod/admin.php:590
-msgid "Maximum image size"
-msgstr "Maximum afbeeldingsgrootte"
+#: ../../mod/dfrn_confirm.php:618
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s."
 
-#: ../../mod/admin.php:590
+#: ../../mod/dfrn_confirm.php:638
 msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Maximum afmeting in bytes van afbeeldingen. Standaard is 0, dus geen beperking."
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken."
 
-#: ../../mod/admin.php:591
-msgid "Maximum image length"
-msgstr "Maximum afbeeldingslengte"
+#: ../../mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
+msgstr "Niet in staat om op dit systeem je contactreferenties in te stellen."
 
-#: ../../mod/admin.php:591
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "Maximum lengte in pixels van de langste kant van afbeeldingen. Standaard is -1, dus geen beperkingen."
+#: ../../mod/dfrn_confirm.php:716
+msgid "Unable to update your contact profile details on our system"
+msgstr ""
 
-#: ../../mod/admin.php:592
-msgid "JPEG image quality"
-msgstr "JPEG afbeeldingskwaliteit"
+#: ../../mod/dfrn_confirm.php:751
+#, php-format
+msgid "Connection accepted at %s"
+msgstr "Uw connectie werd geaccepteerd op %s"
 
-#: ../../mod/admin.php:592
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr "JPEGS zullen met deze kwaliteitsinstelling bewaard worden [0-100]. Standaard is 100, dit is volledige kwaliteit."
+#: ../../mod/dfrn_confirm.php:800
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s is toegetreden tot %2$s"
 
-#: ../../mod/admin.php:594
-msgid "Register policy"
-msgstr "Registratiebeleid"
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
+msgstr "Titel en begintijd van de gebeurtenis zijn vereist."
 
-#: ../../mod/admin.php:595
-msgid "Maximum Daily Registrations"
-msgstr "Maximum aantal registraties per dag"
+#: ../../mod/events.php:291
+msgid "l, F j"
+msgstr "l j F"
 
-#: ../../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 "Als registratie hierboven is toegelaten, zet dit het maximum aantal registraties van nieuwe gebruikers per dag. Als registratie niet is toegelaten heeft deze instelling geen effect."
+#: ../../mod/events.php:313
+msgid "Edit event"
+msgstr "Gebeurtenis bewerken"
 
-#: ../../mod/admin.php:596
-msgid "Register text"
-msgstr "Registratietekst"
+#: ../../mod/events.php:335 ../../include/text.php:1633
+#: ../../include/text.php:1644
+msgid "link to source"
+msgstr "Verwijzing naar bron"
 
-#: ../../mod/admin.php:596
-msgid "Will be displayed prominently on the registration page."
-msgstr "Dit zal prominent op de registratiepagina getoond worden."
+#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:127
+#: ../../boot.php:2003 ../../include/nav.php:79
+msgid "Events"
+msgstr "Gebeurtenissen"
 
-#: ../../mod/admin.php:597
-msgid "Accounts abandoned after x days"
-msgstr "Verlaten accounts na x dagen"
+#: ../../mod/events.php:371
+msgid "Create New Event"
+msgstr "Maak een nieuwe gebeurtenis"
 
-#: ../../mod/admin.php:597
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Dit zal geen systeembronnen verspillen aan het nakijken van externe sites voor verlaten accounts. Geef 0 is voor geen tijdslimiet."
+#: ../../mod/events.php:372
+msgid "Previous"
+msgstr "Vorige"
 
-#: ../../mod/admin.php:598
-msgid "Allowed friend domains"
-msgstr "Toegelaten vriend domeinen"
+#: ../../mod/events.php:373 ../../mod/install.php:207
+msgid "Next"
+msgstr "Volgende"
 
-#: ../../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 "Komma-gescheiden lijst van domeinen die een vriendschapsband met deze website mogen aangaan. Jokers zijn toegelaten. Laat leeg om alle domeinen toe te laten."
+#: ../../mod/events.php:446
+msgid "hour:minute"
+msgstr "uur:minuut"
 
-#: ../../mod/admin.php:599
-msgid "Allowed email domains"
-msgstr "Toegelaten e-mail domeinen"
+#: ../../mod/events.php:456
+msgid "Event details"
+msgstr "Gebeurtenis details"
 
-#: ../../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 "Door komma's gescheiden lijst met e-maildomeinen die op deze website mogen registeren. Wildcards zijn toegestaan.\nLeeg laten om alle domeinen toe te staan."
+#: ../../mod/events.php:457
+#, php-format
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "Formaat is %s %s. Begindatum en titel zijn vereist."
 
-#: ../../mod/admin.php:600
-msgid "Block public"
-msgstr "Openbare toegang blokkeren"
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr "Gebeurtenis begint:"
 
-#: ../../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 "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers."
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "Vereist"
 
-#: ../../mod/admin.php:601
-msgid "Force publish"
-msgstr "Dwing publiceren af"
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
+msgstr "Einddatum/tijd is niet gekend of niet relevant"
 
-#: ../../mod/admin.php:601
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Kruis dit aan om af te dwingen dat alle profielen op deze website in de gids van deze website gepubliceerd worden."
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
+msgstr "Gebeurtenis eindigt:"
 
-#: ../../mod/admin.php:602
-msgid "Global directory update URL"
-msgstr "Update-adres van de globale gids"
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
+msgstr "Pas aan aan de tijdzone van de gebruiker"
 
-#: ../../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 om de globale gids aan te passen. Als dit niet is ingevuld, is de globale gids volledig onbeschikbaar voor deze toepassing."
+#: ../../mod/events.php:469
+msgid "Description:"
+msgstr "Beschrijving:"
 
-#: ../../mod/admin.php:603
-msgid "Allow threaded items"
-msgstr "Sta threads in conversaties toe"
+#: ../../mod/events.php:471 ../../mod/directory.php:134 ../../boot.php:1513
+#: ../../include/event.php:40 ../../include/bb2diaspora.php:155
+msgid "Location:"
+msgstr "Plaats:"
 
-#: ../../mod/admin.php:603
-msgid "Allow infinite level threading for items on this site."
-msgstr "Sta oneindige niveaus threads in conversaties op deze website toe."
+#: ../../mod/events.php:473
+msgid "Title:"
+msgstr "Titel:"
 
-#: ../../mod/admin.php:604
-msgid "Private posts by default for new users"
-msgstr "Privéberichten als standaard voor nieuwe gebruikers"
+#: ../../mod/events.php:475
+msgid "Share this event"
+msgstr "Deel deze gebeurtenis"
 
-#: ../../mod/admin.php:604
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "Stel de standaard rechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar."
+#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:126
+#: ../../boot.php:1986 ../../include/nav.php:78
+msgid "Photos"
+msgstr "Foto's"
 
-#: ../../mod/admin.php:605
-msgid "Don't include post content in email notifications"
-msgstr "De inhoud van het bericht niet insluiten bij e-mailnotificaties"
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "Bestanden"
 
-#: ../../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 "De inhoud van berichten/commentaar/privéberichten/enzovoort  niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy."
+#: ../../mod/home.php:34
+#, php-format
+msgid "Welcome to %s"
+msgstr "Welkom op %s"
 
-#: ../../mod/admin.php:606
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr ""
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Privacyinformatie op afstand niet beschikbaar."
 
-#: ../../mod/admin.php:606
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr ""
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
+msgstr "Zichtbaar voor:"
 
-#: ../../mod/admin.php:607
-msgid "Don't embed private images in posts"
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
 msgstr ""
 
-#: ../../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 "
-"photos will have to authenticate and load each image, which may take a "
-"while."
-msgstr ""
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Niet in staat om je tijdlijn-locatie vast te stellen"
 
-#: ../../mod/admin.php:608
-msgid "Allow Users to set remote_self"
-msgstr ""
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Geen ontvanger."
 
-#: ../../mod/admin.php:608
+#: ../../mod/wallmessage.php:143
+#, php-format
 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 ""
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat."
 
-#: ../../mod/admin.php:609
-msgid "Block multiple registrations"
-msgstr "Blokkeer meerdere registraties"
+#: ../../mod/nogroup.php:40 ../../mod/contacts.php:473
+#: ../../mod/contacts.php:665 ../../mod/viewcontacts.php:62
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Bekijk het profiel van %s [%s]"
 
-#: ../../mod/admin.php:609
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Laat niet toe dat gebruikers meerdere accounts aanmaken."
+#: ../../mod/nogroup.php:41 ../../mod/contacts.php:666
+msgid "Edit contact"
+msgstr "Contact bewerken"
 
-#: ../../mod/admin.php:610
-msgid "OpenID support"
-msgstr "OpenID ondersteuning"
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Contacten die geen leden zijn van een groep"
 
-#: ../../mod/admin.php:610
-msgid "OpenID support for registration and logins."
-msgstr "OpenID ondersteuning voor registraties en logins."
+#: ../../mod/friendica.php:58
+msgid "This is Friendica, version"
+msgstr "Dit is Friendica, versie"
 
-#: ../../mod/admin.php:611
-msgid "Fullname check"
-msgstr "Controleer volledige naam"
+#: ../../mod/friendica.php:59
+msgid "running at web location"
+msgstr "draaiend op web-adres"
 
-#: ../../mod/admin.php:611
+#: ../../mod/friendica.php:61
 msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr "Verplicht gebruikers om zich te registreren met een spatie tussen voornaam en achternaam, als anti-spam maatregel"
-
-#: ../../mod/admin.php:612
-msgid "UTF-8 Regular expressions"
-msgstr "UTF-8 reguliere uitdrukkingen"
-
-#: ../../mod/admin.php:612
-msgid "Use PHP UTF8 regular expressions"
-msgstr "Gebruik PHP UTF8 reguliere uitdrukkingen"
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Bezoek <a href=\"http://friendica.com\">Friendica.com</a> om meer te leren over het Friendica project."
 
-#: ../../mod/admin.php:613
-msgid "Show Community Page"
-msgstr "Toon Gemeenschapspagina"
+#: ../../mod/friendica.php:63
+msgid "Bug reports and issues: please visit"
+msgstr "Bug rapporten en problemen: bezoek"
 
-#: ../../mod/admin.php:613
+#: ../../mod/friendica.php:64
 msgid ""
-"Display a Community page showing all recent public postings on this site."
-msgstr "Toon een gemeenschapspagina die alle recente openbare berichten op deze website toont."
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com"
 
-#: ../../mod/admin.php:614
-msgid "Enable OStatus support"
-msgstr "Activeer OStatus ondersteuning"
+#: ../../mod/friendica.php:78
+msgid "Installed plugins/addons/apps:"
+msgstr "Geïnstalleerde plugins/toepassingen:"
 
-#: ../../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 "Bied ingebouwde Ostatus (identi.ca, status.net, enz.) ondersteuning. Alle communicaties in Ostatus zijn openbaar, dus zullen af en toe privacy waarschuwingen getoond worden."
+#: ../../mod/friendica.php:91
+msgid "No installed plugins/addons/apps"
+msgstr "Geen plugins of toepassingen geïnstalleerd"
 
-#: ../../mod/admin.php:615
-msgid "OStatus conversation completion interval"
-msgstr ""
+#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
+msgid "Remove My Account"
+msgstr "Verwijder mijn account"
 
-#: ../../mod/admin.php:615
+#: ../../mod/removeme.php:47
 msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
-msgstr ""
-
-#: ../../mod/admin.php:616
-msgid "Enable Diaspora support"
-msgstr "Activeer Diaspora ondersteuning"
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is."
 
-#: ../../mod/admin.php:616
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Bied ingebouwde ondersteuning voor het Diaspora netwerk."
+#: ../../mod/removeme.php:48
+msgid "Please enter your password for verification:"
+msgstr "Voer je wachtwoord in voor verificatie:"
 
-#: ../../mod/admin.php:617
-msgid "Only allow Friendica contacts"
-msgstr "Laat alleen Friendica contacten toe"
+#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr "Afbeelding is groter dan de toegestane %d"
 
-#: ../../mod/admin.php:617
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "Alle contacten moeten een Friendica protocol gebruiken. Alle andere ingebouwde communicatieprotocols worden uitgeschakeld."
+#: ../../mod/wall_upload.php:112 ../../mod/photos.php:805
+#: ../../mod/profile_photo.php:153
+msgid "Unable to process image."
+msgstr "Niet in staat om de afbeelding te verwerken"
 
-#: ../../mod/admin.php:618
-msgid "Verify SSL"
-msgstr "Controleer SSL"
+#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
+#: ../../mod/wall_upload.php:151 ../../mod/item.php:455
+#: ../../include/message.php:144
+msgid "Wall Photos"
+msgstr ""
 
-#: ../../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 "Als je wilt kun je striktere certificaat controle activeren. Dit betekent dat je (totaal) niet kunt connecteren met sites die zelf-ondertekende SSL certificaten gebruiken."
+#: ../../mod/wall_upload.php:138 ../../mod/photos.php:832
+#: ../../mod/profile_photo.php:301
+msgid "Image upload failed."
+msgstr "Uploaden van afbeelding mislukt."
 
-#: ../../mod/admin.php:619
-msgid "Proxy user"
-msgstr "Proxy-gebruiker"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr ""
 
-#: ../../mod/admin.php:620
-msgid "Proxy URL"
-msgstr "Proxy-URL"
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr ""
 
-#: ../../mod/admin.php:621
-msgid "Network timeout"
-msgstr "Netwerk timeout"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Log in om verder te gaan."
 
-#: ../../mod/admin.php:621
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)."
+#: ../../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 "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?"
 
-#: ../../mod/admin.php:622
-msgid "Delivery interval"
-msgstr "Afleverinterval"
+#: ../../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 labelde %3$s van %2$s met %4$s"
 
-#: ../../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 "Stel achtergrond processen voor aflevering een aantal seconden uit om systeembelasting te beperken. Aanbevolen: 4-5 voor gedeelde hosten, 2-3 voor virtuele privé servers, 0-1 voor grote servers."
+#: ../../mod/photos.php:52 ../../boot.php:1989
+msgid "Photo Albums"
+msgstr "Fotoalbums"
 
-#: ../../mod/admin.php:623
-msgid "Poll interval"
-msgstr "Poll-interval"
+#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1062
+#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
+#: ../../mod/photos.php:1756 ../../mod/photos.php:1768
+#: ../../view/theme/diabook/theme.php:499
+msgid "Contact Photos"
+msgstr "Contactfoto's"
 
-#: ../../mod/admin.php:623
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "Stel achtergrondprocessen zoveel seconden uit om de systeembelasting te beperken. Indien 0 wordt het afleverinterval gebruikt."
+#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815
+msgid "Upload New Photos"
+msgstr "Nieuwe foto's uploaden"
 
-#: ../../mod/admin.php:624
-msgid "Maximum Load Average"
-msgstr "Maximum gemiddelde belasting"
+#: ../../mod/photos.php:80 ../../mod/settings.php:29
+msgid "everybody"
+msgstr "iedereen"
 
-#: ../../mod/admin.php:624
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Maximum systeembelasting voordat aflever- en poll-processen uitgesteld worden - standaard 50."
+#: ../../mod/photos.php:144
+msgid "Contact information unavailable"
+msgstr "Contactinformatie niet beschikbaar"
 
-#: ../../mod/admin.php:626
-msgid "Use MySQL full text engine"
-msgstr "Gebruik de tekst-zoekfunctie van MySQL"
+#: ../../mod/photos.php:155 ../../mod/photos.php:729 ../../mod/photos.php:1187
+#: ../../mod/photos.php:1210 ../../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:500
+#: ../../include/user.php:334 ../../include/user.php:341
+#: ../../include/user.php:348
+msgid "Profile Photos"
+msgstr "Profielfoto's"
 
-#: ../../mod/admin.php:626
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
-msgstr "Activeert de zoekmotor. Dit maakt zoeken sneller, maar het kan alleen zoeken naar teksten van minstens vier letters."
+#: ../../mod/photos.php:165
+msgid "Album not found."
+msgstr "Album niet gevonden"
 
-#: ../../mod/admin.php:627
-msgid "Suppress Language"
-msgstr ""
+#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
+msgid "Delete Album"
+msgstr "Verwijder album"
 
-#: ../../mod/admin.php:627
-msgid "Suppress language information in meta information about a posting."
-msgstr ""
+#: ../../mod/photos.php:198
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Wil je echt dit fotoalbum en alle foto's erin verwijderen?"
 
-#: ../../mod/admin.php:628
-msgid "Path to item cache"
-msgstr "Pad naar cache voor items"
+#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511
+msgid "Delete Photo"
+msgstr "Verwijder foto"
 
-#: ../../mod/admin.php:629
-msgid "Cache duration in seconds"
-msgstr "Cache tijdsduur in seconden"
+#: ../../mod/photos.php:287
+msgid "Do you really want to delete this photo?"
+msgstr "Wil je echt deze foto verwijderen?"
 
-#: ../../mod/admin.php:629
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One"
-" day)."
-msgstr "Hoe lang moeten bestanden in cache gehouden worden? Standaard waarde is 86400 seconden (een dag)."
+#: ../../mod/photos.php:660
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s is gelabeld in %2$s door %3$s"
 
-#: ../../mod/admin.php:630
-msgid "Path for lock file"
-msgstr "Pad voor lock bestand"
+#: ../../mod/photos.php:660
+msgid "a photo"
+msgstr "een foto"
 
-#: ../../mod/admin.php:631
-msgid "Temp path"
-msgstr "Tijdelijk pad"
+#: ../../mod/photos.php:765
+msgid "Image exceeds size limit of "
+msgstr "Afbeelding is groter dan de maximale afmeting van"
 
-#: ../../mod/admin.php:632
-msgid "Base path to installation"
-msgstr "Basispad voor installatie"
+#: ../../mod/photos.php:773
+msgid "Image file is empty."
+msgstr "Afbeeldingsbestand is leeg."
 
-#: ../../mod/admin.php:634
-msgid "New base url"
-msgstr ""
+#: ../../mod/photos.php:928
+msgid "No photos selected"
+msgstr "Geen foto's geselecteerd"
 
-#: ../../mod/admin.php:652
-msgid "Update has been marked successful"
-msgstr "Wijziging succesvol gemarkeerd "
+#: ../../mod/photos.php:1029 ../../mod/videos.php:226
+msgid "Access to this item is restricted."
+msgstr "Toegang tot dit item is beperkt."
 
-#: ../../mod/admin.php:662
+#: ../../mod/photos.php:1092
 #, php-format
-msgid "Executing %s failed. Check system logs."
-msgstr "Uitvoering van %s is mislukt. Kijk de systeem logbestanden na."
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt."
 
-#: ../../mod/admin.php:665
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Wijziging %s geslaagd."
+#: ../../mod/photos.php:1127
+msgid "Upload Photos"
+msgstr "Upload foto's"
 
-#: ../../mod/admin.php:669
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "Wijziging %s gaf geen status terug. We weten niet of de wijziging geslaagd is."
+#: ../../mod/photos.php:1131 ../../mod/photos.php:1199
+msgid "New album name: "
+msgstr "Nieuwe albumnaam: "
 
-#: ../../mod/admin.php:672
-#, php-format
-msgid "Update function %s could not be found."
-msgstr "Update-functie %s kon niet gevonden worden."
+#: ../../mod/photos.php:1132
+msgid "or existing album name: "
+msgstr "of bestaande albumnaam: "
 
-#: ../../mod/admin.php:687
-msgid "No failed updates."
-msgstr "Geen misluke wijzigingen"
+#: ../../mod/photos.php:1133
+msgid "Do not show a status post for this upload"
+msgstr "Toon geen bericht op je tijdlijn van deze upload"
 
-#: ../../mod/admin.php:691
-msgid "Failed Updates"
-msgstr "Misluke wijzigingen"
+#: ../../mod/photos.php:1135 ../../mod/photos.php:1506
+msgid "Permissions"
+msgstr "Rechten"
 
-#: ../../mod/admin.php:692
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr "Dit is zonder de wijzigingen voor 1139, welke geen status teruggaven."
-
-#: ../../mod/admin.php:693
-msgid "Mark success (if update was manually applied)"
-msgstr "Markeren als succes (als aanpassing manueel doorgevoerd werd)"
-
-#: ../../mod/admin.php:694
-msgid "Attempt to execute this update step automatically"
-msgstr "Probeer deze stap automatisch uit te voeren"
+#: ../../mod/photos.php:1144 ../../mod/photos.php:1515
+#: ../../mod/settings.php:1139
+msgid "Show to Groups"
+msgstr "Tonen aan groepen"
 
-#: ../../mod/admin.php:740
-msgid "Registration successful. Email send to user"
-msgstr ""
+#: ../../mod/photos.php:1145 ../../mod/photos.php:1516
+#: ../../mod/settings.php:1140
+msgid "Show to Contacts"
+msgstr "Tonen aan contacten"
 
-#: ../../mod/admin.php:750
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s gebruiker geblokkeerd/niet geblokkeerd"
-msgstr[1] "%s gebruikers geblokkeerd/niet geblokkeerd"
+#: ../../mod/photos.php:1146
+msgid "Private Photo"
+msgstr "Privé foto"
 
-#: ../../mod/admin.php:757
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s gebruiker verwijderd"
-msgstr[1] "%s gebruikers verwijderd"
+#: ../../mod/photos.php:1147
+msgid "Public Photo"
+msgstr "Publieke foto"
 
-#: ../../mod/admin.php:796
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Gebruiker '%s' verwijderd"
+#: ../../mod/photos.php:1214
+msgid "Edit Album"
+msgstr "Album wijzigen"
 
-#: ../../mod/admin.php:804
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Gebruiker '%s' niet meer geblokkeerd"
+#: ../../mod/photos.php:1220
+msgid "Show Newest First"
+msgstr "Toon niewste eerst"
 
-#: ../../mod/admin.php:804
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Gebruiker '%s' geblokkeerd"
+#: ../../mod/photos.php:1222
+msgid "Show Oldest First"
+msgstr "Toon oudste eerst"
 
-#: ../../mod/admin.php:899
-msgid "Add User"
-msgstr ""
+#: ../../mod/photos.php:1255 ../../mod/photos.php:1798
+msgid "View Photo"
+msgstr "Bekijk foto"
 
-#: ../../mod/admin.php:900
-msgid "select all"
-msgstr "Alles selecteren"
+#: ../../mod/photos.php:1290
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt."
 
-#: ../../mod/admin.php:901
-msgid "User registrations waiting for confirm"
-msgstr "Gebruikersregistraties wachten op een bevestiging"
+#: ../../mod/photos.php:1292
+msgid "Photo not available"
+msgstr "Foto is niet beschikbaar"
 
-#: ../../mod/admin.php:902
-msgid "User waiting for permanent deletion"
-msgstr ""
+#: ../../mod/photos.php:1348
+msgid "View photo"
+msgstr "Bekijk foto"
 
-#: ../../mod/admin.php:903
-msgid "Request date"
-msgstr "Registratiedatum"
+#: ../../mod/photos.php:1348
+msgid "Edit photo"
+msgstr "Bewerk foto"
 
-#: ../../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 "Naam"
+#: ../../mod/photos.php:1349
+msgid "Use as profile photo"
+msgstr "Gebruik als profielfoto"
 
-#: ../../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/photos.php:1374
+msgid "View Full Size"
+msgstr "Bekijk in volledig formaat"
 
-#: ../../mod/admin.php:904
-msgid "No registrations."
-msgstr "Geen registraties."
+#: ../../mod/photos.php:1453
+msgid "Tags: "
+msgstr "Labels: "
 
-#: ../../mod/admin.php:905 ../../mod/notifications.php:161
-#: ../../mod/notifications.php:208
-msgid "Approve"
-msgstr "Goedkeuren"
+#: ../../mod/photos.php:1456
+msgid "[Remove any tag]"
+msgstr "[Alle labels verwijderen]"
 
-#: ../../mod/admin.php:906
-msgid "Deny"
-msgstr "Weiger"
+#: ../../mod/photos.php:1496
+msgid "Rotate CW (right)"
+msgstr "Roteren met de klok mee (rechts)"
 
-#: ../../mod/admin.php:908 ../../mod/contacts.php:425
-#: ../../mod/contacts.php:484 ../../mod/contacts.php:692
-msgid "Block"
-msgstr "Blokkeren"
+#: ../../mod/photos.php:1497
+msgid "Rotate CCW (left)"
+msgstr "Roteren tegen de klok in (links)"
 
-#: ../../mod/admin.php:909 ../../mod/contacts.php:425
-#: ../../mod/contacts.php:484 ../../mod/contacts.php:692
-msgid "Unblock"
-msgstr "Blokkering opheffen"
+#: ../../mod/photos.php:1499
+msgid "New album name"
+msgstr "Nieuwe albumnaam"
 
-#: ../../mod/admin.php:910
-msgid "Site admin"
-msgstr "Sitebeheerder"
+#: ../../mod/photos.php:1502
+msgid "Caption"
+msgstr "Onderschrift"
 
-#: ../../mod/admin.php:911
-msgid "Account expired"
-msgstr "Account verlopen"
+#: ../../mod/photos.php:1504
+msgid "Add a Tag"
+msgstr "Een label toevoegen"
 
-#: ../../mod/admin.php:914
-msgid "New User"
-msgstr ""
+#: ../../mod/photos.php:1508
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping "
 
-#: ../../mod/admin.php:915 ../../mod/admin.php:916
-msgid "Register date"
-msgstr "Registratiedatum"
+#: ../../mod/photos.php:1517
+msgid "Private photo"
+msgstr "Privé foto"
 
-#: ../../mod/admin.php:915 ../../mod/admin.php:916
-msgid "Last login"
-msgstr "Laatste login"
+#: ../../mod/photos.php:1518
+msgid "Public photo"
+msgstr "Publieke foto"
 
-#: ../../mod/admin.php:915 ../../mod/admin.php:916
-msgid "Last item"
-msgstr "Laatste item"
+#: ../../mod/photos.php:1540 ../../include/conversation.php:1088
+msgid "Share"
+msgstr "Delen"
 
-#: ../../mod/admin.php:915
-msgid "Deleted since"
-msgstr ""
+#: ../../mod/photos.php:1804 ../../mod/videos.php:308
+msgid "View Album"
+msgstr "Album bekijken"
 
-#: ../../mod/admin.php:916
-msgid "Account"
-msgstr "Account"
+#: ../../mod/photos.php:1813
+msgid "Recent Photos"
+msgstr "Recente foto's"
 
-#: ../../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 "Geselecteerde gebruikers zullen verwijderd worden!\\n\\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Geen profiel"
 
-#: ../../mod/admin.php:919
+#: ../../mod/register.php:100
 msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "De gebruiker {0} zal verwijderd worden!\\n\\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"
+"Registration successful. Please check your email for further instructions."
+msgstr "Registratie geslaagd. Kijk je e-mail na voor verdere instructies."
 
-#: ../../mod/admin.php:929
-msgid "Name of the new user."
-msgstr ""
+#: ../../mod/register.php:104
+msgid "Failed to send email message. Here is the message that failed."
+msgstr "E-mail bericht kon niet verstuurd worden. Hier is het bericht."
 
-#: ../../mod/admin.php:930
-msgid "Nickname"
-msgstr ""
+#: ../../mod/register.php:109
+msgid "Your registration can not be processed."
+msgstr "Je registratie kan niet verwerkt worden."
 
-#: ../../mod/admin.php:930
-msgid "Nickname of the new user."
-msgstr ""
+#: ../../mod/register.php:149
+#, php-format
+msgid "Registration request at %s"
+msgstr "Registratieverzoek op %s"
 
-#: ../../mod/admin.php:931
-msgid "Email address of the new user."
-msgstr ""
+#: ../../mod/register.php:158
+msgid "Your registration is pending approval by the site owner."
+msgstr "Jouw registratie wacht op goedkeuring van de beheerder."
 
-#: ../../mod/admin.php:964
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plugin %s uitgeschakeld."
+#: ../../mod/register.php:196 ../../mod/uimport.php:50
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw."
 
-#: ../../mod/admin.php:968
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Plugin %s ingeschakeld."
+#: ../../mod/register.php:224
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken."
 
-#: ../../mod/admin.php:978 ../../mod/admin.php:1181
-msgid "Disable"
-msgstr "Uitschakelen"
+#: ../../mod/register.php:225
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in."
 
-#: ../../mod/admin.php:980 ../../mod/admin.php:1183
-msgid "Enable"
-msgstr "Inschakelen"
+#: ../../mod/register.php:226
+msgid "Your OpenID (optional): "
+msgstr "Je OpenID (optioneel):"
 
-#: ../../mod/admin.php:1003 ../../mod/admin.php:1211
-msgid "Toggle"
-msgstr "Schakelaar"
+#: ../../mod/register.php:240
+msgid "Include your profile in member directory?"
+msgstr "Je profiel in de ledengids opnemen?"
 
-#: ../../mod/admin.php:1011 ../../mod/admin.php:1221
-msgid "Author: "
-msgstr "Auteur:"
+#: ../../mod/register.php:261
+msgid "Membership on this site is by invitation only."
+msgstr "Lidmaatschap van deze website is uitsluitend op uitnodiging."
 
-#: ../../mod/admin.php:1012 ../../mod/admin.php:1222
-msgid "Maintainer: "
-msgstr "Onderhoud:"
+#: ../../mod/register.php:262
+msgid "Your invitation ID: "
+msgstr "Je uitnodigingsid:"
 
-#: ../../mod/admin.php:1141
-msgid "No themes found."
-msgstr "Geen thema's gevonden."
+#: ../../mod/register.php:273
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "Je volledige naam (bijv. Jan Jansens):"
 
-#: ../../mod/admin.php:1203
-msgid "Screenshot"
-msgstr "Schermafdruk"
+#: ../../mod/register.php:274
+msgid "Your Email Address: "
+msgstr "Je email adres:"
 
-#: ../../mod/admin.php:1249
-msgid "[Experimental]"
-msgstr "[Experimenteel]"
+#: ../../mod/register.php:275
+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 "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan '<strong>bijnaam@$sitename</strong>' zijn."
 
-#: ../../mod/admin.php:1250
-msgid "[Unsupported]"
-msgstr "[Niet ondersteund]"
+#: ../../mod/register.php:276
+msgid "Choose a nickname: "
+msgstr "Kies een bijnaam:"
 
-#: ../../mod/admin.php:1277
-msgid "Log settings updated."
-msgstr "Log instellingen gewijzigd"
+#: ../../mod/register.php:279 ../../boot.php:1136 ../../include/nav.php:108
+msgid "Register"
+msgstr "Registreer"
 
-#: ../../mod/admin.php:1333
-msgid "Clear"
-msgstr "Wis"
+#: ../../mod/register.php:285 ../../mod/uimport.php:64
+msgid "Import"
+msgstr "Importeren"
 
-#: ../../mod/admin.php:1339
-msgid "Enable Debugging"
+#: ../../mod/register.php:286
+msgid "Import your profile to this friendica instance"
 msgstr ""
 
-#: ../../mod/admin.php:1340
-msgid "Log file"
-msgstr "Logbestand"
-
-#: ../../mod/admin.php:1340
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "De webserver moet hier kunnen schrijven. Relatief t.o.v. van de hoogste folder binnen uw Friendica-installatie."
+#: ../../mod/lostpass.php:17
+msgid "No valid account found."
+msgstr "Geen geldige account gevonden."
 
-#: ../../mod/admin.php:1341
-msgid "Log level"
-msgstr "Log niveau"
+#: ../../mod/lostpass.php:33
+msgid "Password reset request issued. Check your email."
+msgstr "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na."
 
-#: ../../mod/admin.php:1390 ../../mod/contacts.php:481
-msgid "Update now"
-msgstr "Wijzig nu"
+#: ../../mod/lostpass.php:44
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Op %s werd gevraagd je wachtwoord opnieuw in te stellen"
 
-#: ../../mod/admin.php:1391
-msgid "Close"
-msgstr "Afsluiten"
-
-#: ../../mod/admin.php:1397
-msgid "FTP Host"
-msgstr "FTP Server"
-
-#: ../../mod/admin.php:1398
-msgid "FTP Path"
-msgstr "FTP Pad"
+#: ../../mod/lostpass.php:66
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld."
 
-#: ../../mod/admin.php:1399
-msgid "FTP User"
-msgstr "FTP Gebruiker"
+#: ../../mod/lostpass.php:84 ../../boot.php:1175
+msgid "Password Reset"
+msgstr "Wachtwoord opnieuw instellen"
 
-#: ../../mod/admin.php:1400
-msgid "FTP Password"
-msgstr "FTP wachtwoord"
+#: ../../mod/lostpass.php:85
+msgid "Your password has been reset as requested."
+msgstr "Je wachtwoord is opnieuw ingesteld zoals gevraagd."
 
-#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:934
-#: ../../include/text.php:935 ../../include/nav.php:118
-msgid "Search"
-msgstr "Zoeken"
+#: ../../mod/lostpass.php:86
+msgid "Your new password is"
+msgstr "Je nieuwe wachtwoord is"
 
-#: ../../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 "Geen resultaten."
+#: ../../mod/lostpass.php:87
+msgid "Save or copy your new password - and then"
+msgstr "Bewaar of kopieer je nieuw wachtwoord - en dan"
 
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Tips voor nieuwe leden"
+#: ../../mod/lostpass.php:88
+msgid "click here to login"
+msgstr "klik hier om in te loggen"
 
-#: ../../mod/share.php:44
-msgid "link"
-msgstr "link"
+#: ../../mod/lostpass.php:89
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de <em>Instellingen></em> pagina."
 
-#: ../../mod/tagger.php:95 ../../include/conversation.php:266
+#: ../../mod/lostpass.php:107
 #, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s labelde %3$s van %2$s met %4$s"
+msgid "Your password has been changed at %s"
+msgstr "Je wachtwoord is veranderd op %s"
 
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "Item niet gevonden"
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
+msgstr "Wachtwoord vergeten?"
 
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "Bericht bewerken"
+#: ../../mod/lostpass.php:123
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies."
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1082
-msgid "upload photo"
-msgstr "Foto uploaden"
+#: ../../mod/lostpass.php:124
+msgid "Nickname or Email: "
+msgstr "Bijnaam of e-mail:"
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1083
-msgid "Attach file"
-msgstr "Bestand bijvoegen"
+#: ../../mod/lostpass.php:125
+msgid "Reset"
+msgstr "Opnieuw"
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1084
-msgid "attach file"
-msgstr "bestand bijvoegen"
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
+msgstr "Systeem onbeschikbaar wegens onderhoud"
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1086
-msgid "web link"
-msgstr "webadres"
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "Item niet beschikbaar"
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:1087
-msgid "Insert video link"
-msgstr "Voeg video toe"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "Item niet gevonden"
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:1088
-msgid "video link"
-msgstr "video adres"
+#: ../../mod/apps.php:11
+msgid "Applications"
+msgstr "Toepassingen"
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1089
-msgid "Insert audio link"
-msgstr "Voeg audio adres toe"
+#: ../../mod/apps.php:14
+msgid "No installed applications."
+msgstr "Geen toepassingen geïnstalleerd"
 
-#: ../../mod/editpost.php:119 ../../include/conversation.php:1090
-msgid "audio link"
-msgstr "audio adres"
+#: ../../mod/help.php:79
+msgid "Help:"
+msgstr "Help:"
 
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1091
-msgid "Set your location"
-msgstr "Stel uw locatie in"
+#: ../../mod/help.php:84 ../../include/nav.php:113
+msgid "Help"
+msgstr "Help"
 
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1092
-msgid "set location"
-msgstr "Stel uw locatie in"
+#: ../../mod/contacts.php:104
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited"
+msgstr[0] ""
+msgstr[1] ""
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1093
-msgid "Clear browser location"
-msgstr "Verwijder locatie uit uw webbrowser"
+#: ../../mod/contacts.php:135 ../../mod/contacts.php:264
+msgid "Could not access contact record."
+msgstr "Kon geen toegang krijgen tot de contactgegevens"
 
-#: ../../mod/editpost.php:123 ../../include/conversation.php:1094
-msgid "clear location"
-msgstr "Verwijder locatie uit uw webbrowser"
+#: ../../mod/contacts.php:149
+msgid "Could not locate selected profile."
+msgstr "Kon het geselecteerde profiel niet vinden."
 
-#: ../../mod/editpost.php:125 ../../include/conversation.php:1100
-msgid "Permission settings"
-msgstr "Instellingen van rechten"
+#: ../../mod/contacts.php:178
+msgid "Contact updated."
+msgstr "Contact bijgewerkt."
 
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1109
-msgid "CC: email addresses"
-msgstr "CC: e-mailadressen"
+#: ../../mod/contacts.php:278
+msgid "Contact has been blocked"
+msgstr "Contact is geblokkeerd"
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1110
-msgid "Public post"
-msgstr "Openbare post"
+#: ../../mod/contacts.php:278
+msgid "Contact has been unblocked"
+msgstr "Contact is gedeblokkeerd"
 
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1096
-msgid "Set title"
-msgstr "Titel plaatsen"
+#: ../../mod/contacts.php:288
+msgid "Contact has been ignored"
+msgstr "Contact wordt genegeerd"
 
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1098
-msgid "Categories (comma-separated list)"
-msgstr "Categorieën (komma-gescheiden lijst)"
+#: ../../mod/contacts.php:288
+msgid "Contact has been unignored"
+msgstr "Contact wordt niet meer genegeerd"
 
-#: ../../mod/editpost.php:140 ../../include/conversation.php:1112
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be"
+#: ../../mod/contacts.php:299
+msgid "Contact has been archived"
+msgstr "Contact is gearchiveerd"
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "Item niet beschikbaar"
+#: ../../mod/contacts.php:299
+msgid "Contact has been unarchived"
+msgstr "Contact is niet meer gearchiveerd"
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "Item niet gevonden"
+#: ../../mod/contacts.php:324 ../../mod/contacts.php:697
+msgid "Do you really want to delete this contact?"
+msgstr "Wil je echt dit contact verwijderen?"
 
-#: ../../mod/regmod.php:63
-msgid "Account approved."
-msgstr "Account goedgekeurd."
+#: ../../mod/contacts.php:341
+msgid "Contact has been removed."
+msgstr "Contact is verwijderd."
 
-#: ../../mod/regmod.php:100
+#: ../../mod/contacts.php:379
 #, php-format
-msgid "Registration revoked for %s"
-msgstr "Registratie ingetrokken voor %s"
+msgid "You are mutual friends with %s"
+msgstr "Je bent wederzijds bevriend met %s"
 
-#: ../../mod/regmod.php:112
-msgid "Please login."
-msgstr "Log a.u.b. in."
+#: ../../mod/contacts.php:383
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Je deelt met %s"
 
-#: ../../mod/directory.php:57
-msgid "Find on this site"
-msgstr "Op deze website zoeken"
+#: ../../mod/contacts.php:388
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s deelt met jou"
 
-#: ../../mod/directory.php:59 ../../mod/contacts.php:685
-msgid "Finding: "
-msgstr "Gevonden:"
+#: ../../mod/contacts.php:405
+msgid "Private communications are not available for this contact."
+msgstr "Privécommunicatie met dit contact is niet beschikbaar."
 
-#: ../../mod/directory.php:60
-msgid "Site Directory"
-msgstr "Websitegids"
+#: ../../mod/contacts.php:412
+msgid "(Update was successful)"
+msgstr "(Wijziging is geslaagd)"
 
-#: ../../mod/directory.php:61 ../../mod/contacts.php:686
-#: ../../include/contact_widgets.php:33
-msgid "Find"
-msgstr "Zoek"
+#: ../../mod/contacts.php:412
+msgid "(Update was not successful)"
+msgstr "(Wijziging is niet geslaagd)"
 
-#: ../../mod/directory.php:111 ../../mod/profiles.php:686
-msgid "Age: "
-msgstr "Leeftijd:"
+#: ../../mod/contacts.php:414
+msgid "Suggest friends"
+msgstr "Stel vrienden voor"
 
-#: ../../mod/directory.php:114
-msgid "Gender: "
-msgstr "Geslacht:"
+#: ../../mod/contacts.php:418
+#, php-format
+msgid "Network type: %s"
+msgstr "Netwerk type: %s"
 
-#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
-msgid "About:"
-msgstr "Over:"
+#: ../../mod/contacts.php:421 ../../include/contact_widgets.php:199
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d gedeeld contact"
+msgstr[1] "%d gedeelde contacten"
 
-#: ../../mod/directory.php:187
-msgid "No entries (some entries may be hidden)."
-msgstr "Geen gegevens (sommige gegevens kunnen verborgen zijn)."
+#: ../../mod/contacts.php:426
+msgid "View all contacts"
+msgstr "Alle contacten zien"
 
-#: ../../mod/crepair.php:104
-msgid "Contact settings applied."
-msgstr "Contactinstellingen toegepast."
+#: ../../mod/contacts.php:434
+msgid "Toggle Blocked status"
+msgstr "Schakel geblokkeerde status"
 
-#: ../../mod/crepair.php:106
-msgid "Contact update failed."
-msgstr "Aanpassen van contact mislukt."
+#: ../../mod/contacts.php:437 ../../mod/contacts.php:491
+#: ../../mod/contacts.php:701
+msgid "Unignore"
+msgstr "Negeer niet meer"
 
-#: ../../mod/crepair.php:137
-msgid "Repair Contact Settings"
-msgstr "Contactinstellingen herstellen"
+#: ../../mod/contacts.php:440
+msgid "Toggle Ignored status"
+msgstr "Schakel negeerstatus"
 
-#: ../../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/contacts.php:444 ../../mod/contacts.php:702
+msgid "Unarchive"
+msgstr "Archiveer niet meer"
 
-#: ../../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 "Gebruik <strong>nu</strong> de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen."
+#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
+msgid "Archive"
+msgstr "Archiveer"
 
-#: ../../mod/crepair.php:146
-msgid "Return to contact editor"
-msgstr "Ga terug naar contactbewerker"
+#: ../../mod/contacts.php:447
+msgid "Toggle Archive status"
+msgstr "Schakel archiveringsstatus"
 
-#: ../../mod/crepair.php:151
-msgid "Account Nickname"
-msgstr "Bijnaam account"
+#: ../../mod/contacts.php:450
+msgid "Repair"
+msgstr "Herstellen"
 
-#: ../../mod/crepair.php:152
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Labelnaam - krijgt voorrang op naam/bijnaam"
+#: ../../mod/contacts.php:453
+msgid "Advanced Contact Settings"
+msgstr "Geavanceerde instellingen voor contacten"
 
-#: ../../mod/crepair.php:153
-msgid "Account URL"
-msgstr "URL account"
+#: ../../mod/contacts.php:459
+msgid "Communications lost with this contact!"
+msgstr "Communicatie met dit contact is verbroken!"
 
-#: ../../mod/crepair.php:154
-msgid "Friend Request URL"
-msgstr "URL vriendschapsverzoek"
+#: ../../mod/contacts.php:462
+msgid "Contact Editor"
+msgstr "Contactbewerker"
 
-#: ../../mod/crepair.php:155
-msgid "Friend Confirm URL"
-msgstr ""
+#: ../../mod/contacts.php:465
+msgid "Profile Visibility"
+msgstr "Zichtbaarheid profiel"
 
-#: ../../mod/crepair.php:156
-msgid "Notification Endpoint URL"
-msgstr ""
+#: ../../mod/contacts.php:466
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. "
 
-#: ../../mod/crepair.php:157
-msgid "Poll/Feed URL"
-msgstr "URL poll/feed"
+#: ../../mod/contacts.php:467
+msgid "Contact Information / Notes"
+msgstr "Contactinformatie / aantekeningen"
 
-#: ../../mod/crepair.php:158
-msgid "New photo from this URL"
-msgstr "Nieuwe foto van deze URL"
+#: ../../mod/contacts.php:468
+msgid "Edit contact notes"
+msgstr "Wijzig aantekeningen over dit contact"
 
-#: ../../mod/crepair.php:159
-msgid "Remote Self"
+#: ../../mod/contacts.php:474
+msgid "Block/Unblock contact"
+msgstr "Blokkeer/deblokkeer contact"
+
+#: ../../mod/contacts.php:475
+msgid "Ignore contact"
+msgstr "Negeer contact"
+
+#: ../../mod/contacts.php:476
+msgid "Repair URL settings"
+msgstr "Repareer URL-instellingen"
+
+#: ../../mod/contacts.php:477
+msgid "View conversations"
+msgstr "Toon conversaties"
+
+#: ../../mod/contacts.php:479
+msgid "Delete contact"
+msgstr "Verwijder contact"
+
+#: ../../mod/contacts.php:483
+msgid "Last update:"
+msgstr "Laatste wijziging:"
+
+#: ../../mod/contacts.php:485
+msgid "Update public posts"
+msgstr "Openbare posts aanpassen"
+
+#: ../../mod/contacts.php:494
+msgid "Currently blocked"
+msgstr "Op dit moment geblokkeerd"
+
+#: ../../mod/contacts.php:495
+msgid "Currently ignored"
+msgstr "Op dit moment genegeerd"
+
+#: ../../mod/contacts.php:496
+msgid "Currently archived"
+msgstr "Op dit moment gearchiveerd"
+
+#: ../../mod/contacts.php:497
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Antwoorden of 'vind ik leuk's op je openbare posts <strong>kunnen</strong> nog zichtbaar zijn"
+
+#: ../../mod/contacts.php:498
+msgid "Notification for new posts"
 msgstr ""
 
-#: ../../mod/crepair.php:161
-msgid "Mirror postings from this contact"
+#: ../../mod/contacts.php:498
+msgid "Send a notification of every new post of 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."
+#: ../../mod/contacts.php:499
+msgid "Fetch further information for feeds"
 msgstr ""
 
+#: ../../mod/contacts.php:550
+msgid "Suggestions"
+msgstr "Voorstellen"
+
+#: ../../mod/contacts.php:553
+msgid "Suggest potential friends"
+msgstr "Stel vrienden voor"
+
+#: ../../mod/contacts.php:556 ../../mod/group.php:194
+msgid "All Contacts"
+msgstr "Alle Contacten"
+
+#: ../../mod/contacts.php:559
+msgid "Show all contacts"
+msgstr "Toon alle contacten"
+
+#: ../../mod/contacts.php:562
+msgid "Unblocked"
+msgstr "Niet geblokkeerd"
+
+#: ../../mod/contacts.php:565
+msgid "Only show unblocked contacts"
+msgstr "Toon alleen niet-geblokkeerde contacten"
+
+#: ../../mod/contacts.php:569
+msgid "Blocked"
+msgstr "Geblokkeerd"
+
+#: ../../mod/contacts.php:572
+msgid "Only show blocked contacts"
+msgstr "Toon alleen geblokkeerde contacten"
+
+#: ../../mod/contacts.php:576
+msgid "Ignored"
+msgstr "Genegeerd"
+
+#: ../../mod/contacts.php:579
+msgid "Only show ignored contacts"
+msgstr "Toon alleen genegeerde contacten"
+
+#: ../../mod/contacts.php:583
+msgid "Archived"
+msgstr "Gearchiveerd"
+
+#: ../../mod/contacts.php:586
+msgid "Only show archived contacts"
+msgstr "Toon alleen gearchiveerde contacten"
+
+#: ../../mod/contacts.php:590
+msgid "Hidden"
+msgstr "Verborgen"
+
+#: ../../mod/contacts.php:593
+msgid "Only show hidden contacts"
+msgstr "Toon alleen verborgen contacten"
+
+#: ../../mod/contacts.php:641
+msgid "Mutual Friendship"
+msgstr "Wederzijdse vriendschap"
+
+#: ../../mod/contacts.php:645
+msgid "is a fan of yours"
+msgstr "Is een fan van jou"
+
+#: ../../mod/contacts.php:649
+msgid "you are a fan of"
+msgstr "Jij bent een fan van"
+
+#: ../../mod/contacts.php:688 ../../view/theme/diabook/theme.php:125
+#: ../../include/nav.php:173
+msgid "Contacts"
+msgstr "Contacten"
+
+#: ../../mod/contacts.php:692
+msgid "Search your contacts"
+msgstr "Doorzoek je contacten"
+
+#: ../../mod/contacts.php:693 ../../mod/directory.php:59
+msgid "Finding: "
+msgstr "Gevonden:"
+
+#: ../../mod/contacts.php:694 ../../mod/directory.php:61
+#: ../../include/contact_widgets.php:33
+msgid "Find"
+msgstr "Zoek"
+
+#: ../../mod/contacts.php:699 ../../mod/settings.php:132
+#: ../../mod/settings.php:635
+msgid "Update"
+msgstr "Wijzigen"
+
+#: ../../mod/videos.php:125
+msgid "No videos selected"
+msgstr "Geen video's geselecteerd"
+
+#: ../../mod/videos.php:317
+msgid "Recent Videos"
+msgstr "Recente video's"
+
+#: ../../mod/videos.php:319
+msgid "Upload New Videos"
+msgstr "Nieuwe video's uploaden"
+
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "Gedeelde Vrienden"
+
+#: ../../mod/common.php:78
+msgid "No contacts in common."
+msgstr "Geen gedeelde contacten."
+
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr "Contact toegevoegd"
+
 #: ../../mod/uimport.php:66
 msgid "Move account"
 msgstr "Account verplaatsen"
@@ -3047,3479 +3042,3697 @@ msgid ""
 "select \"Export account\""
 msgstr ""
 
-#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Privacyinformatie op afstand niet beschikbaar."
+#: ../../mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s volgt %3$s van %2$s"
 
-#: ../../mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Zichtbaar voor:"
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "Vrienden van %s"
 
-#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:937
-msgid "Save"
-msgstr "Bewaren"
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Geen vrienden om te laten zien."
 
-#: ../../mod/help.php:79
-msgid "Help:"
-msgstr "Help:"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Label verwijderd"
 
-#: ../../mod/help.php:84 ../../include/nav.php:113
-msgid "Help"
-msgstr "Help"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Verwijder label van item"
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Geen profiel"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Selecteer een label om te verwijderen: "
 
-#: ../../mod/dfrn_request.php:93
-msgid "This introduction has already been accepted."
-msgstr "Verzoek is al goedgekeurd"
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133
+msgid "Remove"
+msgstr "Verwijderen"
 
-#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Profiel is ongeldig of bevat geen informatie"
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Welkom bij Friendica"
 
-#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar."
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Checklist voor nieuwe leden"
 
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
-msgid "Warning: profile location has no profile photo."
-msgstr "Waarschuwing: Profieladres heeft geen profielfoto."
+#: ../../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 "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen."
 
-#: ../../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] "De %d vereiste parameter is niet op het gegeven adres gevonden"
-msgstr[1] "De %d vereiste parameters zijn niet op het gegeven adres gevonden"
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Aan de slag"
 
-#: ../../mod/dfrn_request.php:170
-msgid "Introduction complete."
-msgstr "Verzoek voltooid."
-
-#: ../../mod/dfrn_request.php:209
-msgid "Unrecoverable protocol error."
-msgstr "Onherstelbare protocolfout. "
-
-#: ../../mod/dfrn_request.php:237
-msgid "Profile unavailable."
-msgstr "Profiel onbeschikbaar"
-
-#: ../../mod/dfrn_request.php:262
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s heeft te veel verzoeken gehad vandaag."
-
-#: ../../mod/dfrn_request.php:263
-msgid "Spam protection measures have been invoked."
-msgstr "Beveiligingsmaatregelen tegen spam zijn in werking getreden."
-
-#: ../../mod/dfrn_request.php:264
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Wij adviseren vrienden om het over 24 uur nog een keer te proberen."
-
-#: ../../mod/dfrn_request.php:326
-msgid "Invalid locator"
-msgstr "Ongeldige plaatsbepaler"
-
-#: ../../mod/dfrn_request.php:335
-msgid "Invalid email address."
-msgstr "Geen geldig e-mailadres"
-
-#: ../../mod/dfrn_request.php:362
-msgid "This account has not been configured for email. Request failed."
-msgstr "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail."
-
-#: ../../mod/dfrn_request.php:458
-msgid "Unable to resolve your name at the provided location."
-msgstr "Ik kan jouw naam op het opgegeven adres niet vinden."
-
-#: ../../mod/dfrn_request.php:471
-msgid "You have already introduced yourself here."
-msgstr "Je hebt jezelf hier al voorgesteld."
-
-#: ../../mod/dfrn_request.php:475
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Blijkbaar bent u al bevriend met %s."
-
-#: ../../mod/dfrn_request.php:496
-msgid "Invalid profile URL."
-msgstr "Ongeldig profiel adres."
-
-#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
-msgid "Disallowed profile URL."
-msgstr "Niet toegelaten profiel adres."
-
-#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:174
-msgid "Failed to update contact record."
-msgstr "Ik kon de contactgegevens niet aanpassen."
-
-#: ../../mod/dfrn_request.php:592
-msgid "Your introduction has been sent."
-msgstr "Je verzoek is verzonden."
-
-#: ../../mod/dfrn_request.php:645
-msgid "Please login to confirm introduction."
-msgstr "Log in om je verzoek te bevestigen."
-
-#: ../../mod/dfrn_request.php:659
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Je huidige identiteit is niet de juiste. Log a.u.b. in met <strong>dit</strong> profiel."
-
-#: ../../mod/dfrn_request.php:670
-msgid "Hide this contact"
-msgstr "Verberg dit contact"
-
-#: ../../mod/dfrn_request.php:673
-#, php-format
-msgid "Welcome home %s."
-msgstr "Welkom terug %s."
-
-#: ../../mod/dfrn_request.php:674
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Bevestig je vriendschaps-/connectieverzoek voor %s."
-
-#: ../../mod/dfrn_request.php:675
-msgid "Confirm"
-msgstr "Bevestig"
-
-#: ../../mod/dfrn_request.php:716 ../../include/items.php:3532
-msgid "[Name Withheld]"
-msgstr "[Naam achtergehouden]"
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Doorloop Friendica"
 
-#: ../../mod/dfrn_request.php:811
+#: ../../mod/newmember.php:18
 msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:"
+"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 "Op je <em>Snelstart</em> pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden."
 
-#: ../../mod/dfrn_request.php:827
-msgid "<strike>Connect as an email follower</strike> (Coming soon)"
-msgstr "<strike>Sluit aan als e-mail volger</strike> (Binnenkort)"
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Ga naar je instellingen"
 
-#: ../../mod/dfrn_request.php:829
+#: ../../mod/newmember.php:26
 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 "Als je nog geen lid bent van het vrije sociale web,  <a href=\"http://dir.friendica.com/siteinfo\">volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan</a>."
-
-#: ../../mod/dfrn_request.php:832
-msgid "Friend/Connection Request"
-msgstr "Vriendschaps-/connectieverzoek"
+"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 "Verander je initieel wachtwoord op je <em>instellingenpagina</em>. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale web."
 
-#: ../../mod/dfrn_request.php:833
+#: ../../mod/newmember.php:28
 msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
-
-#: ../../mod/dfrn_request.php:834
-msgid "Please answer the following:"
-msgstr "Beantwoord het volgende:"
-
-#: ../../mod/dfrn_request.php:835
-#, php-format
-msgid "Does %s know you?"
-msgstr "Kent %s jou?"
-
-#: ../../mod/dfrn_request.php:838
-msgid "Add a personal note:"
-msgstr "Voeg een persoonlijke opmerking toe:"
-
-#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
-msgid "Friendica"
-msgstr "Friendica"
+"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 "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden."
 
-#: ../../mod/dfrn_request.php:841
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Gefedereerde Sociale Web"
+#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
+#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979
+#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
+#: ../../include/nav.php:77
+msgid "Profile"
+msgstr "Profiel"
 
-#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:722
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
-msgstr "Diaspora"
+#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
+msgstr "Profielfoto uploaden"
 
-#: ../../mod/dfrn_request.php:843
-#, php-format
+#: ../../mod/newmember.php:36
 msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr "- Gebruik a.u.b. niet dit formulier. Vul %s in in je Diaspora zoekbalk."
-
-#: ../../mod/dfrn_request.php:844
-msgid "Your Identity Address:"
-msgstr "Adres van uw identiteit:"
-
-#: ../../mod/dfrn_request.php:847
-msgid "Submit Request"
-msgstr "Aanvraag indienen"
-
-#: ../../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 "[Ingebedde inhoud - herlaad pagina om het te bekijken]"
-
-#: ../../mod/content.php:496 ../../include/conversation.php:686
-msgid "View in context"
-msgstr "In context bekijken"
-
-#: ../../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 "Kon geen toegang krijgen tot de contactgegevens"
-
-#: ../../mod/contacts.php:149
-msgid "Could not locate selected profile."
-msgstr "Kon het geselecteerde profiel niet vinden."
-
-#: ../../mod/contacts.php:172
-msgid "Contact updated."
-msgstr "Contact bijgewerkt."
-
-#: ../../mod/contacts.php:272
-msgid "Contact has been blocked"
-msgstr "Contact is geblokkeerd"
-
-#: ../../mod/contacts.php:272
-msgid "Contact has been unblocked"
-msgstr "Contact is gedeblokkeerd"
-
-#: ../../mod/contacts.php:282
-msgid "Contact has been ignored"
-msgstr "Contact wordt genegeerd"
-
-#: ../../mod/contacts.php:282
-msgid "Contact has been unignored"
-msgstr "Contact wordt niet meer genegeerd"
-
-#: ../../mod/contacts.php:293
-msgid "Contact has been archived"
-msgstr "Contact is gearchiveerd"
-
-#: ../../mod/contacts.php:293
-msgid "Contact has been unarchived"
-msgstr "Contact is niet meer gearchiveerd"
-
-#: ../../mod/contacts.php:318 ../../mod/contacts.php:689
-msgid "Do you really want to delete this contact?"
-msgstr "Wil je echt dit contact verwijderen?"
-
-#: ../../mod/contacts.php:335
-msgid "Contact has been removed."
-msgstr "Contact is verwijderd."
-
-#: ../../mod/contacts.php:373
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Je bent wederzijds bevriend met %s"
-
-#: ../../mod/contacts.php:377
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Je deelt met %s"
-
-#: ../../mod/contacts.php:382
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s deelt met jou"
-
-#: ../../mod/contacts.php:399
-msgid "Private communications are not available for this contact."
-msgstr "Privécommunicatie met dit contact is niet beschikbaar."
-
-#: ../../mod/contacts.php:406
-msgid "(Update was successful)"
-msgstr "(Wijziging is geslaagd)"
-
-#: ../../mod/contacts.php:406
-msgid "(Update was not successful)"
-msgstr "(Wijziging is niet geslaagd)"
-
-#: ../../mod/contacts.php:408
-msgid "Suggest friends"
-msgstr "Stel vrienden voor"
-
-#: ../../mod/contacts.php:412
-#, php-format
-msgid "Network type: %s"
-msgstr "Netwerk type: %s"
-
-#: ../../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 gedeeld contact"
-msgstr[1] "%d gedeelde contacten"
-
-#: ../../mod/contacts.php:420
-msgid "View all contacts"
-msgstr "Alle contacten zien"
-
-#: ../../mod/contacts.php:428
-msgid "Toggle Blocked status"
-msgstr "Schakel geblokkeerde status"
-
-#: ../../mod/contacts.php:431 ../../mod/contacts.php:485
-#: ../../mod/contacts.php:693
-msgid "Unignore"
-msgstr "Negeer niet meer"
-
-#: ../../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 "Negeren"
-
-#: ../../mod/contacts.php:434
-msgid "Toggle Ignored status"
-msgstr "Schakel negeerstatus"
-
-#: ../../mod/contacts.php:438 ../../mod/contacts.php:694
-msgid "Unarchive"
-msgstr "Archiveer niet meer"
+"Upload a profile photo if you have not done so already. Studies have shown "
+"that people with real photos of themselves are ten times more likely to make"
+" friends than people who do not."
+msgstr "Upload een profielfoto, als je dat nog niet gedaan hebt. Studies tonen aan dat mensen met echte foto's van zichzelf tien keer gemakkelijker vrienden maken dan mensen die dat niet doen."
 
-#: ../../mod/contacts.php:438 ../../mod/contacts.php:694
-msgid "Archive"
-msgstr "Archiveer"
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Bewerk je profiel"
 
-#: ../../mod/contacts.php:441
-msgid "Toggle Archive status"
-msgstr "Schakel archiveringsstatus"
+#: ../../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 "Bewerk je <strong>standaard</strong> profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen."
 
-#: ../../mod/contacts.php:444
-msgid "Repair"
-msgstr "Herstellen"
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Sleutelwoorden voor dit profiel"
 
-#: ../../mod/contacts.php:447
-msgid "Advanced Contact Settings"
-msgstr "Geavanceerde instellingen voor contacten"
+#: ../../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 "Stel enkele openbare sleutelwoorden in voor je standaard profiel die je interesses beschrijven. We kunnen dan misschien mensen vinden met gelijkaardige interesses, en vrienden voorstellen."
 
-#: ../../mod/contacts.php:453
-msgid "Communications lost with this contact!"
-msgstr "Communicatie met dit contact is verbroken!"
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Verbinding aan het maken"
 
-#: ../../mod/contacts.php:456
-msgid "Contact Editor"
-msgstr "Contactbewerker"
+#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
+#: ../../include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../mod/contacts.php:459
-msgid "Profile Visibility"
-msgstr "Zichtbaarheid profiel"
+#: ../../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 "Machtig de Facebook Connector als je een Facebook account hebt. We zullen (optioneel) al je Facebook vrienden en conversaties importeren."
 
-#: ../../mod/contacts.php:460
-#, php-format
+#: ../../mod/newmember.php:51
 msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. "
+"<em>If</em> this is your own personal server, installing the Facebook addon "
+"may ease your transition to the free social web."
+msgstr "<em>Als</em> dit jouw eigen persoonlijke server is kan het installeren van de Facebook toevoeging je overgang naar het vrije sociale web vergemakkelijken."
 
-#: ../../mod/contacts.php:461
-msgid "Contact Information / Notes"
-msgstr "Contactinformatie / aantekeningen"
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "E-mails importeren"
 
-#: ../../mod/contacts.php:462
-msgid "Edit contact notes"
-msgstr "Wijzig aantekeningen over dit contact"
+#: ../../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 "Vul je e-mailtoegangsinformatie in op je pagina met verbindingsinstellingen als je vrienden of mailinglijsten uit je e-mail-inbox wilt importeren, en met hen wilt communiceren"
 
-#: ../../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 "Bekijk het profiel van %s [%s]"
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Ga naar je contactenpagina"
 
-#: ../../mod/contacts.php:468
-msgid "Block/Unblock contact"
-msgstr "Blokkeer/deblokkeer contact"
+#: ../../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 "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de <em>Voeg nieuw contact toe</em> dialoog."
 
-#: ../../mod/contacts.php:469
-msgid "Ignore contact"
-msgstr "Negeer contact"
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Ga naar de gids van je website"
 
-#: ../../mod/contacts.php:470
-msgid "Repair URL settings"
-msgstr "Repareer URL-instellingen"
+#: ../../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 "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord <em>Connect</em> of <em>Follow</em> op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd."
 
-#: ../../mod/contacts.php:471
-msgid "View conversations"
-msgstr "Toon conversaties"
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Nieuwe mensen vinden"
 
-#: ../../mod/contacts.php:473
-msgid "Delete contact"
-msgstr "Verwijder contact"
+#: ../../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 "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden."
 
-#: ../../mod/contacts.php:477
-msgid "Last update:"
-msgstr "Laatste wijziging:"
+#: ../../mod/newmember.php:66 ../../include/group.php:270
+msgid "Groups"
+msgstr "Groepen"
 
-#: ../../mod/contacts.php:479
-msgid "Update public posts"
-msgstr "Openbare posts aanpassen"
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Groepeer je contacten"
 
-#: ../../mod/contacts.php:488
-msgid "Currently blocked"
-msgstr "Op dit moment geblokkeerd"
+#: ../../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 "Als je een aantal vrienden gemaakt hebt kun je ze in je eigen conversatiegroepen indelen vanuit de zijbalk van je 'Conacten' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. "
 
-#: ../../mod/contacts.php:489
-msgid "Currently ignored"
-msgstr "Op dit moment genegeerd"
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Waarom zijn mijn berichten niet openbaar?"
 
-#: ../../mod/contacts.php:490
-msgid "Currently archived"
-msgstr "Op dit moment gearchiveerd"
+#: ../../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 "Friendica respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie."
 
-#: ../../mod/contacts.php:491 ../../mod/notifications.php:157
-#: ../../mod/notifications.php:204
-msgid "Hide this contact from others"
-msgstr "Verberg dit contact voor anderen"
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Hulp krijgen"
 
-#: ../../mod/contacts.php:491
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Antwoorden of 'vind ik leuk's op je openbare posts <strong>kunnen</strong> nog zichtbaar zijn"
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Ga naar de help"
 
-#: ../../mod/contacts.php:542
-msgid "Suggestions"
-msgstr "Voorstellen"
+#: ../../mod/newmember.php:82
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Je kunt onze <strong>help</strong> pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma."
 
-#: ../../mod/contacts.php:545
-msgid "Suggest potential friends"
-msgstr "Stel vrienden voor"
+#: ../../mod/search.php:21 ../../mod/network.php:179
+msgid "Remove term"
+msgstr "Verwijder zoekterm"
 
-#: ../../mod/contacts.php:548 ../../mod/group.php:194
-msgid "All Contacts"
-msgstr "Alle Contacten"
+#: ../../mod/search.php:30 ../../mod/network.php:188
+#: ../../include/features.php:42
+msgid "Saved Searches"
+msgstr "Opgeslagen zoekopdrachten"
 
-#: ../../mod/contacts.php:551
-msgid "Show all contacts"
-msgstr "Toon alle contacten"
+#: ../../mod/search.php:99 ../../include/text.php:951
+#: ../../include/text.php:952 ../../include/nav.php:118
+msgid "Search"
+msgstr "Zoeken"
 
-#: ../../mod/contacts.php:554
-msgid "Unblocked"
-msgstr "Niet geblokkeerd"
+#: ../../mod/search.php:170 ../../mod/search.php:196
+#: ../../mod/community.php:62 ../../mod/community.php:89
+msgid "No results."
+msgstr "Geen resultaten."
 
-#: ../../mod/contacts.php:557
-msgid "Only show unblocked contacts"
-msgstr "Toon alleen niet-geblokkeerde contacten"
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "Totale uitnodigingslimiet overschreden."
 
-#: ../../mod/contacts.php:561
-msgid "Blocked"
-msgstr "Geblokkeerd"
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s: Geen geldig e-mailadres."
 
-#: ../../mod/contacts.php:564
-msgid "Only show blocked contacts"
-msgstr "Toon alleen geblokkeerde contacten"
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Kom bij ons op Friendica"
 
-#: ../../mod/contacts.php:568
-msgid "Ignored"
-msgstr "Genegeerd"
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website."
 
-#: ../../mod/contacts.php:571
-msgid "Only show ignored contacts"
-msgstr "Toon alleen genegeerde contacten"
+#: ../../mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : Aflevering van bericht mislukt."
 
-#: ../../mod/contacts.php:575
-msgid "Archived"
-msgstr "Gearchiveerd"
+#: ../../mod/invite.php:93
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d bericht verzonden."
+msgstr[1] "%d berichten verzonden."
 
-#: ../../mod/contacts.php:578
-msgid "Only show archived contacts"
-msgstr "Toon alleen gearchiveerde contacten"
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Je kunt geen uitnodigingen meer sturen"
 
-#: ../../mod/contacts.php:582
-msgid "Hidden"
-msgstr "Verborgen"
+#: ../../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 "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken."
 
-#: ../../mod/contacts.php:585
-msgid "Only show hidden contacts"
-msgstr "Toon alleen verborgen contacten"
+#: ../../mod/invite.php:122
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website."
 
-#: ../../mod/contacts.php:633
-msgid "Mutual Friendship"
-msgstr "Wederzijdse vriendschap"
+#: ../../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 "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten."
 
-#: ../../mod/contacts.php:637
-msgid "is a fan of yours"
-msgstr "Is een fan van jou"
+#: ../../mod/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen."
 
-#: ../../mod/contacts.php:641
-msgid "you are a fan of"
-msgstr "Jij bent een fan van"
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Verstuur uitnodigingen"
 
-#: ../../mod/contacts.php:658 ../../mod/nogroup.php:41
-msgid "Edit contact"
-msgstr "Contact bewerken"
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "Vul e-mailadressen in, één per lijn:"
 
-#: ../../mod/contacts.php:684
-msgid "Search your contacts"
-msgstr "Doorzoek je contacten"
+#: ../../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 "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen."
 
-#: ../../mod/contacts.php:691 ../../mod/settings.php:126
-#: ../../mod/settings.php:627
-msgid "Update"
-msgstr "Wijzigen"
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Je zult deze uitnodigingscode moeten invullen: $invite_code"
 
-#: ../../mod/settings.php:28 ../../mod/photos.php:79
-msgid "everybody"
-msgstr "iedereen"
+#: ../../mod/invite.php:137
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:"
 
-#: ../../mod/settings.php:35 ../../mod/uexport.php:9 ../../include/nav.php:167
-msgid "Account settings"
-msgstr "Account instellingen"
+#: ../../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 "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken"
 
-#: ../../mod/settings.php:40
+#: ../../mod/settings.php:41
 msgid "Additional features"
 msgstr "Extra functies"
 
-#: ../../mod/settings.php:45 ../../mod/uexport.php:14
-msgid "Display settings"
-msgstr "Scherminstellingen"
+#: ../../mod/settings.php:46
+msgid "Display"
+msgstr ""
 
-#: ../../mod/settings.php:51 ../../mod/uexport.php:20
-msgid "Connector settings"
-msgstr "Connector instellingen"
+#: ../../mod/settings.php:52 ../../mod/settings.php:775
+msgid "Social Networks"
+msgstr ""
 
-#: ../../mod/settings.php:56 ../../mod/uexport.php:25
-msgid "Plugin settings"
-msgstr "Plugin instellingen"
+#: ../../mod/settings.php:62 ../../include/nav.php:167
+msgid "Delegations"
+msgstr ""
 
-#: ../../mod/settings.php:61 ../../mod/uexport.php:30
+#: ../../mod/settings.php:67
 msgid "Connected apps"
 msgstr "Verbonden applicaties"
 
-#: ../../mod/settings.php:66 ../../mod/uexport.php:35 ../../mod/uexport.php:80
+#: ../../mod/settings.php:72 ../../mod/uexport.php:85
 msgid "Export personal data"
 msgstr "Persoonlijke gegevens exporteren"
 
-#: ../../mod/settings.php:71 ../../mod/uexport.php:40
+#: ../../mod/settings.php:77
 msgid "Remove account"
 msgstr "Account verwijderen"
 
-#: ../../mod/settings.php:123
+#: ../../mod/settings.php:129
 msgid "Missing some important data!"
 msgstr "Een belangrijk gegeven ontbreekt!"
 
-#: ../../mod/settings.php:232
+#: ../../mod/settings.php:238
 msgid "Failed to connect with email account using the settings provided."
 msgstr "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen."
 
-#: ../../mod/settings.php:237
+#: ../../mod/settings.php:243
 msgid "Email settings updated."
 msgstr "E-mail instellingen bijgewerkt.."
 
-#: ../../mod/settings.php:252
+#: ../../mod/settings.php:258
 msgid "Features updated"
 msgstr "Functies bijgewerkt"
 
-#: ../../mod/settings.php:311
+#: ../../mod/settings.php:319
 msgid "Relocate message has been send to your contacts"
 msgstr ""
 
-#: ../../mod/settings.php:325
+#: ../../mod/settings.php:333
 msgid "Passwords do not match. Password unchanged."
 msgstr "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd."
 
-#: ../../mod/settings.php:330
+#: ../../mod/settings.php:338
 msgid "Empty passwords are not allowed. Password unchanged."
 msgstr "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd."
 
-#: ../../mod/settings.php:338
+#: ../../mod/settings.php:346
 msgid "Wrong password."
 msgstr "Verkeerd wachtwoord."
 
-#: ../../mod/settings.php:349
+#: ../../mod/settings.php:357
 msgid "Password changed."
 msgstr "Wachtwoord gewijzigd."
 
-#: ../../mod/settings.php:351
+#: ../../mod/settings.php:359
 msgid "Password update failed. Please try again."
 msgstr "Wachtwoord-)wijziging mislukt. Probeer opnieuw."
 
-#: ../../mod/settings.php:416
+#: ../../mod/settings.php:424
 msgid " Please use a shorter name."
-msgstr "Gebruik a.u.b. een kortere naam."
+msgstr "Gebruik een kortere naam."
 
-#: ../../mod/settings.php:418
+#: ../../mod/settings.php:426
 msgid " Name too short."
 msgstr "Naam te kort."
 
-#: ../../mod/settings.php:427
+#: ../../mod/settings.php:435
 msgid "Wrong Password"
 msgstr "Verkeerd wachtwoord"
 
-#: ../../mod/settings.php:432
+#: ../../mod/settings.php:440
 msgid " Not valid email."
 msgstr "Geen geldig e-mailadres."
 
-#: ../../mod/settings.php:438
+#: ../../mod/settings.php:446
 msgid " Cannot change to that email."
 msgstr "Kan niet veranderen naar die e-mail."
 
-#: ../../mod/settings.php:493
+#: ../../mod/settings.php:501
 msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr "Privéforum heeft geen privacyrechten . De standaard privacygroep wordt gebruikt."
 
-#: ../../mod/settings.php:497
+#: ../../mod/settings.php:505
 msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr "Privéforum heeft geen privacyrechten en geen standaard privacygroep."
 
-#: ../../mod/settings.php:527
+#: ../../mod/settings.php:535
 msgid "Settings updated."
 msgstr "Instellingen bijgewerkt."
 
-#: ../../mod/settings.php:600 ../../mod/settings.php:626
-#: ../../mod/settings.php:662
+#: ../../mod/settings.php:608 ../../mod/settings.php:634
+#: ../../mod/settings.php:670
 msgid "Add application"
 msgstr "Toepassing toevoegen"
 
-#: ../../mod/settings.php:604 ../../mod/settings.php:630
+#: ../../mod/settings.php:612 ../../mod/settings.php:638
 msgid "Consumer Key"
 msgstr "Gebruikerssleutel"
 
-#: ../../mod/settings.php:605 ../../mod/settings.php:631
+#: ../../mod/settings.php:613 ../../mod/settings.php:639
 msgid "Consumer Secret"
 msgstr "Gebruikersgeheim"
 
-#: ../../mod/settings.php:606 ../../mod/settings.php:632
+#: ../../mod/settings.php:614 ../../mod/settings.php:640
 msgid "Redirect"
 msgstr "Doorverwijzing"
 
-#: ../../mod/settings.php:607 ../../mod/settings.php:633
+#: ../../mod/settings.php:615 ../../mod/settings.php:641
 msgid "Icon url"
 msgstr "URL pictogram"
 
-#: ../../mod/settings.php:618
+#: ../../mod/settings.php:626
 msgid "You can't edit this application."
 msgstr "Je kunt deze toepassing niet wijzigen."
 
-#: ../../mod/settings.php:661
+#: ../../mod/settings.php:669
 msgid "Connected Apps"
 msgstr "Verbonden applicaties"
 
-#: ../../mod/settings.php:665
+#: ../../mod/settings.php:673
 msgid "Client key starts with"
 msgstr ""
 
-#: ../../mod/settings.php:666
+#: ../../mod/settings.php:674
 msgid "No name"
 msgstr "Geen naam"
 
-#: ../../mod/settings.php:667
+#: ../../mod/settings.php:675
 msgid "Remove authorization"
 msgstr "Verwijder authorisatie"
 
-#: ../../mod/settings.php:679
+#: ../../mod/settings.php:687
 msgid "No Plugin settings configured"
 msgstr ""
 
-#: ../../mod/settings.php:687
+#: ../../mod/settings.php:695
 msgid "Plugin Settings"
 msgstr "Plugin Instellingen"
 
-#: ../../mod/settings.php:701
+#: ../../mod/settings.php:709
 msgid "Off"
 msgstr "Uit"
 
-#: ../../mod/settings.php:701
+#: ../../mod/settings.php:709
 msgid "On"
 msgstr "Aan"
 
-#: ../../mod/settings.php:709
+#: ../../mod/settings.php:717
 msgid "Additional Features"
 msgstr "Extra functies"
 
-#: ../../mod/settings.php:722 ../../mod/settings.php:723
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
 #, php-format
 msgid "Built-in support for %s connectivity is %s"
 msgstr "Ingebouwde ondersteuning voor connectiviteit met %s is %s"
 
-#: ../../mod/settings.php:722 ../../mod/settings.php:723
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
 msgid "enabled"
 msgstr "ingeschakeld"
 
-#: ../../mod/settings.php:722 ../../mod/settings.php:723
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
 msgid "disabled"
 msgstr "uitgeschakeld"
 
-#: ../../mod/settings.php:723
+#: ../../mod/settings.php:732
 msgid "StatusNet"
 msgstr "StatusNet"
 
-#: ../../mod/settings.php:755
+#: ../../mod/settings.php:768
 msgid "Email access is disabled on this site."
 msgstr "E-mailtoegang is op deze website uitgeschakeld."
 
-#: ../../mod/settings.php:762
-msgid "Connector Settings"
-msgstr "Connector Instellingen"
-
-#: ../../mod/settings.php:767
+#: ../../mod/settings.php:780
 msgid "Email/Mailbox Setup"
 msgstr "E-mail Instellen"
 
-#: ../../mod/settings.php:768
+#: ../../mod/settings.php:781
 msgid ""
 "If you wish to communicate with email contacts using this service "
 "(optional), please specify how to connect to your mailbox."
 msgstr "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken."
 
-#: ../../mod/settings.php:769
+#: ../../mod/settings.php:782
 msgid "Last successful email check:"
 msgstr "Laatste succesvolle e-mail controle:"
 
-#: ../../mod/settings.php:771
+#: ../../mod/settings.php:784
 msgid "IMAP server name:"
 msgstr "IMAP server naam:"
 
-#: ../../mod/settings.php:772
+#: ../../mod/settings.php:785
 msgid "IMAP port:"
 msgstr "IMAP poort:"
 
-#: ../../mod/settings.php:773
+#: ../../mod/settings.php:786
 msgid "Security:"
 msgstr "Beveiliging:"
 
-#: ../../mod/settings.php:773 ../../mod/settings.php:778
+#: ../../mod/settings.php:786 ../../mod/settings.php:791
 msgid "None"
 msgstr "Geen"
 
-#: ../../mod/settings.php:774
+#: ../../mod/settings.php:787
 msgid "Email login name:"
 msgstr "E-mail login naam:"
 
-#: ../../mod/settings.php:775
+#: ../../mod/settings.php:788
 msgid "Email password:"
 msgstr "E-mail wachtwoord:"
 
-#: ../../mod/settings.php:776
+#: ../../mod/settings.php:789
 msgid "Reply-to address:"
 msgstr "Antwoord adres:"
 
-#: ../../mod/settings.php:777
+#: ../../mod/settings.php:790
 msgid "Send public posts to all email contacts:"
 msgstr "Openbare posts naar alle e-mail contacten versturen:"
 
-#: ../../mod/settings.php:778
+#: ../../mod/settings.php:791
 msgid "Action after import:"
 msgstr "Actie na importeren:"
 
-#: ../../mod/settings.php:778
+#: ../../mod/settings.php:791
 msgid "Mark as seen"
 msgstr "Als 'gelezen' markeren"
 
-#: ../../mod/settings.php:778
+#: ../../mod/settings.php:791
 msgid "Move to folder"
 msgstr "Naar map verplaatsen"
 
-#: ../../mod/settings.php:779
+#: ../../mod/settings.php:792
 msgid "Move to folder:"
 msgstr "Verplaatsen naar map:"
 
-#: ../../mod/settings.php:854
+#: ../../mod/settings.php:870
 msgid "Display Settings"
 msgstr "Scherminstellingen"
 
-#: ../../mod/settings.php:860 ../../mod/settings.php:873
+#: ../../mod/settings.php:876 ../../mod/settings.php:890
 msgid "Display Theme:"
 msgstr "Schermthema:"
 
-#: ../../mod/settings.php:861
+#: ../../mod/settings.php:877
 msgid "Mobile Theme:"
 msgstr "Mobiel thema:"
 
-#: ../../mod/settings.php:862
+#: ../../mod/settings.php:878
 msgid "Update browser every xx seconds"
 msgstr "Browser elke xx seconden verversen"
 
-#: ../../mod/settings.php:862
+#: ../../mod/settings.php:878
 msgid "Minimum of 10 seconds, no maximum"
 msgstr "Minimum 10 seconden, geen maximum"
 
-#: ../../mod/settings.php:863
+#: ../../mod/settings.php:879
 msgid "Number of items to display per page:"
 msgstr "Aantal items te tonen per pagina:"
 
-#: ../../mod/settings.php:863 ../../mod/settings.php:864
+#: ../../mod/settings.php:879 ../../mod/settings.php:880
 msgid "Maximum of 100 items"
 msgstr "Maximum 100 items"
 
-#: ../../mod/settings.php:864
+#: ../../mod/settings.php:880
 msgid "Number of items to display per page when viewed from mobile device:"
 msgstr "Aantal items per pagina als je een mobiel toestel gebruikt:"
 
-#: ../../mod/settings.php:865
+#: ../../mod/settings.php:881
 msgid "Don't show emoticons"
 msgstr "Emoticons niet tonen"
 
-#: ../../mod/settings.php:866
+#: ../../mod/settings.php:882
+msgid "Don't show notices"
+msgstr ""
+
+#: ../../mod/settings.php:883
 msgid "Infinite scroll"
 msgstr ""
 
-#: ../../mod/settings.php:942
+#: ../../mod/settings.php:960
+msgid "User Types"
+msgstr ""
+
+#: ../../mod/settings.php:961
+msgid "Community Types"
+msgstr ""
+
+#: ../../mod/settings.php:962
 msgid "Normal Account Page"
 msgstr "Normale account pagina"
 
-#: ../../mod/settings.php:943
+#: ../../mod/settings.php:963
 msgid "This account is a normal personal profile"
 msgstr "Deze account is een normaal persoonlijk profiel"
 
-#: ../../mod/settings.php:946
+#: ../../mod/settings.php:966
 msgid "Soapbox Page"
 msgstr "Zeepkist pagina"
 
-#: ../../mod/settings.php:947
+#: ../../mod/settings.php:967
 msgid "Automatically approve all connection/friend requests as read-only fans"
 msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met alleen recht tot lezen."
 
-#: ../../mod/settings.php:950
+#: ../../mod/settings.php:970
 msgid "Community Forum/Celebrity Account"
 msgstr "Gemeenschapsforum/Account van beroemdheid"
 
-#: ../../mod/settings.php:951
+#: ../../mod/settings.php:971
 msgid ""
 "Automatically approve all connection/friend requests as read-write fans"
 msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met recht tot lezen en schrijven."
 
-#: ../../mod/settings.php:954
+#: ../../mod/settings.php:974
 msgid "Automatic Friend Page"
 msgstr "Automatisch Vriendschapspagina"
 
-#: ../../mod/settings.php:955
+#: ../../mod/settings.php:975
 msgid "Automatically approve all connection/friend requests as friends"
 msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden."
 
-#: ../../mod/settings.php:958
+#: ../../mod/settings.php:978
 msgid "Private Forum [Experimental]"
 msgstr "Privé-forum [experimenteel]"
 
-#: ../../mod/settings.php:959
+#: ../../mod/settings.php:979
 msgid "Private forum - approved members only"
 msgstr "Privé-forum - enkel voor goedgekeurde leden"
 
-#: ../../mod/settings.php:971
-msgid "OpenID:"
-msgstr "OpenID:"
+#: ../../mod/settings.php:991
+msgid "OpenID:"
+msgstr "OpenID:"
+
+#: ../../mod/settings.php:991
+msgid "(Optional) Allow this OpenID to login to this account."
+msgstr "(Optioneel) Laat dit OpenID toe om in te loggen op deze account."
+
+#: ../../mod/settings.php:1001
+msgid "Publish your default profile in your local site directory?"
+msgstr "Je standaardprofiel in je lokale gids publiceren?"
+
+#: ../../mod/settings.php:1007
+msgid "Publish your default profile in the global social directory?"
+msgstr "Je standaardprofiel in de globale sociale gids publiceren?"
+
+#: ../../mod/settings.php:1015
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?"
+
+#: ../../mod/settings.php:1019 ../../include/conversation.php:1055
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Je profieldetails verbergen voor onbekende bezoekers?"
+
+#: ../../mod/settings.php:1024
+msgid "Allow friends to post to your profile page?"
+msgstr "Vrienden toestaan om op jou profielpagina te posten?"
+
+#: ../../mod/settings.php:1030
+msgid "Allow friends to tag your posts?"
+msgstr "Sta vrienden toe om jouw berichten te labelen?"
+
+#: ../../mod/settings.php:1036
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Sta je mij toe om jou als mogelijke vriend  voor te stellen aan nieuwe leden?"
+
+#: ../../mod/settings.php:1042
+msgid "Permit unknown people to send you private mail?"
+msgstr "Mogen onbekende personen jou privé berichten sturen?"
+
+#: ../../mod/settings.php:1050
+msgid "Profile is <strong>not published</strong>."
+msgstr "Profiel is <strong>niet gepubliceerd</strong>."
+
+#: ../../mod/settings.php:1053 ../../mod/profile_photo.php:248
+msgid "or"
+msgstr "of"
+
+#: ../../mod/settings.php:1058
+msgid "Your Identity Address is"
+msgstr "Jouw Identiteitsadres is"
+
+#: ../../mod/settings.php:1069
+msgid "Automatically expire posts after this many days:"
+msgstr "Laat berichten automatisch vervallen na zo veel dagen:"
+
+#: ../../mod/settings.php:1069
+msgid "If empty, posts will not expire. Expired posts will be deleted"
+msgstr "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd."
+
+#: ../../mod/settings.php:1070
+msgid "Advanced expiration settings"
+msgstr "Geavanceerde instellingen voor vervallen"
+
+#: ../../mod/settings.php:1071
+msgid "Advanced Expiration"
+msgstr "Geavanceerd Verval:"
+
+#: ../../mod/settings.php:1072
+msgid "Expire posts:"
+msgstr "Laat berichten vervallen:"
+
+#: ../../mod/settings.php:1073
+msgid "Expire personal notes:"
+msgstr "Laat persoonlijke aantekeningen verlopen:"
+
+#: ../../mod/settings.php:1074
+msgid "Expire starred posts:"
+msgstr "Laat berichten met ster verlopen"
+
+#: ../../mod/settings.php:1075
+msgid "Expire photos:"
+msgstr "Laat foto's vervallen:"
+
+#: ../../mod/settings.php:1076
+msgid "Only expire posts by others:"
+msgstr "Laat alleen berichten door anderen vervallen:"
+
+#: ../../mod/settings.php:1102
+msgid "Account Settings"
+msgstr "Account Instellingen"
+
+#: ../../mod/settings.php:1110
+msgid "Password Settings"
+msgstr "Wachtwoord Instellingen"
+
+#: ../../mod/settings.php:1111
+msgid "New Password:"
+msgstr "Nieuw Wachtwoord:"
+
+#: ../../mod/settings.php:1112
+msgid "Confirm:"
+msgstr "Bevestig:"
+
+#: ../../mod/settings.php:1112
+msgid "Leave password fields blank unless changing"
+msgstr "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen"
+
+#: ../../mod/settings.php:1113
+msgid "Current Password:"
+msgstr "Huidig wachtwoord:"
+
+#: ../../mod/settings.php:1113 ../../mod/settings.php:1114
+msgid "Your current password to confirm the changes"
+msgstr "Je huidig wachtwoord om de wijzigingen te bevestigen"
+
+#: ../../mod/settings.php:1114
+msgid "Password:"
+msgstr "Wachtwoord:"
+
+#: ../../mod/settings.php:1118
+msgid "Basic Settings"
+msgstr "Basis Instellingen"
+
+#: ../../mod/settings.php:1119 ../../include/profile_advanced.php:15
+msgid "Full Name:"
+msgstr "Volledige Naam:"
+
+#: ../../mod/settings.php:1120
+msgid "Email Address:"
+msgstr "E-mailadres:"
+
+#: ../../mod/settings.php:1121
+msgid "Your Timezone:"
+msgstr "Je Tijdzone:"
+
+#: ../../mod/settings.php:1122
+msgid "Default Post Location:"
+msgstr "Standaard locatie:"
+
+#: ../../mod/settings.php:1123
+msgid "Use Browser Location:"
+msgstr "Gebruik Webbrowser Locatie:"
+
+#: ../../mod/settings.php:1126
+msgid "Security and Privacy Settings"
+msgstr "Instellingen voor Beveiliging en Privacy"
+
+#: ../../mod/settings.php:1128
+msgid "Maximum Friend Requests/Day:"
+msgstr "Maximum aantal vriendschapsverzoeken per dag:"
+
+#: ../../mod/settings.php:1128 ../../mod/settings.php:1158
+msgid "(to prevent spam abuse)"
+msgstr "(om spam misbruik te voorkomen)"
+
+#: ../../mod/settings.php:1129
+msgid "Default Post Permissions"
+msgstr "Standaard rechten voor nieuwe berichten"
+
+#: ../../mod/settings.php:1130
+msgid "(click to open/close)"
+msgstr "(klik om te openen/sluiten)"
+
+#: ../../mod/settings.php:1141
+msgid "Default Private Post"
+msgstr "Standaard Privé Post"
+
+#: ../../mod/settings.php:1142
+msgid "Default Public Post"
+msgstr "Standaard Publieke Post"
+
+#: ../../mod/settings.php:1146
+msgid "Default Permissions for New Posts"
+msgstr "Standaard rechten voor nieuwe berichten"
+
+#: ../../mod/settings.php:1158
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Maximum aantal privé-berichten per dag van onbekende personen:"
+
+#: ../../mod/settings.php:1161
+msgid "Notification Settings"
+msgstr "Notificatie Instellingen"
+
+#: ../../mod/settings.php:1162
+msgid "By default post a status message when:"
+msgstr "Post automatisch een bericht op je tijdlijn wanneer:"
+
+#: ../../mod/settings.php:1163
+msgid "accepting a friend request"
+msgstr "Een vriendschapsverzoek accepteren"
+
+#: ../../mod/settings.php:1164
+msgid "joining a forum/community"
+msgstr "Lid worden van een forum of gemeenschap"
+
+#: ../../mod/settings.php:1165
+msgid "making an <em>interesting</em> profile change"
+msgstr "Een <em>interessante</em> verandering aan je profiel"
+
+#: ../../mod/settings.php:1166
+msgid "Send a notification email when:"
+msgstr "Stuur een notificatie e-mail wanneer:"
+
+#: ../../mod/settings.php:1167
+msgid "You receive an introduction"
+msgstr "Je ontvangt een vriendschaps- of connectieverzoek"
+
+#: ../../mod/settings.php:1168
+msgid "Your introductions are confirmed"
+msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd"
+
+#: ../../mod/settings.php:1169
+msgid "Someone writes on your profile wall"
+msgstr "Iemand iets op je tijdlijn schrijft"
+
+#: ../../mod/settings.php:1170
+msgid "Someone writes a followup comment"
+msgstr "Iemand een reactie schrijft"
+
+#: ../../mod/settings.php:1171
+msgid "You receive a private message"
+msgstr "Je een privé-bericht ontvangt"
+
+#: ../../mod/settings.php:1172
+msgid "You receive a friend suggestion"
+msgstr "Je een suggestie voor een vriendschap ontvangt"
+
+#: ../../mod/settings.php:1173
+msgid "You are tagged in a post"
+msgstr "Je expliciet in een bericht bent genoemd"
+
+#: ../../mod/settings.php:1174
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Je in een bericht bent aangestoten/gepord/etc."
+
+#: ../../mod/settings.php:1177
+msgid "Advanced Account/Page Type Settings"
+msgstr ""
+
+#: ../../mod/settings.php:1178
+msgid "Change the behaviour of this account for special situations"
+msgstr ""
+
+#: ../../mod/settings.php:1181
+msgid "Relocate"
+msgstr ""
+
+#: ../../mod/settings.php:1182
+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:1183
+msgid "Resend relocate message to contacts"
+msgstr ""
+
+#: ../../mod/display.php:263
+msgid "Item has been removed."
+msgstr "Item is verwijderd."
+
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Mensen Zoeken"
+
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "Geen resultaten"
+
+#: ../../mod/profiles.php:37
+msgid "Profile deleted."
+msgstr "Profiel verwijderd"
+
+#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+msgid "Profile-"
+msgstr "Profiel-"
+
+#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
+msgid "New profile created."
+msgstr "Nieuw profiel aangemaakt."
+
+#: ../../mod/profiles.php:95
+msgid "Profile unavailable to clone."
+msgstr "Profiel niet beschikbaar om te klonen."
+
+#: ../../mod/profiles.php:170
+msgid "Profile Name is required."
+msgstr "Profielnaam is vereist."
+
+#: ../../mod/profiles.php:321
+msgid "Marital Status"
+msgstr "Echtelijke staat"
+
+#: ../../mod/profiles.php:325
+msgid "Romantic Partner"
+msgstr "Romantische Partner"
 
-#: ../../mod/settings.php:971
-msgid "(Optional) Allow this OpenID to login to this account."
-msgstr "(Optioneel) Laat dit OpenID toe om in te loggen op deze account."
+#: ../../mod/profiles.php:329
+msgid "Likes"
+msgstr "Houdt van"
 
-#: ../../mod/settings.php:981
-msgid "Publish your default profile in your local site directory?"
-msgstr "Je standaardprofiel in je lokale gids publiceren?"
+#: ../../mod/profiles.php:333
+msgid "Dislikes"
+msgstr "Houdt niet van"
 
-#: ../../mod/settings.php:987
-msgid "Publish your default profile in the global social directory?"
-msgstr "Je standaardprofiel in de globale sociale gids publiceren?"
+#: ../../mod/profiles.php:337
+msgid "Work/Employment"
+msgstr "Werk"
 
-#: ../../mod/settings.php:995
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?"
+#: ../../mod/profiles.php:340
+msgid "Religion"
+msgstr "Godsdienst"
 
-#: ../../mod/settings.php:999
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Je profieldetails verbergen voor onbekende bezoekers?"
+#: ../../mod/profiles.php:344
+msgid "Political Views"
+msgstr "Politieke standpunten"
 
-#: ../../mod/settings.php:1004
-msgid "Allow friends to post to your profile page?"
-msgstr "Vrienden toestaan om op jou profielpagina te posten?"
+#: ../../mod/profiles.php:348
+msgid "Gender"
+msgstr "Geslacht"
 
-#: ../../mod/settings.php:1010
-msgid "Allow friends to tag your posts?"
-msgstr "Sta vrienden toe om jouw berichten te labelen?"
+#: ../../mod/profiles.php:352
+msgid "Sexual Preference"
+msgstr "Seksuele Voorkeur"
 
-#: ../../mod/settings.php:1016
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "Sta je mij toe om jou als mogelijke vriend  voor te stellen aan nieuwe leden?"
+#: ../../mod/profiles.php:356
+msgid "Homepage"
+msgstr "Tijdlijn"
 
-#: ../../mod/settings.php:1022
-msgid "Permit unknown people to send you private mail?"
-msgstr "Mogen onbekende personen jou privé berichten sturen?"
+#: ../../mod/profiles.php:360
+msgid "Interests"
+msgstr "Interesses"
 
-#: ../../mod/settings.php:1030
-msgid "Profile is <strong>not published</strong>."
-msgstr "Profiel is <strong>niet gepubliceerd</strong>."
+#: ../../mod/profiles.php:364
+msgid "Address"
+msgstr "Adres"
 
-#: ../../mod/settings.php:1033 ../../mod/profile_photo.php:248
-msgid "or"
-msgstr "of"
+#: ../../mod/profiles.php:371
+msgid "Location"
+msgstr "Plaats"
 
-#: ../../mod/settings.php:1038
-msgid "Your Identity Address is"
-msgstr "Jouw Identiteitsadres is"
+#: ../../mod/profiles.php:454
+msgid "Profile updated."
+msgstr "Profiel bijgewerkt."
 
-#: ../../mod/settings.php:1049
-msgid "Automatically expire posts after this many days:"
-msgstr "Laat berichten automatisch vervallen na zo veel dagen:"
+#: ../../mod/profiles.php:525
+msgid " and "
+msgstr "en"
 
-#: ../../mod/settings.php:1049
-msgid "If empty, posts will not expire. Expired posts will be deleted"
-msgstr "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd."
+#: ../../mod/profiles.php:533
+msgid "public profile"
+msgstr "publiek profiel"
 
-#: ../../mod/settings.php:1050
-msgid "Advanced expiration settings"
-msgstr "Geavanceerde instellingen voor vervallen"
+#: ../../mod/profiles.php:536
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s veranderde %2$s naar &ldquo;%3$s&rdquo;"
 
-#: ../../mod/settings.php:1051
-msgid "Advanced Expiration"
-msgstr "Geavanceerd Verval:"
+#: ../../mod/profiles.php:537
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr " - Bezoek %2$s van %1$s"
 
-#: ../../mod/settings.php:1052
-msgid "Expire posts:"
-msgstr "Laat berichten vervallen:"
+#: ../../mod/profiles.php:540
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s heeft een aangepast %2$s, %3$s veranderd."
 
-#: ../../mod/settings.php:1053
-msgid "Expire personal notes:"
-msgstr "Laat persoonlijke aantekeningen verlopen:"
+#: ../../mod/profiles.php:613
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Je vrienden/contacten verbergen voor bezoekers van dit profiel?"
 
-#: ../../mod/settings.php:1054
-msgid "Expire starred posts:"
-msgstr "Laat berichten met ster verlopen"
+#: ../../mod/profiles.php:633
+msgid "Edit Profile Details"
+msgstr "Profieldetails bewerken"
 
-#: ../../mod/settings.php:1055
-msgid "Expire photos:"
-msgstr "Laat foto's vervallen:"
+#: ../../mod/profiles.php:635
+msgid "Change Profile Photo"
+msgstr "Profielfoto wijzigen"
 
-#: ../../mod/settings.php:1056
-msgid "Only expire posts by others:"
-msgstr "Laat alleen berichten door anderen vervallen:"
+#: ../../mod/profiles.php:636
+msgid "View this profile"
+msgstr "Dit profiel bekijken"
 
-#: ../../mod/settings.php:1082
-msgid "Account Settings"
-msgstr "Account Instellingen"
+#: ../../mod/profiles.php:637
+msgid "Create a new profile using these settings"
+msgstr "Nieuw profiel aanmaken met deze instellingen"
 
-#: ../../mod/settings.php:1090
-msgid "Password Settings"
-msgstr "Wachtwoord Instellingen"
+#: ../../mod/profiles.php:638
+msgid "Clone this profile"
+msgstr "Dit profiel klonen"
 
-#: ../../mod/settings.php:1091
-msgid "New Password:"
-msgstr "Nieuw Wachtwoord:"
+#: ../../mod/profiles.php:639
+msgid "Delete this profile"
+msgstr "Dit profiel verwijderen"
 
-#: ../../mod/settings.php:1092
-msgid "Confirm:"
-msgstr "Bevestig:"
+#: ../../mod/profiles.php:640
+msgid "Profile Name:"
+msgstr "Profiel Naam:"
 
-#: ../../mod/settings.php:1092
-msgid "Leave password fields blank unless changing"
-msgstr "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen"
+#: ../../mod/profiles.php:641
+msgid "Your Full Name:"
+msgstr "Je volledige naam:"
 
-#: ../../mod/settings.php:1093
-msgid "Current Password:"
-msgstr "Huidig wachtwoord:"
+#: ../../mod/profiles.php:642
+msgid "Title/Description:"
+msgstr "Titel/Beschrijving:"
 
-#: ../../mod/settings.php:1093 ../../mod/settings.php:1094
-msgid "Your current password to confirm the changes"
-msgstr "Je huidig wachtwoord om de wijzigingen te bevestigen"
+#: ../../mod/profiles.php:643
+msgid "Your Gender:"
+msgstr "Je Geslacht:"
 
-#: ../../mod/settings.php:1094
-msgid "Password:"
-msgstr "Wachtwoord:"
+#: ../../mod/profiles.php:644
+#, php-format
+msgid "Birthday (%s):"
+msgstr "Geboortedatum (%s):"
 
-#: ../../mod/settings.php:1098
-msgid "Basic Settings"
-msgstr "Basis Instellingen"
+#: ../../mod/profiles.php:645
+msgid "Street Address:"
+msgstr "Postadres:"
 
-#: ../../mod/settings.php:1099 ../../include/profile_advanced.php:15
-msgid "Full Name:"
-msgstr "Volledige Naam:"
+#: ../../mod/profiles.php:646
+msgid "Locality/City:"
+msgstr "Gemeente/Stad:"
 
-#: ../../mod/settings.php:1100
-msgid "Email Address:"
-msgstr "E-mailadres:"
+#: ../../mod/profiles.php:647
+msgid "Postal/Zip Code:"
+msgstr "Postcode:"
 
-#: ../../mod/settings.php:1101
-msgid "Your Timezone:"
-msgstr "Je Tijdzone:"
+#: ../../mod/profiles.php:648
+msgid "Country:"
+msgstr "Land:"
 
-#: ../../mod/settings.php:1102
-msgid "Default Post Location:"
-msgstr "Standaard locatie:"
+#: ../../mod/profiles.php:649
+msgid "Region/State:"
+msgstr "Regio/Staat:"
 
-#: ../../mod/settings.php:1103
-msgid "Use Browser Location:"
-msgstr "Gebruik Webbrowser Locatie:"
+#: ../../mod/profiles.php:650
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Echtelijke Staat:"
 
-#: ../../mod/settings.php:1106
-msgid "Security and Privacy Settings"
-msgstr "Instellingen voor Beveiliging en Privacy"
+#: ../../mod/profiles.php:651
+msgid "Who: (if applicable)"
+msgstr "Wie: (indien toepasbaar)"
 
-#: ../../mod/settings.php:1108
-msgid "Maximum Friend Requests/Day:"
-msgstr "Maximum aantal vriendschapsverzoeken per dag:"
+#: ../../mod/profiles.php:652
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl"
 
-#: ../../mod/settings.php:1108 ../../mod/settings.php:1138
-msgid "(to prevent spam abuse)"
-msgstr "(om spam misbruik te voorkomen)"
+#: ../../mod/profiles.php:653
+msgid "Since [date]:"
+msgstr "Sinds [datum]:"
 
-#: ../../mod/settings.php:1109
-msgid "Default Post Permissions"
-msgstr "Standaard rechten voor nieuwe berichten"
+#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:46
+msgid "Sexual Preference:"
+msgstr "Seksuele Voorkeur:"
 
-#: ../../mod/settings.php:1110
-msgid "(click to open/close)"
-msgstr "(klik om te openen/sluiten)"
+#: ../../mod/profiles.php:655
+msgid "Homepage URL:"
+msgstr "Adres tijdlijn:"
 
-#: ../../mod/settings.php:1119 ../../mod/photos.php:1140
-#: ../../mod/photos.php:1506
-msgid "Show to Groups"
-msgstr "Tonen aan groepen"
+#: ../../mod/profiles.php:656 ../../include/profile_advanced.php:50
+msgid "Hometown:"
+msgstr "Woonplaats:"
 
-#: ../../mod/settings.php:1120 ../../mod/photos.php:1141
-#: ../../mod/photos.php:1507
-msgid "Show to Contacts"
-msgstr "Tonen aan contacten"
+#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:54
+msgid "Political Views:"
+msgstr "Politieke standpunten:"
 
-#: ../../mod/settings.php:1121
-msgid "Default Private Post"
-msgstr "Standaard Privé Post"
+#: ../../mod/profiles.php:658
+msgid "Religious Views:"
+msgstr "Geloof:"
 
-#: ../../mod/settings.php:1122
-msgid "Default Public Post"
-msgstr "Standaard Publieke Post"
+#: ../../mod/profiles.php:659
+msgid "Public Keywords:"
+msgstr "Publieke Sleutelwoorden:"
 
-#: ../../mod/settings.php:1126
-msgid "Default Permissions for New Posts"
-msgstr "Standaard rechten voor nieuwe berichten"
+#: ../../mod/profiles.php:660
+msgid "Private Keywords:"
+msgstr "Privé Sleutelwoorden:"
 
-#: ../../mod/settings.php:1138
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Maximum aantal privé-berichten per dag van onbekende personen:"
+#: ../../mod/profiles.php:661 ../../include/profile_advanced.php:62
+msgid "Likes:"
+msgstr "Houdt van:"
 
-#: ../../mod/settings.php:1141
-msgid "Notification Settings"
-msgstr "Notificatie Instellingen"
+#: ../../mod/profiles.php:662 ../../include/profile_advanced.php:64
+msgid "Dislikes:"
+msgstr "Houdt niet van:"
 
-#: ../../mod/settings.php:1142
-msgid "By default post a status message when:"
-msgstr "Post automatisch een bericht op je tijdlijn wanneer:"
+#: ../../mod/profiles.php:663
+msgid "Example: fishing photography software"
+msgstr "Voorbeeld: vissen fotografie software"
 
-#: ../../mod/settings.php:1143
-msgid "accepting a friend request"
-msgstr "Een vriendschapsverzoek accepteren"
+#: ../../mod/profiles.php:664
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)"
 
-#: ../../mod/settings.php:1144
-msgid "joining a forum/community"
-msgstr "Lid worden van een forum of gemeenschap"
+#: ../../mod/profiles.php:665
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)"
 
-#: ../../mod/settings.php:1145
-msgid "making an <em>interesting</em> profile change"
-msgstr "Een <em>interessante</em> verandering aan je profiel"
+#: ../../mod/profiles.php:666
+msgid "Tell us about yourself..."
+msgstr "Vertel iets over jezelf..."
 
-#: ../../mod/settings.php:1146
-msgid "Send a notification email when:"
-msgstr "Stuur een notificatie e-mail wanneer:"
+#: ../../mod/profiles.php:667
+msgid "Hobbies/Interests"
+msgstr "Hobby's/Interesses"
 
-#: ../../mod/settings.php:1147
-msgid "You receive an introduction"
-msgstr "Je ontvangt een vriendschaps- of connectieverzoek"
+#: ../../mod/profiles.php:668
+msgid "Contact information and Social Networks"
+msgstr "Contactinformatie en sociale netwerken"
 
-#: ../../mod/settings.php:1148
-msgid "Your introductions are confirmed"
-msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd"
+#: ../../mod/profiles.php:669
+msgid "Musical interests"
+msgstr "Muzikale interesses"
 
-#: ../../mod/settings.php:1149
-msgid "Someone writes on your profile wall"
-msgstr "Iemand iets op de muur van je profiel schrijft"
+#: ../../mod/profiles.php:670
+msgid "Books, literature"
+msgstr "Boeken, literatuur"
 
-#: ../../mod/settings.php:1150
-msgid "Someone writes a followup comment"
-msgstr "Iemand een commentaar schrijft"
+#: ../../mod/profiles.php:671
+msgid "Television"
+msgstr "Televisie"
 
-#: ../../mod/settings.php:1151
-msgid "You receive a private message"
-msgstr "Je een privé-bericht ontvangt"
+#: ../../mod/profiles.php:672
+msgid "Film/dance/culture/entertainment"
+msgstr "Film/dans/cultuur/ontspanning"
 
-#: ../../mod/settings.php:1152
-msgid "You receive a friend suggestion"
-msgstr "Je een suggestie voor een vriendschap ontvangt"
+#: ../../mod/profiles.php:673
+msgid "Love/romance"
+msgstr "Liefde/romance"
 
-#: ../../mod/settings.php:1153
-msgid "You are tagged in a post"
-msgstr "Je bent in een bericht genoemd"
+#: ../../mod/profiles.php:674
+msgid "Work/employment"
+msgstr "Werk"
 
-#: ../../mod/settings.php:1154
-msgid "You are poked/prodded/etc. in a post"
-msgstr "Je bent in een bericht aangestoten/gepord/etc."
+#: ../../mod/profiles.php:675
+msgid "School/education"
+msgstr "School/opleiding"
 
-#: ../../mod/settings.php:1157
-msgid "Advanced Account/Page Type Settings"
-msgstr ""
+#: ../../mod/profiles.php:680
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Dit is jouw <strong>publiek</strong> profiel.<br />Het <strong>kan</strong> zichtbaar zijn voor iedereen op het internet."
 
-#: ../../mod/settings.php:1158
-msgid "Change the behaviour of this account for special situations"
-msgstr ""
+#: ../../mod/profiles.php:690 ../../mod/directory.php:111
+msgid "Age: "
+msgstr "Leeftijd:"
 
-#: ../../mod/settings.php:1161
-msgid "Relocate"
-msgstr ""
+#: ../../mod/profiles.php:729
+msgid "Edit/Manage Profiles"
+msgstr "Wijzig/Beheer Profielen"
 
-#: ../../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/profiles.php:730 ../../boot.php:1473 ../../boot.php:1499
+msgid "Change profile photo"
+msgstr "Profiel foto wijzigen"
 
-#: ../../mod/settings.php:1163
-msgid "Resend relocate message to contacts"
-msgstr ""
+#: ../../mod/profiles.php:731 ../../boot.php:1474
+msgid "Create New Profile"
+msgstr "Maak nieuw profiel"
 
-#: ../../mod/profiles.php:37
-msgid "Profile deleted."
-msgstr "Profiel verwijderd"
+#: ../../mod/profiles.php:742 ../../boot.php:1484
+msgid "Profile Image"
+msgstr "Profiel afbeelding"
 
-#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
-msgid "Profile-"
-msgstr "Profiel-"
+#: ../../mod/profiles.php:744 ../../boot.php:1487
+msgid "visible to everybody"
+msgstr "zichtbaar voor iedereen"
 
-#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
-msgid "New profile created."
-msgstr "Nieuw profiel aangemaakt."
+#: ../../mod/profiles.php:745 ../../boot.php:1488
+msgid "Edit visibility"
+msgstr "Pas zichtbaarheid aan"
 
-#: ../../mod/profiles.php:95
-msgid "Profile unavailable to clone."
-msgstr "Profiel niet beschikbaar om te klonen."
+#: ../../mod/share.php:44
+msgid "link"
+msgstr "link"
 
-#: ../../mod/profiles.php:170
-msgid "Profile Name is required."
-msgstr "Profielnaam is vereist."
+#: ../../mod/uexport.php:77
+msgid "Export account"
+msgstr "Account exporteren"
 
-#: ../../mod/profiles.php:317
-msgid "Marital Status"
-msgstr "Echtelijke staat"
+#: ../../mod/uexport.php:77
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server."
 
-#: ../../mod/profiles.php:321
-msgid "Romantic Partner"
-msgstr "Romantische Partner"
+#: ../../mod/uexport.php:78
+msgid "Export all"
+msgstr "Alles exporteren"
 
-#: ../../mod/profiles.php:325
-msgid "Likes"
-msgstr "Houdt van"
+#: ../../mod/uexport.php:78
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
+msgstr "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)"
 
-#: ../../mod/profiles.php:329
-msgid "Dislikes"
-msgstr "Houdt niet van"
+#: ../../mod/ping.php:238
+msgid "{0} wants to be your friend"
+msgstr "{0} wilt je vriend worden"
 
-#: ../../mod/profiles.php:333
-msgid "Work/Employment"
-msgstr "Werk"
+#: ../../mod/ping.php:243
+msgid "{0} sent you a message"
+msgstr "{0} stuurde jou een bericht"
 
-#: ../../mod/profiles.php:336
-msgid "Religion"
-msgstr "Godsdienst"
+#: ../../mod/ping.php:248
+msgid "{0} requested registration"
+msgstr "{0} vroeg om zich te registreren"
 
-#: ../../mod/profiles.php:340
-msgid "Political Views"
-msgstr "Politieke standpunten"
+#: ../../mod/ping.php:254
+#, php-format
+msgid "{0} commented %s's post"
+msgstr "{0} gaf een reactie op het bericht van %s"
 
-#: ../../mod/profiles.php:344
-msgid "Gender"
-msgstr "Geslacht"
+#: ../../mod/ping.php:259
+#, php-format
+msgid "{0} liked %s's post"
+msgstr "{0} vond het bericht van %s leuk"
 
-#: ../../mod/profiles.php:348
-msgid "Sexual Preference"
-msgstr "Seksuele Voorkeur"
+#: ../../mod/ping.php:264
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "{0} vond het bericht van %s niet leuk"
 
-#: ../../mod/profiles.php:352
-msgid "Homepage"
-msgstr "Tijdlijn"
+#: ../../mod/ping.php:269
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0} is nu bevriend met %s"
 
-#: ../../mod/profiles.php:356
-msgid "Interests"
-msgstr "Interesses"
+#: ../../mod/ping.php:274
+msgid "{0} posted"
+msgstr "{0} plaatste"
 
-#: ../../mod/profiles.php:360
-msgid "Address"
-msgstr "Adres"
+#: ../../mod/ping.php:279
+#, php-format
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0} labelde %s's bericht met #%s"
 
-#: ../../mod/profiles.php:367
-msgid "Location"
-msgstr "Plaats"
+#: ../../mod/ping.php:285
+msgid "{0} mentioned you in a post"
+msgstr "{0} vermeldde je in een bericht"
 
-#: ../../mod/profiles.php:450
-msgid "Profile updated."
-msgstr "Profiel bijgewerkt."
+#: ../../mod/navigation.php:20 ../../include/nav.php:34
+msgid "Nothing new here"
+msgstr "Niets nieuw hier"
 
-#: ../../mod/profiles.php:521
-msgid " and "
-msgstr "en"
+#: ../../mod/navigation.php:24 ../../include/nav.php:38
+msgid "Clear notifications"
+msgstr "Notificaties verwijderen"
 
-#: ../../mod/profiles.php:529
-msgid "public profile"
-msgstr "publiek profiel"
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "Niet beschikbaar"
 
-#: ../../mod/profiles.php:532
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s veranderde %2$s naar &ldquo;%3$s&rdquo;"
+#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:129
+#: ../../include/nav.php:128
+msgid "Community"
+msgstr "Gemeenschap"
 
-#: ../../mod/profiles.php:533
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " - Bezoek %2$s van %1$s"
+#: ../../mod/filer.php:30 ../../include/conversation.php:1004
+#: ../../include/conversation.php:1022
+msgid "Save to Folder:"
+msgstr "Bewaren in map:"
 
-#: ../../mod/profiles.php:536
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s heeft een aangepast %2$s, %3$s veranderd."
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "- Kies -"
 
-#: ../../mod/profiles.php:609
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Je vrienden/contacten verbergen voor bezoekers van dit profiel?"
+#: ../../mod/filer.php:31 ../../mod/notes.php:63 ../../include/text.php:954
+msgid "Save"
+msgstr "Bewaren"
 
-#: ../../mod/profiles.php:629
-msgid "Edit Profile Details"
-msgstr "Profiel details bewerken"
+#: ../../mod/wall_attach.php:75
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr ""
 
-#: ../../mod/profiles.php:631
-msgid "Change Profile Photo"
-msgstr "Profiel foto wijzigen"
+#: ../../mod/wall_attach.php:75
+msgid "Or - did you try to upload an empty file?"
+msgstr ""
 
-#: ../../mod/profiles.php:632
-msgid "View this profile"
-msgstr "Dit profiel bekijken"
+#: ../../mod/wall_attach.php:81
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Bestand is groter dan de toegelaten %d"
 
-#: ../../mod/profiles.php:633
-msgid "Create a new profile using these settings"
-msgstr "Nieuw profiel aanmaken met deze instellingen"
+#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
+msgid "File upload failed."
+msgstr "Uploaden van bestand mislukt."
 
-#: ../../mod/profiles.php:634
-msgid "Clone this profile"
-msgstr "Dit profiel klonen"
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Ongeldige profiel-identificatie."
 
-#: ../../mod/profiles.php:635
-msgid "Delete this profile"
-msgstr "Dit profiel verwijderen"
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr ""
 
-#: ../../mod/profiles.php:636
-msgid "Profile Name:"
-msgstr "Profiel Naam:"
+#: ../../mod/profperm.php:105 ../../mod/group.php:224
+msgid "Click on a contact to add or remove."
+msgstr "Klik op een contact om het toe te voegen of te verwijderen."
 
-#: ../../mod/profiles.php:637
-msgid "Your Full Name:"
-msgstr "Je volledige naam:"
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Zichtbaar voor"
 
-#: ../../mod/profiles.php:638
-msgid "Title/Description:"
-msgstr "Titel/Beschrijving:"
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Alle contacten (met veilige profieltoegang)"
+
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Wil je echt dit voorstel verwijderen?"
 
-#: ../../mod/profiles.php:639
-msgid "Your Gender:"
-msgstr "Je Geslacht:"
+#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:527
+#: ../../include/contact_widgets.php:34
+msgid "Friend Suggestions"
+msgstr "Vriendschapsvoorstellen"
 
-#: ../../mod/profiles.php:640
-#, php-format
-msgid "Birthday (%s):"
-msgstr "Geboortedatum (%s):"
+#: ../../mod/suggest.php:72
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen."
 
-#: ../../mod/profiles.php:641
-msgid "Street Address:"
-msgstr "Postadres:"
+#: ../../mod/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1445
+#: ../../include/contact_widgets.php:9
+msgid "Connect"
+msgstr "Verbinden"
 
-#: ../../mod/profiles.php:642
-msgid "Locality/City:"
-msgstr "Gemeente/Stad:"
+#: ../../mod/suggest.php:90
+msgid "Ignore/Hide"
+msgstr "Negeren/Verbergen"
 
-#: ../../mod/profiles.php:643
-msgid "Postal/Zip Code:"
-msgstr "Postcode:"
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Toegang geweigerd"
 
-#: ../../mod/profiles.php:644
-msgid "Country:"
-msgstr "Land:"
+#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s heet %2$s van harte welkom"
 
-#: ../../mod/profiles.php:645
-msgid "Region/State:"
-msgstr "Regio/Staat:"
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Beheer Identiteiten en/of Pagina's"
 
-#: ../../mod/profiles.php:646
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Echtelijke Staat:"
+#: ../../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 "Wissel tussen verschillende identiteiten of groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen."
 
-#: ../../mod/profiles.php:647
-msgid "Who: (if applicable)"
-msgstr "Wie: (indien toepasbaar)"
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Selecteer een identiteit om te beheren:"
 
-#: ../../mod/profiles.php:648
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl"
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden."
 
-#: ../../mod/profiles.php:649
-msgid "Since [date]:"
-msgstr "Sinds [datum]:"
+#: ../../mod/delegate.php:124 ../../include/nav.php:167
+msgid "Delegate Page Management"
+msgstr "Paginabeheer uitbesteden"
 
-#: ../../mod/profiles.php:650 ../../include/profile_advanced.php:46
-msgid "Sexual Preference:"
-msgstr "Seksuele Voorkeur:"
+#: ../../mod/delegate.php:126
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd."
 
-#: ../../mod/profiles.php:651
-msgid "Homepage URL:"
-msgstr "Adres tijdlijn:"
+#: ../../mod/delegate.php:127
+msgid "Existing Page Managers"
+msgstr "Bestaande paginabeheerders"
 
-#: ../../mod/profiles.php:652 ../../include/profile_advanced.php:50
-msgid "Hometown:"
-msgstr "Woonplaats:"
+#: ../../mod/delegate.php:129
+msgid "Existing Page Delegates"
+msgstr "Bestaande personen waaraan het paginabeheer is uitbesteed"
 
-#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:54
-msgid "Political Views:"
-msgstr "Politieke standpunten:"
+#: ../../mod/delegate.php:131
+msgid "Potential Delegates"
+msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed "
 
-#: ../../mod/profiles.php:654
-msgid "Religious Views:"
-msgstr "Geloof:"
+#: ../../mod/delegate.php:134
+msgid "Add"
+msgstr "Toevoegen"
 
-#: ../../mod/profiles.php:655
-msgid "Public Keywords:"
-msgstr "Publieke Sleutelwoorden:"
+#: ../../mod/delegate.php:135
+msgid "No entries."
+msgstr "Geen gegevens."
 
-#: ../../mod/profiles.php:656
-msgid "Private Keywords:"
-msgstr "Privé Sleutelwoorden:"
+#: ../../mod/viewcontacts.php:39
+msgid "No contacts."
+msgstr "Geen contacten."
 
-#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:62
-msgid "Likes:"
-msgstr "Houdt van:"
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:874
+msgid "View Contacts"
+msgstr "Bekijk contacten"
 
-#: ../../mod/profiles.php:658 ../../include/profile_advanced.php:64
-msgid "Dislikes:"
-msgstr "Houdt niet van:"
+#: ../../mod/notes.php:44 ../../boot.php:2010
+msgid "Personal Notes"
+msgstr "Persoonlijke Nota's"
 
-#: ../../mod/profiles.php:659
-msgid "Example: fishing photography software"
-msgstr "Voorbeeld: vissen fotografie software"
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Aanstoten/porren"
 
-#: ../../mod/profiles.php:660
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)"
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "aanstoten, porren of andere dingen met iemand doen"
 
-#: ../../mod/profiles.php:661
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)"
+#: ../../mod/poke.php:194
+msgid "Recipient"
+msgstr "Ontvanger"
 
-#: ../../mod/profiles.php:662
-msgid "Tell us about yourself..."
-msgstr "Vertel iets over jezelf..."
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Kies wat je met de ontvanger wil doen"
 
-#: ../../mod/profiles.php:663
-msgid "Hobbies/Interests"
-msgstr "Hobby's/Interesses"
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr "Dit bericht privé maken"
 
-#: ../../mod/profiles.php:664
-msgid "Contact information and Social Networks"
-msgstr "Contactinformatie en sociale netwerken"
+#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:525
+msgid "Global Directory"
+msgstr "Globale gids"
 
-#: ../../mod/profiles.php:665
-msgid "Musical interests"
-msgstr "Muzikale interesses"
+#: ../../mod/directory.php:57
+msgid "Find on this site"
+msgstr "Op deze website zoeken"
 
-#: ../../mod/profiles.php:666
-msgid "Books, literature"
-msgstr "Boeken, literatuur"
+#: ../../mod/directory.php:60
+msgid "Site Directory"
+msgstr "Websitegids"
 
-#: ../../mod/profiles.php:667
-msgid "Television"
-msgstr "Televisie"
+#: ../../mod/directory.php:114
+msgid "Gender: "
+msgstr "Geslacht:"
 
-#: ../../mod/profiles.php:668
-msgid "Film/dance/culture/entertainment"
-msgstr "Film/dans/cultuur/ontspanning"
+#: ../../mod/directory.php:136 ../../boot.php:1515
+#: ../../include/profile_advanced.php:17
+msgid "Gender:"
+msgstr "Geslacht:"
 
-#: ../../mod/profiles.php:669
-msgid "Love/romance"
-msgstr "Liefde/romance"
+#: ../../mod/directory.php:138 ../../boot.php:1518
+#: ../../include/profile_advanced.php:37
+msgid "Status:"
+msgstr "Tijdlijn:"
 
-#: ../../mod/profiles.php:670
-msgid "Work/employment"
-msgstr "Werk"
+#: ../../mod/directory.php:140 ../../boot.php:1520
+#: ../../include/profile_advanced.php:48
+msgid "Homepage:"
+msgstr "Jouw tijdlijn:"
 
-#: ../../mod/profiles.php:671
-msgid "School/education"
-msgstr "School/opleiding"
+#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
+msgid "About:"
+msgstr "Over:"
 
-#: ../../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 "Dit is jouw <strong>publiek</strong> profiel.<br />Het <strong>kan</strong> zichtbaar zijn voor iedereen op het internet."
+#: ../../mod/directory.php:187
+msgid "No entries (some entries may be hidden)."
+msgstr "Geen gegevens (sommige gegevens kunnen verborgen zijn)."
 
-#: ../../mod/profiles.php:725
-msgid "Edit/Manage Profiles"
-msgstr "Wijzig/Beheer Profielen"
+#: ../../mod/localtime.php:12 ../../include/event.php:11
+#: ../../include/bb2diaspora.php:133
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ g:i A"
 
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "Groep aangemaakt."
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Tijdsconversie"
 
-#: ../../mod/group.php:35
-msgid "Could not create group."
-msgstr "Kon de groep niet aanmaken."
+#: ../../mod/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones."
 
-#: ../../mod/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
-msgstr "Groep niet gevonden."
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC tijd: %s"
 
-#: ../../mod/group.php:60
-msgid "Group name changed."
-msgstr "Groepsnaam gewijzigd."
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Huidige Tijdzone: %s"
 
-#: ../../mod/group.php:87
-msgid "Save Group"
-msgstr ""
+#: ../../mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Omgerekende lokale tijd: %s"
 
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Maak een groep contacten/vrienden aan."
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Selecteer je tijdzone:"
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr "Groepsnaam:"
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Bericht succesvol geplaatst."
 
-#: ../../mod/group.php:113
-msgid "Group removed."
-msgstr "Groep verwijderd."
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "Afbeelding opgeladen, maar bijsnijden mislukt."
 
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Niet in staat om groep te verwijderen."
+#: ../../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 "Verkleining van de afbeelding [%s] mislukt."
 
-#: ../../mod/group.php:179
-msgid "Group Editor"
-msgstr "Groepsbewerker"
+#: ../../mod/profile_photo.php:118
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen."
 
-#: ../../mod/group.php:192
-msgid "Members"
-msgstr "Leden"
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Ik kan de afbeelding niet verwerken"
 
-#: ../../mod/group.php:224 ../../mod/profperm.php:105
-msgid "Click on a contact to add or remove."
-msgstr "Klik op een contact om het toe te voegen of te verwijderen."
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Upload bestand:"
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Bron (bbcode) tekst:"
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Kies een profiel:"
 
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Bron (Diaspora) tekst om naar BBCode om te zetten:"
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Uploaden"
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr "Bron ingave:"
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "Deze stap overslaan"
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (ruwe HTML):"
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "Kies een foto uit je fotoalbums"
 
-#: ../../mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html:"
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "Afbeelding bijsnijden"
 
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Pas het afsnijden van de afbeelding aan voor het beste resultaat."
 
-#: ../../mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Wijzigingen compleet"
 
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "Uploaden van afbeelding gelukt."
 
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
+msgstr ""
 
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr "Kon geen toegang krijgen tot de database."
 
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Bron ingave (Diaspora formaat):"
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "Kon tabel niet aanmaken."
 
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "De database van je Friendica-website is geïnstalleerd."
 
-#: ../../mod/community.php:23
-msgid "Not available."
-msgstr "Niet beschikbaar"
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql."
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "Contact toegevoegd"
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:521
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Zie het bestand \"INSTALL.txt\"."
 
-#: ../../mod/notify.php:61 ../../mod/notifications.php:332
-msgid "No more system notifications."
-msgstr "Geen systeemnotificaties meer."
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "Systeemcontrole"
 
-#: ../../mod/notify.php:65 ../../mod/notifications.php:336
-msgid "System Notifications"
-msgstr "Systeemnotificaties"
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "Controleer opnieuw"
 
-#: ../../mod/message.php:9 ../../include/nav.php:159
-msgid "New Message"
-msgstr "Nieuw Bericht"
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Verbinding met database"
 
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Ik kan geen contact informatie vinden."
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken."
 
-#: ../../mod/message.php:182 ../../mod/notifications.php:103
-#: ../../include/nav.php:156
-msgid "Messages"
-msgstr "Privéberichten"
+#: ../../mod/install.php:229
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. "
 
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
-msgstr "Wil je echt dit bericht verwijderen?"
+#: ../../mod/install.php:230
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat."
 
-#: ../../mod/message.php:227
-msgid "Message deleted."
-msgstr "Bericht verwijderd."
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Servernaam database"
 
-#: ../../mod/message.php:258
-msgid "Conversation removed."
-msgstr "Gesprek verwijderd."
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Gebruikersnaam database"
 
-#: ../../mod/message.php:371
-msgid "No messages."
-msgstr "Geen berichten."
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Wachtwoord database"
 
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Onbekende afzender - %s"
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Naam database"
 
-#: ../../mod/message.php:381
-#, php-format
-msgid "You and %s"
-msgstr "Jij en %s"
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "E-mailadres van de websitebeheerder"
 
-#: ../../mod/message.php:384
-#, php-format
-msgid "%s and You"
-msgstr "%s en jij"
+#: ../../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 "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken."
 
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
-msgstr "Verwijder gesprek"
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
+msgstr "Selecteer een standaard tijdzone voor uw website"
 
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
-msgstr "D, d M Y - g:i A"
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Website-instellingen"
 
-#: ../../mod/message.php:411
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d bericht"
-msgstr[1] "%d berichten"
+#: ../../mod/install.php:321
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Kan geen command-line-versie van PHP vinden in het PATH van de webserver."
 
-#: ../../mod/message.php:450
-msgid "Message not available."
-msgstr "Bericht niet beschikbaar."
+#: ../../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 "Als je geen command-line versie van PHP geïnstalleerd hebt op je server, kun je geen polling op de achtergrond gebruiken via cron. Zie  <a href='http://friendica.com/node/27'>'Activeren van geplande taken'</a>"
 
-#: ../../mod/message.php:520
-msgid "Delete message"
-msgstr "Verwijder bericht"
+#: ../../mod/install.php:326
+msgid "PHP executable path"
+msgstr "PATH van het PHP commando"
 
-#: ../../mod/message.php:548
+#: ../../mod/install.php:326
 msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Geen beveiligde communicatie beschikbaar. Je kunt <strong>misschien</strong> antwoorden vanaf de profiel-pagina van de afzender."
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten."
 
-#: ../../mod/message.php:552
-msgid "Send Reply"
-msgstr "Verstuur Antwoord"
+#: ../../mod/install.php:331
+msgid "Command line PHP"
+msgstr "PHP-opdrachtregel"
 
-#: ../../mod/like.php:170 ../../include/conversation.php:140
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s vind %3$s van %2$s niet leuk"
+#: ../../mod/install.php:340
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr ""
+
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
+msgstr "Gevonden PHP versie:"
+
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
+msgstr ""
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Bericht succesvol geplaatst."
+#: ../../mod/install.php:354
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd."
 
-#: ../../mod/localtime.php:12 ../../include/event.php:11
-#: ../../include/bb2diaspora.php:393
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ g:i A"
+#: ../../mod/install.php:355
+msgid "This is required for message delivery to work."
+msgstr "Dit is nodig om het verzenden van berichten mogelijk te maken."
 
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Tijdsconversie"
+#: ../../mod/install.php:357
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../mod/localtime.php:26
+#: ../../mod/install.php:378
 msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones."
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr ""
 
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "UTC tijd: %s"
+#: ../../mod/install.php:379
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait."
 
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Huidige Tijdzone: %s"
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
+msgstr ""
 
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Omgerekende lokale tijd: %s"
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
+msgstr "libCurl PHP module"
 
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Selecteer je tijdzone:"
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr "GD graphics PHP module"
 
-#: ../../mod/filer.php:30 ../../include/conversation.php:1001
-#: ../../include/conversation.php:1019
-msgid "Save to Folder:"
-msgstr "Bewaren in map:"
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr "OpenSSL PHP module"
 
-#: ../../mod/filer.php:30
-msgid "- select -"
-msgstr "- Kies -"
+#: ../../mod/install.php:391
+msgid "mysqli PHP module"
+msgstr "mysqli PHP module"
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Ongeldige profiel-identificatie."
+#: ../../mod/install.php:392
+msgid "mb_string PHP module"
+msgstr "mb_string PHP module"
 
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr ""
+#: ../../mod/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite module"
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Zichtbaar voor"
+#: ../../mod/install.php:397
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd."
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Alle contacten (met veilige profieltoegang)"
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd."
 
-#: ../../mod/viewcontacts.php:39
-msgid "No contacts."
-msgstr "Geen contacten."
+#: ../../mod/install.php:409
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd."
 
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:857
-msgid "View Contacts"
-msgstr "Bekijk contacten"
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd."
 
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Mensen Zoeken"
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd."
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "Geen resultaten"
+#: ../../mod/install.php:421
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd."
 
-#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795
-msgid "Upload New Photos"
-msgstr "Nieuwe foto's uploaden"
+#: ../../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 "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen."
 
-#: ../../mod/photos.php:143
-msgid "Contact information unavailable"
-msgstr "Contactinformatie niet beschikbaar"
+#: ../../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 "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel."
 
-#: ../../mod/photos.php:164
-msgid "Album not found."
-msgstr "Album niet gevonden"
+#: ../../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 "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map."
 
-#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200
-msgid "Delete Album"
-msgstr "Verwijder album"
+#: ../../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 "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies."
 
-#: ../../mod/photos.php:197
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Wil je echt dit fotoalbum en alle foto's erin verwijderen?"
+#: ../../mod/install.php:444
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php is schrijfbaar"
 
-#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502
-msgid "Delete Photo"
-msgstr "Verwijder foto"
+#: ../../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 "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen."
 
-#: ../../mod/photos.php:285
-msgid "Do you really want to delete this photo?"
-msgstr "Wil je echt deze foto verwijderen?"
+#: ../../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 "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie."
 
-#: ../../mod/photos.php:656
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s is gelabeld in %2$s door %3$s"
+#: ../../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 "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map."
 
-#: ../../mod/photos.php:656
-msgid "a photo"
-msgstr "een foto"
+#: ../../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 "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten."
 
-#: ../../mod/photos.php:761
-msgid "Image exceeds size limit of "
-msgstr "Afbeelding is groter dan de maximale afmeting van"
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 is schrijfbaar"
 
-#: ../../mod/photos.php:769
-msgid "Image file is empty."
-msgstr "Afbeeldingsbestand is leeg."
+#: ../../mod/install.php:472
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr ""
 
-#: ../../mod/photos.php:801 ../../mod/wall_upload.php:112
-#: ../../mod/profile_photo.php:153
-msgid "Unable to process image."
-msgstr "Niet in staat om de afbeelding te verwerken"
+#: ../../mod/install.php:474
+msgid "Url rewrite is working"
+msgstr ""
 
-#: ../../mod/photos.php:828 ../../mod/wall_upload.php:138
-#: ../../mod/profile_photo.php:301
-msgid "Image upload failed."
-msgstr "Uploaden van afbeelding mislukt."
+#: ../../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 "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver."
 
-#: ../../mod/photos.php:924
-msgid "No photos selected"
-msgstr "Geen foto's geselecteerd"
+#: ../../mod/install.php:508
+msgid "Errors encountered creating database tables."
+msgstr "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld."
 
-#: ../../mod/photos.php:1025 ../../mod/videos.php:226
-msgid "Access to this item is restricted."
-msgstr "Toegang tot dit item is beperkt."
+#: ../../mod/install.php:519
+msgid "<h1>What next</h1>"
+msgstr "<h1>Wat nu</h1>"
 
-#: ../../mod/photos.php:1088
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt."
+#: ../../mod/install.php:520
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller."
 
-#: ../../mod/photos.php:1123
-msgid "Upload Photos"
-msgstr "Upload foto's"
+#: ../../mod/group.php:29
+msgid "Group created."
+msgstr "Groep aangemaakt."
 
-#: ../../mod/photos.php:1127 ../../mod/photos.php:1195
-msgid "New album name: "
-msgstr "Nieuwe albumnaam: "
+#: ../../mod/group.php:35
+msgid "Could not create group."
+msgstr "Kon de groep niet aanmaken."
 
-#: ../../mod/photos.php:1128
-msgid "or existing album name: "
-msgstr "of bestaande albumnaam: "
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
+msgstr "Groep niet gevonden."
 
-#: ../../mod/photos.php:1129
-msgid "Do not show a status post for this upload"
-msgstr "Toon geen bericht op je tijdlijn van deze upload"
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "Groepsnaam gewijzigd."
 
-#: ../../mod/photos.php:1131 ../../mod/photos.php:1497
-msgid "Permissions"
-msgstr "Rechten"
+#: ../../mod/group.php:87
+msgid "Save Group"
+msgstr ""
+
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Maak een groep contacten/vrienden aan."
+
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "Groepsnaam:"
 
-#: ../../mod/photos.php:1142
-msgid "Private Photo"
-msgstr "Privé foto"
+#: ../../mod/group.php:113
+msgid "Group removed."
+msgstr "Groep verwijderd."
 
-#: ../../mod/photos.php:1143
-msgid "Public Photo"
-msgstr "Publieke foto"
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Niet in staat om groep te verwijderen."
 
-#: ../../mod/photos.php:1210
-msgid "Edit Album"
-msgstr "Album wijzigen"
+#: ../../mod/group.php:179
+msgid "Group Editor"
+msgstr "Groepsbewerker"
 
-#: ../../mod/photos.php:1216
-msgid "Show Newest First"
-msgstr "Toon niewste eerst"
+#: ../../mod/group.php:192
+msgid "Members"
+msgstr "Leden"
 
-#: ../../mod/photos.php:1218
-msgid "Show Oldest First"
-msgstr "Toon oudste eerst"
+#: ../../mod/content.php:119 ../../mod/network.php:514
+msgid "No such group"
+msgstr "Zo'n groep bestaat niet"
 
-#: ../../mod/photos.php:1251 ../../mod/photos.php:1778
-msgid "View Photo"
-msgstr "Bekijk foto"
+#: ../../mod/content.php:130 ../../mod/network.php:531
+msgid "Group is empty"
+msgstr "De groep is leeg"
 
-#: ../../mod/photos.php:1286
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt."
+#: ../../mod/content.php:134 ../../mod/network.php:538
+msgid "Group: "
+msgstr "Groep:"
 
-#: ../../mod/photos.php:1288
-msgid "Photo not available"
-msgstr "Foto is niet beschikbaar"
+#: ../../mod/content.php:496 ../../include/conversation.php:688
+msgid "View in context"
+msgstr "In context bekijken"
 
-#: ../../mod/photos.php:1344
-msgid "View photo"
-msgstr "Bekijk foto"
+#: ../../mod/regmod.php:63
+msgid "Account approved."
+msgstr "Account goedgekeurd."
 
-#: ../../mod/photos.php:1344
-msgid "Edit photo"
-msgstr "Bewerk foto"
+#: ../../mod/regmod.php:100
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registratie ingetrokken voor %s"
 
-#: ../../mod/photos.php:1345
-msgid "Use as profile photo"
-msgstr "Gebruik als profielfoto"
+#: ../../mod/regmod.php:112
+msgid "Please login."
+msgstr "Inloggen."
 
-#: ../../mod/photos.php:1370
-msgid "View Full Size"
-msgstr "Bekijk in volledig formaat"
+#: ../../mod/match.php:12
+msgid "Profile Match"
+msgstr "Profielmatch"
 
-#: ../../mod/photos.php:1444
-msgid "Tags: "
-msgstr "Labels: "
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel."
 
-#: ../../mod/photos.php:1447
-msgid "[Remove any tag]"
-msgstr "[Alle labels verwijderen]"
+#: ../../mod/match.php:57
+msgid "is interested in:"
+msgstr "Is geïnteresseerd in:"
 
-#: ../../mod/photos.php:1487
-msgid "Rotate CW (right)"
-msgstr "Roteren met de klok mee (rechts)"
+#: ../../mod/item.php:110
+msgid "Unable to locate original post."
+msgstr "Ik kan de originele post niet meer vinden."
 
-#: ../../mod/photos.php:1488
-msgid "Rotate CCW (left)"
-msgstr "Roteren tegen de klok in (links)"
+#: ../../mod/item.php:319
+msgid "Empty post discarded."
+msgstr "Lege post weggegooid."
 
-#: ../../mod/photos.php:1490
-msgid "New album name"
-msgstr "Nieuwe albumnaam"
+#: ../../mod/item.php:891
+msgid "System error. Post not saved."
+msgstr "Systeemfout. Post niet bewaard."
 
-#: ../../mod/photos.php:1493
-msgid "Caption"
-msgstr "Onderschrift"
+#: ../../mod/item.php:917
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk."
 
-#: ../../mod/photos.php:1495
-msgid "Add a Tag"
-msgstr "Een label toevoegen"
+#: ../../mod/item.php:919
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Je kunt ze online bezoeken op %s"
 
-#: ../../mod/photos.php:1499
+#: ../../mod/item.php:920
 msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping "
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen."
 
-#: ../../mod/photos.php:1508
-msgid "Private photo"
-msgstr "Privé foto"
+#: ../../mod/item.php:924
+#, php-format
+msgid "%s posted an update."
+msgstr "%s heeft een wijziging geplaatst."
 
-#: ../../mod/photos.php:1509
-msgid "Public photo"
-msgstr "Publieke foto"
+#: ../../mod/mood.php:62 ../../include/conversation.php:227
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s is op dit moment %2$s"
 
-#: ../../mod/photos.php:1531 ../../include/conversation.php:1080
-msgid "Share"
-msgstr "Delen"
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "Stemming"
 
-#: ../../mod/photos.php:1784 ../../mod/videos.php:308
-msgid "View Album"
-msgstr "Album bekijken"
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "Stel je huidige stemming in, en vertel het je vrienden"
 
-#: ../../mod/photos.php:1793
-msgid "Recent Photos"
-msgstr "Recente foto's"
+#: ../../mod/network.php:136
+msgid "Search Results For:"
+msgstr "Zoekresultaten voor:"
 
-#: ../../mod/wall_attach.php:69
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Bestand is groter dan de toegelaten %d"
+#: ../../mod/network.php:189 ../../include/group.php:275
+msgid "add"
+msgstr "toevoegen"
 
-#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
-msgid "File upload failed."
-msgstr "Uploaden van bestand mislukt."
+#: ../../mod/network.php:350
+msgid "Commented Order"
+msgstr "Nieuwe reacties bovenaan"
 
-#: ../../mod/videos.php:125
-msgid "No videos selected"
-msgstr "Geen video's geselecteerd"
+#: ../../mod/network.php:353
+msgid "Sort by Comment Date"
+msgstr "Berichten met nieuwe reacties bovenaan"
 
-#: ../../mod/videos.php:301 ../../include/text.php:1383
-msgid "View Video"
-msgstr "Bekijk Video"
+#: ../../mod/network.php:356
+msgid "Posted Order"
+msgstr "Nieuwe berichten bovenaan"
 
-#: ../../mod/videos.php:317
-msgid "Recent Videos"
-msgstr "Recente video's"
+#: ../../mod/network.php:359
+msgid "Sort by Post Date"
+msgstr "Nieuwe berichten bovenaan"
 
-#: ../../mod/videos.php:319
-msgid "Upload New Videos"
-msgstr "Nieuwe video's uploaden"
+#: ../../mod/network.php:368
+msgid "Posts that mention or involve you"
+msgstr "Alleen berichten die jou vermelden of op jou betrekking hebben"
 
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Aanstoten/porren"
+#: ../../mod/network.php:374
+msgid "New"
+msgstr "Nieuw"
 
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "aanstoten, porren of andere dingen met iemand doen"
+#: ../../mod/network.php:377
+msgid "Activity Stream - by date"
+msgstr "Activiteitenstroom - volgens datum"
 
-#: ../../mod/poke.php:194
-msgid "Recipient"
-msgstr "Ontvanger"
+#: ../../mod/network.php:383
+msgid "Shared Links"
+msgstr "Gedeelde links"
 
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Kies wat je met de ontvanger wil doen"
+#: ../../mod/network.php:386
+msgid "Interesting Links"
+msgstr "Interessante links"
 
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr "Dit bericht privé maken"
+#: ../../mod/network.php:392
+msgid "Starred"
+msgstr "Met ster"
 
-#: ../../mod/subthread.php:103
+#: ../../mod/network.php:395
+msgid "Favourite Posts"
+msgstr "Favoriete berichten"
+
+#: ../../mod/network.php:457
 #, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s volgt %3$s van %2$s"
+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] "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk."
+msgstr[1] "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk."
 
-#: ../../mod/uexport.php:72
-msgid "Export account"
-msgstr "Account exporteren"
+#: ../../mod/network.php:460
+msgid "Private messages to this group are at risk of public disclosure."
+msgstr "Privéberichten naar deze groep kunnen openbaar gemaakt worden."
 
-#: ../../mod/uexport.php:72
-msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
-msgstr "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server."
+#: ../../mod/network.php:548
+msgid "Contact: "
+msgstr "Contact: "
 
-#: ../../mod/uexport.php:73
-msgid "Export all"
-msgstr "Alles exporteren"
+#: ../../mod/network.php:550
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Privéberichten naar deze persoon kunnen openbaar gemaakt worden."
 
-#: ../../mod/uexport.php:73
-msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
-msgstr "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)"
+#: ../../mod/network.php:555
+msgid "Invalid contact."
+msgstr "Ongeldig contact."
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr "Gedeelde Vrienden"
+#: ../../mod/crepair.php:104
+msgid "Contact settings applied."
+msgstr "Contactinstellingen toegepast."
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
-msgstr "Geen gedeelde contacten."
+#: ../../mod/crepair.php:106
+msgid "Contact update failed."
+msgstr "Aanpassen van contact mislukt."
 
-#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "Afbeelding is groter dan de toegestane %d"
+#: ../../mod/crepair.php:137
+msgid "Repair Contact Settings"
+msgstr "Contactinstellingen herstellen"
 
-#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
-#: ../../mod/wall_upload.php:151 ../../mod/item.php:453
-#: ../../include/message.php:144
-msgid "Wall Photos"
+#: ../../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/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Afbeelding opgeladen, maar bijsnijden mislukt."
+#: ../../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 "Gebruik <strong>nu</strong> de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen."
 
-#: ../../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 "Verkleining van de afbeelding [%s] mislukt."
+#: ../../mod/crepair.php:146
+msgid "Return to contact editor"
+msgstr "Ga terug naar contactbewerker"
 
-#: ../../mod/profile_photo.php:118
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen."
+#: ../../mod/crepair.php:151
+msgid "Account Nickname"
+msgstr "Bijnaam account"
 
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Ik kan de afbeelding niet verwerken"
+#: ../../mod/crepair.php:152
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Labelnaam - krijgt voorrang op naam/bijnaam"
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Upload bestand:"
+#: ../../mod/crepair.php:153
+msgid "Account URL"
+msgstr "URL account"
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "Kies een profiel:"
+#: ../../mod/crepair.php:154
+msgid "Friend Request URL"
+msgstr "URL vriendschapsverzoek"
 
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
-msgstr "Uploaden"
+#: ../../mod/crepair.php:155
+msgid "Friend Confirm URL"
+msgstr ""
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "Deze stap overslaan"
+#: ../../mod/crepair.php:156
+msgid "Notification Endpoint URL"
+msgstr ""
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "Kies een foto uit je fotoalbums"
+#: ../../mod/crepair.php:157
+msgid "Poll/Feed URL"
+msgstr "URL poll/feed"
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "Afbeelding bijsnijden"
+#: ../../mod/crepair.php:158
+msgid "New photo from this URL"
+msgstr "Nieuwe foto van deze URL"
 
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Pas het afsnijden van de afbeelding aan voor het beste resultaat."
+#: ../../mod/crepair.php:159
+msgid "Remote Self"
+msgstr ""
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Wijzigingen compleet"
+#: ../../mod/crepair.php:161
+msgid "Mirror postings from this contact"
+msgstr ""
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "Uploaden van afbeelding gelukt."
+#: ../../mod/crepair.php:161
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr ""
 
-#: ../../mod/apps.php:11
-msgid "Applications"
-msgstr "Toepassingen"
+#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
+#: ../../include/nav.php:145
+msgid "Your posts and conversations"
+msgstr "Jouw berichten en conversaties"
 
-#: ../../mod/apps.php:14
-msgid "No installed applications."
-msgstr "Geen toepassingen geïnstalleerd"
+#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
+msgid "Your profile page"
+msgstr "Jouw profiel pagina"
 
-#: ../../mod/navigation.php:20 ../../include/nav.php:34
-msgid "Nothing new here"
-msgstr "Niets nieuw hier"
+#: ../../view/theme/diabook/theme.php:125
+msgid "Your contacts"
+msgstr "Jouw contacten"
 
-#: ../../mod/navigation.php:24 ../../include/nav.php:38
-msgid "Clear notifications"
-msgstr "Notificaties verwijderen"
+#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
+msgid "Your photos"
+msgstr "Jouw foto's"
 
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr "Profielmatch"
+#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79
+msgid "Your events"
+msgstr "Jouw gebeurtenissen"
 
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel."
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
+msgid "Personal notes"
+msgstr "Persoonlijke nota's"
 
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr "Is geïnteresseerd in:"
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
+msgid "Your personal photos"
+msgstr "Jouw persoonlijke foto's"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Label verwijderd"
+#: ../../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 "Gemeenschapspagina's"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Verwijder label van item"
+#: ../../view/theme/diabook/theme.php:391
+#: ../../view/theme/diabook/theme.php:626
+#: ../../view/theme/diabook/config.php:160
+msgid "Community Profiles"
+msgstr "Gemeenschapsprofielen"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Selecteer een label om te verwijderen: "
+#: ../../view/theme/diabook/theme.php:412
+#: ../../view/theme/diabook/theme.php:630
+#: ../../view/theme/diabook/config.php:164
+msgid "Last users"
+msgstr "Laatste gebruikers"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
-msgid "Remove"
-msgstr "Verwijderen"
+#: ../../view/theme/diabook/theme.php:441
+#: ../../view/theme/diabook/theme.php:632
+#: ../../view/theme/diabook/config.php:166
+msgid "Last likes"
+msgstr "Recent leuk gevonden"
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
-msgstr "Titel en begintijd van de gebeurtenis zijn vereist."
+#: ../../view/theme/diabook/theme.php:463 ../../include/text.php:1953
+#: ../../include/conversation.php:118 ../../include/conversation.php:246
+msgid "event"
+msgstr "gebeurtenis"
 
-#: ../../mod/events.php:291
-msgid "l, F j"
-msgstr "l j F"
+#: ../../view/theme/diabook/theme.php:486
+#: ../../view/theme/diabook/theme.php:631
+#: ../../view/theme/diabook/config.php:165
+msgid "Last photos"
+msgstr "Laatste foto's"
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "Gebeurtenis bewerken"
+#: ../../view/theme/diabook/theme.php:523
+#: ../../view/theme/diabook/theme.php:629
+#: ../../view/theme/diabook/config.php:163
+msgid "Find Friends"
+msgstr "Zoek vrienden"
 
-#: ../../mod/events.php:335 ../../include/text.php:1615
-msgid "link to source"
-msgstr "Verwijzing naar bron"
+#: ../../view/theme/diabook/theme.php:524
+msgid "Local Directory"
+msgstr "Lokale gids"
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "Maak een nieuwe gebeurtenis"
+#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35
+msgid "Similar Interests"
+msgstr "Dezelfde interesses"
 
-#: ../../mod/events.php:372
-msgid "Previous"
-msgstr "Vorige"
+#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37
+msgid "Invite Friends"
+msgstr "Vrienden uitnodigen"
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "uur:minuut"
+#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/theme.php:625
+#: ../../view/theme/diabook/config.php:159
+msgid "Earth Layers"
+msgstr "Earth Layers"
 
-#: ../../mod/events.php:456
-msgid "Event details"
-msgstr "Gebeurtenis details"
+#: ../../view/theme/diabook/theme.php:584
+msgid "Set zoomfactor for Earth Layers"
+msgstr ""
 
-#: ../../mod/events.php:457
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr "Formaat is %s %s. Begindatum en titel zijn vereist."
+#: ../../view/theme/diabook/theme.php:585
+#: ../../view/theme/diabook/config.php:156
+msgid "Set longitude (X) for Earth Layers"
+msgstr ""
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
-msgstr "Gebeurtenis begint:"
+#: ../../view/theme/diabook/theme.php:586
+#: ../../view/theme/diabook/config.php:157
+msgid "Set latitude (Y) for Earth Layers"
+msgstr ""
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "Vereist"
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:627
+#: ../../view/theme/diabook/config.php:161
+msgid "Help or @NewHere ?"
+msgstr ""
 
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
-msgstr "Einddatum/tijd is niet gekend of niet relevant"
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:628
+#: ../../view/theme/diabook/config.php:162
+msgid "Connect Services"
+msgstr "Diensten verbinden"
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "Gebeurtenis eindigt:"
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328
+msgid "don't show"
+msgstr "Niet tonen"
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "Pas aan aan de tijdzone van de gebruiker"
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327
+msgid "show"
+msgstr "tonen"
 
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "Beschrijving:"
+#: ../../view/theme/diabook/theme.php:622
+msgid "Show/hide boxes at right-hand column:"
+msgstr ""
 
-#: ../../mod/events.php:473
-msgid "Title:"
-msgstr "Titel:"
+#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:49
+#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
+#: ../../view/theme/cleanzero/config.php:82
+msgid "Theme settings"
+msgstr "Thema-instellingen"
 
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "Deel deze gebeurtenis"
+#: ../../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 "Stel lettergrootte voor berichten en reacties in"
 
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden."
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/dispy/config.php:74
+msgid "Set line-height for posts and comments"
+msgstr "Stel lijnhoogte voor berichten en reacties in"
 
-#: ../../mod/delegate.php:121 ../../include/nav.php:165
-msgid "Delegate Page Management"
-msgstr "Paginabeheer uitbesteden"
+#: ../../view/theme/diabook/config.php:153
+msgid "Set resolution for middle column"
+msgstr "Stel resolutie in voor de middelste kolom. "
 
-#: ../../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 "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd."
+#: ../../view/theme/diabook/config.php:154
+msgid "Set color scheme"
+msgstr "Stel kleurenschema in"
 
-#: ../../mod/delegate.php:124
-msgid "Existing Page Managers"
-msgstr "Bestaande paginabeheerders"
+#: ../../view/theme/diabook/config.php:155
+msgid "Set zoomfactor for Earth Layer"
+msgstr ""
 
-#: ../../mod/delegate.php:126
-msgid "Existing Page Delegates"
-msgstr "Bestaande personen waaraan het paginabeheer is uitbesteed"
+#: ../../view/theme/vier/config.php:50
+msgid "Set style"
+msgstr ""
 
-#: ../../mod/delegate.php:128
-msgid "Potential Delegates"
-msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed "
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Stel kleurschema in"
 
-#: ../../mod/delegate.php:131
-msgid "Add"
-msgstr "Toevoegen"
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Uitlijning"
 
-#: ../../mod/delegate.php:132
-msgid "No entries."
-msgstr "Geen gegevens."
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Links"
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "Contacten die geen leden zijn van een groep"
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Gecentreerd"
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "Bestanden"
+#: ../../view/theme/quattro/config.php:68
+#: ../../view/theme/cleanzero/config.php:86
+msgid "Color scheme"
+msgstr "Kleurschema"
 
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
-msgstr "Systeem onbeschikbaar wegens onderhoud"
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "Lettergrootte berichten"
 
-#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
-msgid "Remove My Account"
-msgstr "Verwijder mijn account"
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "Lettergrootte tekstgebieden"
 
-#: ../../mod/removeme.php:46
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is."
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
+msgstr ""
 
-#: ../../mod/removeme.php:47
-msgid "Please enter your password for verification:"
-msgstr "Voer je wachtwoord in voor verificatie:"
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Stel breedte van het thema in"
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Vriendschapsvoorstel verzonden."
+#: ../../boot.php:692
+msgid "Delete this item?"
+msgstr "Dit item verwijderen?"
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Stel vrienden voor"
+#: ../../boot.php:695
+msgid "show fewer"
+msgstr "Minder tonen"
 
-#: ../../mod/fsuggest.php:99
+#: ../../boot.php:1023
 #, php-format
-msgid "Suggest a friend for %s"
-msgstr "Stel een vriend voor aan %s"
+msgid "Update %s failed. See error logs."
+msgstr "Wijziging %s mislukt. Lees de error logbestanden."
 
-#: ../../mod/item.php:108
-msgid "Unable to locate original post."
-msgstr "Ik kan de originele post niet meer vinden."
+#: ../../boot.php:1025
+#, php-format
+msgid "Update Error at %s"
+msgstr "Wijzigingsfout op %s"
 
-#: ../../mod/item.php:317
-msgid "Empty post discarded."
-msgstr "Lege post weggegooid."
+#: ../../boot.php:1135
+msgid "Create a New Account"
+msgstr "Nieuw account aanmaken"
 
-#: ../../mod/item.php:884
-msgid "System error. Post not saved."
-msgstr "Systeemfout. Post niet bewaard."
+#: ../../boot.php:1160 ../../include/nav.php:73
+msgid "Logout"
+msgstr "Uitloggen"
 
-#: ../../mod/item.php:909
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk."
+#: ../../boot.php:1161 ../../include/nav.php:91
+msgid "Login"
+msgstr "Login"
 
-#: ../../mod/item.php:911
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Je kunt ze online bezoeken op %s"
+#: ../../boot.php:1163
+msgid "Nickname or Email address: "
+msgstr "Bijnaam of e-mailadres:"
 
-#: ../../mod/item.php:912
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen."
+#: ../../boot.php:1164
+msgid "Password: "
+msgstr "Wachtwoord:"
 
-#: ../../mod/item.php:916
-#, php-format
-msgid "%s posted an update."
-msgstr "%s heeft een wijziging geplaatst."
+#: ../../boot.php:1165
+msgid "Remember me"
+msgstr "Onthou me"
 
-#: ../../mod/ping.php:238
-msgid "{0} wants to be your friend"
-msgstr "{0} wilt je vriend worden"
+#: ../../boot.php:1168
+msgid "Or login using OpenID: "
+msgstr "Of log in met OpenID:"
 
-#: ../../mod/ping.php:243
-msgid "{0} sent you a message"
-msgstr "{0} stuurde jou een berichtje"
+#: ../../boot.php:1174
+msgid "Forgot your password?"
+msgstr "Wachtwoord vergeten?"
 
-#: ../../mod/ping.php:248
-msgid "{0} requested registration"
-msgstr "{0} vroeg om zich te registreren"
+#: ../../boot.php:1177
+msgid "Website Terms of Service"
+msgstr "Gebruikersvoorwaarden website"
 
-#: ../../mod/ping.php:254
-#, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} gaf een reactie op het bericht van %s"
+#: ../../boot.php:1178
+msgid "terms of service"
+msgstr "servicevoorwaarden"
 
-#: ../../mod/ping.php:259
-#, php-format
-msgid "{0} liked %s's post"
-msgstr "{0} vond het bericht van %s leuk"
+#: ../../boot.php:1180
+msgid "Website Privacy Policy"
+msgstr "Privacybeleid website"
 
-#: ../../mod/ping.php:264
-#, php-format
-msgid "{0} disliked %s's post"
-msgstr "{0} vond het bericht van %s niet leuk"
+#: ../../boot.php:1181
+msgid "privacy policy"
+msgstr "privacybeleid"
 
-#: ../../mod/ping.php:269
-#, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} is nu bevriend met %s"
+#: ../../boot.php:1314
+msgid "Requested account is not available."
+msgstr "Gevraagde account is niet beschikbaar."
 
-#: ../../mod/ping.php:274
-msgid "{0} posted"
-msgstr "{0} plaatste"
+#: ../../boot.php:1393 ../../boot.php:1497
+msgid "Edit profile"
+msgstr "Bewerk profiel"
 
-#: ../../mod/ping.php:279
-#, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0} labelde %s's bericht met #%s"
+#: ../../boot.php:1459
+msgid "Message"
+msgstr "Bericht"
 
-#: ../../mod/ping.php:285
-msgid "{0} mentioned you in a post"
-msgstr "{0} vermeldde je in een bericht"
+#: ../../boot.php:1467 ../../include/nav.php:171
+msgid "Profiles"
+msgstr "Profielen"
 
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID protocol fout. Geen ID Gevonden."
+#: ../../boot.php:1467
+msgid "Manage/edit profiles"
+msgstr "Beheer/wijzig profielen"
 
-#: ../../mod/openid.php:53
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website."
+#: ../../boot.php:1596 ../../boot.php:1682
+msgid "g A l F d"
+msgstr "G l j F"
 
-#: ../../mod/openid.php:93 ../../include/auth.php:112
-#: ../../include/auth.php:175
-msgid "Login failed."
-msgstr "Login mislukt."
+#: ../../boot.php:1597 ../../boot.php:1683
+msgid "F d"
+msgstr "d F"
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Ongeldige <em>request identifier</em>."
+#: ../../boot.php:1642 ../../boot.php:1723
+msgid "[today]"
+msgstr "[vandaag]"
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
-msgstr "Verwerpen"
+#: ../../boot.php:1654
+msgid "Birthday Reminders"
+msgstr "Verjaardagsherinneringen"
 
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "Systeem"
+#: ../../boot.php:1655
+msgid "Birthdays this week:"
+msgstr "Verjaardagen deze week:"
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:140
-msgid "Network"
-msgstr "Netwerk"
+#: ../../boot.php:1716
+msgid "[No description]"
+msgstr "[Geen beschrijving]"
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:149
-msgid "Introductions"
-msgstr "Verzoeken"
+#: ../../boot.php:1734
+msgid "Event Reminders"
+msgstr "Gebeurtenisherinneringen"
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "Toon genegeerde verzoeken"
+#: ../../boot.php:1735
+msgid "Events this week:"
+msgstr "Gebeurtenissen deze week:"
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Verberg genegeerde verzoeken"
+#: ../../boot.php:1972 ../../include/nav.php:76
+msgid "Status"
+msgstr "Tijdlijn"
 
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
-msgstr "Notificatiesoort:"
+#: ../../boot.php:1975
+msgid "Status Messages and Posts"
+msgstr "Berichten op jouw tijdlijn"
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "Vriendschapsvoorstel"
+#: ../../boot.php:1982
+msgid "Profile Details"
+msgstr "Profieldetails"
 
-#: ../../mod/notifications.php:152
-#, php-format
-msgid "suggested by %s"
-msgstr "Voorgesteld door %s"
+#: ../../boot.php:1993 ../../boot.php:1996
+msgid "Videos"
+msgstr "Video's"
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
-msgstr "Bericht over een nieuwe vriend"
+#: ../../boot.php:2006
+msgid "Events and Calendar"
+msgstr "Gebeurtenissen en kalender"
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
-msgstr "Indien toepasbaar"
+#: ../../boot.php:2013
+msgid "Only You Can See This"
+msgstr "Alleen jij kunt dit zien"
 
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
-msgstr "Denkt dat u hem of haar kent:"
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Algemene functies"
 
-#: ../../mod/notifications.php:181
-msgid "yes"
-msgstr "Ja"
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr "Meerdere profielen"
 
-#: ../../mod/notifications.php:181
-msgid "no"
-msgstr "Nee"
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr "Mogelijkheid om meerdere profielen aan te maken"
 
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
-msgstr "Goedkeuren als:"
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr "Functies voor het opstellen van berichten"
 
-#: ../../mod/notifications.php:189
-msgid "Friend"
-msgstr "Vriend"
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr "RTF-tekstverwerker"
 
-#: ../../mod/notifications.php:190
-msgid "Sharer"
-msgstr "Deler"
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr "Gebruik een tekstverwerker met eenvoudige opmaakfuncties"
 
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
-msgstr "Fan/Bewonderaar"
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr "Voorvertoning bericht"
 
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
-msgstr "Vriendschapsverzoek"
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr ""
 
-#: ../../mod/notifications.php:196
-msgid "New Follower"
-msgstr "Nieuwe Volger"
+#: ../../include/features.php:33
+msgid "Auto-mention Forums"
+msgstr ""
 
-#: ../../mod/notifications.php:217
-msgid "No introductions."
-msgstr "Geen vriendschaps- of connectieverzoeken."
+#: ../../include/features.php:33
+msgid ""
+"Add/remove mention when a fourm page is selected/deselected in ACL window."
+msgstr ""
 
-#: ../../mod/notifications.php:220 ../../include/nav.php:150
-msgid "Notifications"
-msgstr "Notificaties"
+#: ../../include/features.php:38
+msgid "Network Sidebar Widgets"
+msgstr "Zijbalkwidgets op netwerkpagina"
 
-#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
-#: ../../mod/notifications.php:469
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s vond het bericht van %s leuk"
+#: ../../include/features.php:39
+msgid "Search by Date"
+msgstr "Zoeken op datum"
 
-#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
-#: ../../mod/notifications.php:478
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s vond het bericht van %s niet leuk"
+#: ../../include/features.php:39
+msgid "Ability to select posts by date ranges"
+msgstr "Mogelijkheid om berichten te selecteren volgens datumbereik"
 
-#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
-#: ../../mod/notifications.php:492
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s is nu bevriend met %s"
+#: ../../include/features.php:40
+msgid "Group Filter"
+msgstr "Groepsfilter"
 
-#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
-#, php-format
-msgid "%s created a new post"
-msgstr "%s schreef een nieuw bericht"
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen"
 
-#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
-#: ../../mod/notifications.php:501
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s gaf een reactie op het bericht van %s"
+#: ../../include/features.php:41
+msgid "Network Filter"
+msgstr "Netwerkfilter"
 
-#: ../../mod/notifications.php:302
-msgid "No more network notifications."
-msgstr "Geen netwerknotificaties meer"
+#: ../../include/features.php:41
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken"
 
-#: ../../mod/notifications.php:306
-msgid "Network Notifications"
-msgstr "Netwerknotificaties"
+#: ../../include/features.php:42
+msgid "Save search terms for re-use"
+msgstr "Sla zoekopdrachten op voor hergebruik"
 
-#: ../../mod/notifications.php:427
-msgid "No more personal notifications."
-msgstr "Geen persoonlijke notificaties meer"
+#: ../../include/features.php:47
+msgid "Network Tabs"
+msgstr "Netwerktabs"
 
-#: ../../mod/notifications.php:431
-msgid "Personal Notifications"
-msgstr "Persoonlijke notificaties"
+#: ../../include/features.php:48
+msgid "Network Personal Tab"
+msgstr "Persoonlijke netwerktab"
 
-#: ../../mod/notifications.php:508
-msgid "No more home notifications."
-msgstr "Geen tijdlijn-notificaties meer"
+#: ../../include/features.php:48
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"
 
-#: ../../mod/notifications.php:512
-msgid "Home Notifications"
-msgstr "Tijdlijn-notificaties"
+#: ../../include/features.php:49
+msgid "Network New Tab"
+msgstr "Nieuwe netwerktab"
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "Totale uitnodigingslimiet overschreden."
+#: ../../include/features.php:49
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)"
 
-#: ../../mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s: Geen geldig e-mailadres."
+#: ../../include/features.php:50
+msgid "Network Shared Links Tab"
+msgstr ""
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Kom bij ons op Friendica"
+#: ../../include/features.php:50
+msgid "Enable tab to display only Network posts with links in them"
+msgstr ""
 
-#: ../../mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website."
+#: ../../include/features.php:55
+msgid "Post/Comment Tools"
+msgstr "Bericht-/reactiehulpmiddelen"
 
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : Aflevering van bericht mislukt."
+#: ../../include/features.php:56
+msgid "Multiple Deletion"
+msgstr "Meervoudige verwijdering"
 
-#: ../../mod/invite.php:93
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d bericht verzonden."
-msgstr[1] "%d berichten verzonden."
+#: ../../include/features.php:56
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Selecteer en verwijder meerdere berichten/reacties in een keer"
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Je kunt geen uitnodigingen meer sturen"
+#: ../../include/features.php:57
+msgid "Edit Sent Posts"
+msgstr "Bewerk verzonden berichten"
 
-#: ../../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 "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken."
+#: ../../include/features.php:57
+msgid "Edit and correct posts and comments after sending"
+msgstr "Bewerk en corrigeer berichten en reacties na verzending"
 
-#: ../../mod/invite.php:122
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website."
+#: ../../include/features.php:58
+msgid "Tagging"
+msgstr "Labelen"
 
-#: ../../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 "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten."
+#: ../../include/features.php:58
+msgid "Ability to tag existing posts"
+msgstr "Mogelijkheid om bestaande berichten te labelen"
 
-#: ../../mod/invite.php:126
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen."
+#: ../../include/features.php:59
+msgid "Post Categories"
+msgstr "Categorieën berichten"
 
-#: ../../mod/invite.php:132
-msgid "Send invitations"
-msgstr "Verstuur uitnodigingen"
+#: ../../include/features.php:59
+msgid "Add categories to your posts"
+msgstr "Voeg categorieën toe aan je berichten"
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "Vul e-mailadressen in, één per lijn:"
+#: ../../include/features.php:60 ../../include/contact_widgets.php:103
+msgid "Saved Folders"
+msgstr "Bewaarde Mappen"
 
-#: ../../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 "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen."
+#: ../../include/features.php:60
+msgid "Ability to file posts under folders"
+msgstr "Mogelijkheid om berichten in mappen te bewaren"
 
-#: ../../mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Je zult deze uitnodigingscode moeten invullen: $invite_code"
+#: ../../include/features.php:61
+msgid "Dislike Posts"
+msgstr "Vind berichten niet leuk"
 
-#: ../../mod/invite.php:137
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:"
+#: ../../include/features.php:61
+msgid "Ability to dislike posts/comments"
+msgstr "Mogelijkheid om berichten of reacties niet leuk te vinden"
 
-#: ../../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 "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken"
+#: ../../include/features.php:62
+msgid "Star Posts"
+msgstr "Geef berichten een ster"
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "Beheer Identiteiten en/of Pagina's"
+#: ../../include/features.php:62
+msgid "Ability to mark special posts with a star indicator"
+msgstr ""
 
-#: ../../mod/manage.php:107
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "Uitgelogd."
+
+#: ../../include/auth.php:128 ../../include/user.php:66
 msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "Wissel tussen verschillende identiteiten of groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen."
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr ""
 
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "Selecteer een identiteit om te beheren:"
+#: ../../include/auth.php:128 ../../include/user.php:66
+msgid "The error message was:"
+msgstr "De foutboodschap was:"
 
-#: ../../mod/home.php:34
-#, php-format
-msgid "Welcome to %s"
-msgstr "Welkom op %s"
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:139
+msgid "Starts:"
+msgstr "Begint:"
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "Vrienden van %s"
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:147
+msgid "Finishes:"
+msgstr "Eindigt:"
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Geen vrienden om te laten zien."
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
+msgstr "F j Y"
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Nieuw Contact toevoegen"
+#: ../../include/profile_advanced.php:23
+msgid "j F"
+msgstr "F j"
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Voeg een webadres of -locatie in:"
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "Verjaardag:"
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara"
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Leeftijd:"
 
-#: ../../include/contact_widgets.php:23
+#: ../../include/profile_advanced.php:43
 #, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d uitnodiging beschikbaar"
-msgstr[1] "%d uitnodigingen beschikbaar"
+msgid "for %1$d %2$s"
+msgstr "voor %1$d %2$s"
 
-#: ../../include/contact_widgets.php:29
-msgid "Find People"
-msgstr "Zoek mensen"
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "Labels:"
 
-#: ../../include/contact_widgets.php:30
-msgid "Enter name or interest"
-msgstr "Vul naam of interesse in"
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
+msgstr "Religie:"
 
-#: ../../include/contact_widgets.php:31
-msgid "Connect/Follow"
-msgstr "Verbind/Volg"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "Hobby:"
 
-#: ../../include/contact_widgets.php:32
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Voorbeelden: Jan Peeters, Vissen"
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "Contactinformatie en sociale netwerken:"
 
-#: ../../include/contact_widgets.php:36
-msgid "Random Profile"
-msgstr "Willekeurig Profiel"
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Muzikale interesse "
 
-#: ../../include/contact_widgets.php:70
-msgid "Networks"
-msgstr "Netwerken"
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Boeken, literatuur:"
 
-#: ../../include/contact_widgets.php:73
-msgid "All Networks"
-msgstr "Alle netwerken"
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "Televisie"
 
-#: ../../include/contact_widgets.php:103 ../../include/features.php:59
-msgid "Saved Folders"
-msgstr "Bewaarde Mappen"
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film/dans/cultuur/ontspanning:"
 
-#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
-msgid "Everything"
-msgstr "Alles"
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Liefde/romance:"
 
-#: ../../include/contact_widgets.php:135
-msgid "Categories"
-msgstr "Categorieën"
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "Werk/beroep:"
 
-#: ../../include/plugin.php:454 ../../include/plugin.php:456
-msgid "Click here to upgrade."
-msgstr ""
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "School/opleiding:"
 
-#: ../../include/plugin.php:462
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr ""
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr "[geen onderwerp]"
 
-#: ../../include/plugin.php:467
-msgid "This action is not available under your subscription plan."
-msgstr ""
+#: ../../include/Scrape.php:584
+msgid " on Last.fm"
+msgstr " op Last.fm"
 
-#: ../../include/api.php:255 ../../include/api.php:266
-#: ../../include/api.php:356
-msgid "User not found."
-msgstr ""
+#: ../../include/text.php:296
+msgid "newer"
+msgstr "nieuwere berichten"
 
-#: ../../include/api.php:1024
-msgid "There is no status with this id."
-msgstr "Er is geen status met dit kenmerk"
+#: ../../include/text.php:298
+msgid "older"
+msgstr "oudere berichten"
 
-#: ../../include/network.php:883
-msgid "view full size"
-msgstr "Volledig formaat"
+#: ../../include/text.php:303
+msgid "prev"
+msgstr "vorige"
 
-#: ../../include/event.php:20 ../../include/bb2diaspora.php:399
-msgid "Starts:"
-msgstr "Begint:"
+#: ../../include/text.php:305
+msgid "first"
+msgstr "eerste"
 
-#: ../../include/event.php:30 ../../include/bb2diaspora.php:407
-msgid "Finishes:"
-msgstr "Eindigt:"
+#: ../../include/text.php:337
+msgid "last"
+msgstr "laatste"
 
-#: ../../include/notifier.php:774 ../../include/delivery.php:457
-msgid "(no subject)"
-msgstr "(geen onderwerp)"
+#: ../../include/text.php:340
+msgid "next"
+msgstr "volgende"
 
-#: ../../include/notifier.php:784 ../../include/enotify.php:28
-#: ../../include/delivery.php:468
-msgid "noreply"
-msgstr "geen reactie"
+#: ../../include/text.php:853
+msgid "No contacts"
+msgstr "Geen contacten"
 
-#: ../../include/user.php:39
-msgid "An invitation is required."
-msgstr "Een uitnodiging is vereist."
+#: ../../include/text.php:862
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d contact"
+msgstr[1] "%d contacten"
 
-#: ../../include/user.php:44
-msgid "Invitation could not be verified."
-msgstr "Uitnodiging kon niet geverifieerd worden."
+#: ../../include/text.php:1003
+msgid "poke"
+msgstr "aanstoten"
 
-#: ../../include/user.php:52
-msgid "Invalid OpenID url"
-msgstr "Ongeldige OpenID url"
+#: ../../include/text.php:1003 ../../include/conversation.php:211
+msgid "poked"
+msgstr "aangestoten"
 
-#: ../../include/user.php:66 ../../include/auth.php:128
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr ""
+#: ../../include/text.php:1004
+msgid "ping"
+msgstr "ping"
 
-#: ../../include/user.php:66 ../../include/auth.php:128
-msgid "The error message was:"
-msgstr "De foutboodschap was:"
+#: ../../include/text.php:1004
+msgid "pinged"
+msgstr "gepingd"
 
-#: ../../include/user.php:73
-msgid "Please enter the required information."
-msgstr "Vul a.u.b. de vereiste informatie in."
+#: ../../include/text.php:1005
+msgid "prod"
+msgstr "porren"
 
-#: ../../include/user.php:87
-msgid "Please use a shorter name."
-msgstr "gebruik een kortere naam"
+#: ../../include/text.php:1005
+msgid "prodded"
+msgstr "gepord"
 
-#: ../../include/user.php:89
-msgid "Name too short."
-msgstr "Naam te kort"
+#: ../../include/text.php:1006
+msgid "slap"
+msgstr ""
 
-#: ../../include/user.php:104
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn."
+#: ../../include/text.php:1006
+msgid "slapped"
+msgstr ""
 
-#: ../../include/user.php:109
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Je e-maildomein is op deze website niet toegestaan."
+#: ../../include/text.php:1007
+msgid "finger"
+msgstr ""
 
-#: ../../include/user.php:112
-msgid "Not a valid email address."
-msgstr "Geen geldig e-mailadres."
+#: ../../include/text.php:1007
+msgid "fingered"
+msgstr ""
 
-#: ../../include/user.php:125
-msgid "Cannot use that email."
-msgstr "Ik kan die e-mail niet gebruiken."
+#: ../../include/text.php:1008
+msgid "rebuff"
+msgstr ""
 
-#: ../../include/user.php:131
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen."
+#: ../../include/text.php:1008
+msgid "rebuffed"
+msgstr ""
 
-#: ../../include/user.php:137 ../../include/user.php:235
-msgid "Nickname is already registered. Please choose another."
-msgstr "Bijnaam is al geregistreerd. Kies een andere."
+#: ../../include/text.php:1022
+msgid "happy"
+msgstr "Blij"
 
-#: ../../include/user.php:147
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere."
+#: ../../include/text.php:1023
+msgid "sad"
+msgstr "Verdrietig"
 
-#: ../../include/user.php:163
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt."
+#: ../../include/text.php:1024
+msgid "mellow"
+msgstr ""
 
-#: ../../include/user.php:221
-msgid "An error occurred during registration. Please try again."
+#: ../../include/text.php:1025
+msgid "tired"
+msgstr "vermoeid"
+
+#: ../../include/text.php:1026
+msgid "perky"
 msgstr ""
 
-#: ../../include/user.php:256
-msgid "An error occurred creating your default profile. Please try again."
+#: ../../include/text.php:1027
+msgid "angry"
+msgstr "boos"
+
+#: ../../include/text.php:1028
+msgid "stupified"
 msgstr ""
 
-#: ../../include/user.php:288 ../../include/user.php:292
-#: ../../include/profile_selectors.php:42
-msgid "Friends"
-msgstr "Vrienden"
+#: ../../include/text.php:1029
+msgid "puzzled"
+msgstr "onzeker"
 
-#: ../../include/conversation.php:207
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s stootte %2$s aan"
+#: ../../include/text.php:1030
+msgid "interested"
+msgstr "Geïnteresseerd"
 
-#: ../../include/conversation.php:211 ../../include/text.php:986
-msgid "poked"
-msgstr "aangestoten"
+#: ../../include/text.php:1031
+msgid "bitter"
+msgstr "bitter"
 
-#: ../../include/conversation.php:291
-msgid "post/item"
-msgstr "bericht/item"
+#: ../../include/text.php:1032
+msgid "cheerful"
+msgstr "vrolijk"
 
-#: ../../include/conversation.php:292
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s markeerde %2$s's %3$s als favoriet"
+#: ../../include/text.php:1033
+msgid "alive"
+msgstr "levend"
 
-#: ../../include/conversation.php:767
-msgid "remove"
-msgstr "verwijder"
+#: ../../include/text.php:1034
+msgid "annoyed"
+msgstr "verveeld"
 
-#: ../../include/conversation.php:771
-msgid "Delete Selected Items"
-msgstr "Geselecteerde items verwijderen"
+#: ../../include/text.php:1035
+msgid "anxious"
+msgstr ""
 
-#: ../../include/conversation.php:870
-msgid "Follow Thread"
-msgstr "Conversatie volgen"
+#: ../../include/text.php:1036
+msgid "cranky"
+msgstr ""
 
-#: ../../include/conversation.php:871 ../../include/Contact.php:229
-msgid "View Status"
-msgstr "Bekijk status"
+#: ../../include/text.php:1037
+msgid "disturbed"
+msgstr ""
 
-#: ../../include/conversation.php:872 ../../include/Contact.php:230
-msgid "View Profile"
-msgstr "Bekijk profiel"
+#: ../../include/text.php:1038
+msgid "frustrated"
+msgstr "gefrustreerd"
 
-#: ../../include/conversation.php:873 ../../include/Contact.php:231
-msgid "View Photos"
-msgstr "Bekijk foto's"
+#: ../../include/text.php:1039
+msgid "motivated"
+msgstr "gemotiveerd"
 
-#: ../../include/conversation.php:874 ../../include/Contact.php:232
-#: ../../include/Contact.php:255
-msgid "Network Posts"
-msgstr "Netwerkberichten"
+#: ../../include/text.php:1040
+msgid "relaxed"
+msgstr "ontspannen"
 
-#: ../../include/conversation.php:875 ../../include/Contact.php:233
-#: ../../include/Contact.php:255
-msgid "Edit Contact"
-msgstr "Bewerk contact"
+#: ../../include/text.php:1041
+msgid "surprised"
+msgstr "verbaasd"
 
-#: ../../include/conversation.php:876 ../../include/Contact.php:235
-#: ../../include/Contact.php:255
-msgid "Send PM"
-msgstr "Stuur een privébericht"
+#: ../../include/text.php:1209
+msgid "Monday"
+msgstr "Maandag"
 
-#: ../../include/conversation.php:877 ../../include/Contact.php:228
-msgid "Poke"
-msgstr "Aanstoten"
+#: ../../include/text.php:1209
+msgid "Tuesday"
+msgstr "Dinsdag"
 
-#: ../../include/conversation.php:939
-#, php-format
-msgid "%s likes this."
-msgstr "%s vind dit leuk."
+#: ../../include/text.php:1209
+msgid "Wednesday"
+msgstr "Woensdag"
 
-#: ../../include/conversation.php:939
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s vind dit niet leuk."
+#: ../../include/text.php:1209
+msgid "Thursday"
+msgstr "Donderdag"
 
-#: ../../include/conversation.php:944
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d mensen</span> vinden dit leuk"
+#: ../../include/text.php:1209
+msgid "Friday"
+msgstr "Vrijdag"
 
-#: ../../include/conversation.php:947
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d people</span> vinden dit niet leuk"
+#: ../../include/text.php:1209
+msgid "Saturday"
+msgstr "Zaterdag"
 
-#: ../../include/conversation.php:961
-msgid "and"
-msgstr "en"
+#: ../../include/text.php:1209
+msgid "Sunday"
+msgstr "Zondag"
 
-#: ../../include/conversation.php:967
-#, php-format
-msgid ", and %d other people"
-msgstr ", en %d andere mensen"
+#: ../../include/text.php:1213
+msgid "January"
+msgstr "Januari"
 
-#: ../../include/conversation.php:969
-#, php-format
-msgid "%s like this."
-msgstr "%s vind dit leuk."
+#: ../../include/text.php:1213
+msgid "February"
+msgstr "Februari"
 
-#: ../../include/conversation.php:969
-#, php-format
-msgid "%s don't like this."
-msgstr "%s vind dit niet leuk."
+#: ../../include/text.php:1213
+msgid "March"
+msgstr "Maart"
 
-#: ../../include/conversation.php:996 ../../include/conversation.php:1014
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Zichtbaar voor <strong>iedereen</strong>"
+#: ../../include/text.php:1213
+msgid "April"
+msgstr "April"
 
-#: ../../include/conversation.php:998 ../../include/conversation.php:1016
-msgid "Please enter a video link/URL:"
-msgstr "Vul een videolink/URL in:"
+#: ../../include/text.php:1213
+msgid "May"
+msgstr "Mei"
 
-#: ../../include/conversation.php:999 ../../include/conversation.php:1017
-msgid "Please enter an audio link/URL:"
-msgstr "Vul een audiolink/URL in:"
+#: ../../include/text.php:1213
+msgid "June"
+msgstr "Juni"
 
-#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
-msgid "Tag term:"
-msgstr "Label:"
+#: ../../include/text.php:1213
+msgid "July"
+msgstr "Juli"
 
-#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
-msgid "Where are you right now?"
-msgstr "Waar ben je nu?"
+#: ../../include/text.php:1213
+msgid "August"
+msgstr "Augustus"
 
-#: ../../include/conversation.php:1003
-msgid "Delete item(s)?"
-msgstr "Item(s) verwijderen?"
+#: ../../include/text.php:1213
+msgid "September"
+msgstr "September"
 
-#: ../../include/conversation.php:1045
-msgid "Post to Email"
-msgstr "Verzenden per e-mail"
+#: ../../include/text.php:1213
+msgid "October"
+msgstr "Oktober"
 
-#: ../../include/conversation.php:1101
-msgid "permissions"
-msgstr "rechten"
+#: ../../include/text.php:1213
+msgid "November"
+msgstr "November"
 
-#: ../../include/conversation.php:1125
-msgid "Post to Groups"
-msgstr "Verzenden naar Groepen"
+#: ../../include/text.php:1213
+msgid "December"
+msgstr "December"
 
-#: ../../include/conversation.php:1126
-msgid "Post to Contacts"
-msgstr "Verzenden naar Contacten"
+#: ../../include/text.php:1432
+msgid "bytes"
+msgstr "bytes"
 
-#: ../../include/conversation.php:1127
-msgid "Private post"
-msgstr "Privé verzending"
+#: ../../include/text.php:1456 ../../include/text.php:1468
+msgid "Click to open/close"
+msgstr "klik om te openen/sluiten"
 
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "Uitgelogd."
+#: ../../include/text.php:1689 ../../include/user.php:246
+msgid "default"
+msgstr "standaard"
 
-#: ../../include/uimport.php:94
-msgid "Error decoding account file"
-msgstr ""
+#: ../../include/text.php:1701
+msgid "Select an alternate language"
+msgstr "Kies een andere taal"
 
-#: ../../include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr ""
+#: ../../include/text.php:1957
+msgid "activity"
+msgstr "activiteit"
 
-#: ../../include/uimport.php:116 ../../include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr ""
+#: ../../include/text.php:1960
+msgid "post"
+msgstr "bericht"
 
-#: ../../include/uimport.php:120 ../../include/uimport.php:131
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "Gebruiker '%s' bestaat al op deze server!"
+#: ../../include/text.php:2128
+msgid "Item filed"
+msgstr "Item bewaard"
 
-#: ../../include/uimport.php:153
-msgid "User creation error"
-msgstr "Fout bij het aanmaken van de gebruiker"
+#: ../../include/api.php:263 ../../include/api.php:274
+#: ../../include/api.php:375
+msgid "User not found."
+msgstr ""
 
-#: ../../include/uimport.php:171
-msgid "User profile creation error"
-msgstr "Fout bij het aanmaken van het gebruikersprofiel"
+#: ../../include/api.php:1123
+msgid "There is no status with this id."
+msgstr "Er is geen status met dit kenmerk"
 
-#: ../../include/uimport.php:220
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d contact werd niet geïmporteerd"
-msgstr[1] "%d contacten werden niet geïmporteerd"
+#: ../../include/api.php:1193
+msgid "There is no conversation with this id."
+msgstr ""
 
-#: ../../include/uimport.php:290
-msgid "Done. You can now login with your username and password"
-msgstr "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord"
+#: ../../include/dba.php:51 ../../include/dba_pdo.php:72
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr ""
 
-#: ../../include/text.php:300
-msgid "newer"
-msgstr "nieuwere berichten"
+#: ../../include/items.php:1981 ../../include/datetime.php:472
+#, php-format
+msgid "%s's birthday"
+msgstr "%s's verjaardag"
 
-#: ../../include/text.php:302
-msgid "older"
-msgstr "oudere berichten"
+#: ../../include/items.php:1982 ../../include/datetime.php:473
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Gefeliciteerd %s"
 
-#: ../../include/text.php:307
-msgid "prev"
-msgstr "vorige"
+#: ../../include/items.php:3710
+msgid "A new person is sharing with you at "
+msgstr ""
 
-#: ../../include/text.php:309
-msgid "first"
-msgstr "eerste"
+#: ../../include/items.php:3710
+msgid "You have a new follower at "
+msgstr "Je hebt een nieuwe volger op "
 
-#: ../../include/text.php:341
-msgid "last"
-msgstr "laatste"
+#: ../../include/items.php:4233
+msgid "Do you really want to delete this item?"
+msgstr "Wil je echt dit item verwijderen?"
 
-#: ../../include/text.php:344
-msgid "next"
-msgstr "volgende"
+#: ../../include/items.php:4460
+msgid "Archives"
+msgstr "Archieven"
 
-#: ../../include/text.php:836
-msgid "No contacts"
-msgstr "Geen contacten"
+#: ../../include/delivery.php:456 ../../include/notifier.php:774
+msgid "(no subject)"
+msgstr "(geen onderwerp)"
 
-#: ../../include/text.php:845
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d contact"
-msgstr[1] "%d contacten"
+#: ../../include/delivery.php:467 ../../include/notifier.php:784
+#: ../../include/enotify.php:28
+msgid "noreply"
+msgstr "geen reactie"
 
-#: ../../include/text.php:986
-msgid "poke"
-msgstr "aanstoten"
+#: ../../include/diaspora.php:703
+msgid "Sharing notification from Diaspora network"
+msgstr ""
 
-#: ../../include/text.php:987
-msgid "ping"
-msgstr "ping"
+#: ../../include/diaspora.php:2299
+msgid "Attachments:"
+msgstr "Bijlagen:"
 
-#: ../../include/text.php:987
-msgid "pinged"
-msgstr "gepingd"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr ""
 
-#: ../../include/text.php:988
-msgid "prod"
-msgstr "porren"
+#: ../../include/follow.php:59
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Deze website is niet geconfigureerd voor communicatie met andere netwerken."
 
-#: ../../include/text.php:988
-msgid "prodded"
-msgstr "gepord"
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Er werden geen compatibele communicatieprotocols of feeds ontdekt."
 
-#: ../../include/text.php:989
-msgid "slap"
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
 msgstr ""
 
-#: ../../include/text.php:989
-msgid "slapped"
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
 msgstr ""
 
-#: ../../include/text.php:990
-msgid "finger"
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
 msgstr ""
 
-#: ../../include/text.php:990
-msgid "fingered"
+#: ../../include/follow.php:86
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact."
+
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
+msgstr "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen."
+
+#: ../../include/follow.php:93
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
 msgstr ""
 
-#: ../../include/text.php:991
-msgid "rebuff"
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
 msgstr ""
 
-#: ../../include/text.php:991
-msgid "rebuffed"
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
 msgstr ""
 
-#: ../../include/text.php:1005
-msgid "happy"
-msgstr "Blij"
+#: ../../include/follow.php:259
+msgid "following"
+msgstr "volgend"
 
-#: ../../include/text.php:1006
-msgid "sad"
-msgstr "Verdrietig"
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Welkom"
 
-#: ../../include/text.php:1007
-msgid "mellow"
-msgstr ""
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Upload een profielfoto."
 
-#: ../../include/text.php:1008
-msgid "tired"
-msgstr "vermoeid"
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Welkom terug "
 
-#: ../../include/text.php:1009
-msgid "perky"
+#: ../../include/security.php:366
+msgid ""
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
 msgstr ""
 
-#: ../../include/text.php:1010
-msgid "angry"
-msgstr "boos"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Man"
 
-#: ../../include/text.php:1011
-msgid "stupified"
-msgstr ""
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Vrouw"
 
-#: ../../include/text.php:1012
-msgid "puzzled"
-msgstr "onzeker"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Momenteel mannelijk"
 
-#: ../../include/text.php:1013
-msgid "interested"
-msgstr "Geïnteresseerd"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Momenteel vrouwelijk"
 
-#: ../../include/text.php:1014
-msgid "bitter"
-msgstr "bitter"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Meestal mannelijk"
 
-#: ../../include/text.php:1015
-msgid "cheerful"
-msgstr "vrolijk"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Meestal vrouwelijk"
 
-#: ../../include/text.php:1016
-msgid "alive"
-msgstr "levend"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgender"
 
-#: ../../include/text.php:1017
-msgid "annoyed"
-msgstr "verveeld"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Interseksueel"
 
-#: ../../include/text.php:1018
-msgid "anxious"
-msgstr ""
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transseksueel"
 
-#: ../../include/text.php:1019
-msgid "cranky"
-msgstr ""
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermafrodiet"
 
-#: ../../include/text.php:1020
-msgid "disturbed"
-msgstr ""
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Genderneutraal"
 
-#: ../../include/text.php:1021
-msgid "frustrated"
-msgstr "gefrustreerd"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Niet-specifiek"
 
-#: ../../include/text.php:1022
-msgid "motivated"
-msgstr "gemotiveerd"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Anders"
 
-#: ../../include/text.php:1023
-msgid "relaxed"
-msgstr "ontspannen"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Onbeslist"
 
-#: ../../include/text.php:1024
-msgid "surprised"
-msgstr "verbaasd"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Manen"
 
-#: ../../include/text.php:1192
-msgid "Monday"
-msgstr "Maandag"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Vrouwen"
 
-#: ../../include/text.php:1192
-msgid "Tuesday"
-msgstr "Dinsdag"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Homo"
 
-#: ../../include/text.php:1192
-msgid "Wednesday"
-msgstr "Woensdag"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbie"
 
-#: ../../include/text.php:1192
-msgid "Thursday"
-msgstr "Donderdag"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Geen voorkeur"
 
-#: ../../include/text.php:1192
-msgid "Friday"
-msgstr "Vrijdag"
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Biseksueel"
 
-#: ../../include/text.php:1192
-msgid "Saturday"
-msgstr "Zaterdag"
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autoseksueel"
 
-#: ../../include/text.php:1192
-msgid "Sunday"
-msgstr "Zondag"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Onthouder"
 
-#: ../../include/text.php:1196
-msgid "January"
-msgstr "Januari"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Maagd"
 
-#: ../../include/text.php:1196
-msgid "February"
-msgstr "Februari"
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Afwijkend"
+
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr ""
+
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr ""
+
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Niet seksueel"
+
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Alleenstaand"
+
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Eenzaam"
+
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Beschikbaar"
+
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Onbeschikbaar"
+
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "Verliefd"
+
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Aan het daten"
+
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Ontrouw"
 
-#: ../../include/text.php:1196
-msgid "March"
-msgstr "Maart"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Seksverslaafd"
 
-#: ../../include/text.php:1196
-msgid "April"
-msgstr "April"
+#: ../../include/profile_selectors.php:42 ../../include/user.php:288
+#: ../../include/user.php:292
+msgid "Friends"
+msgstr "Vrienden"
 
-#: ../../include/text.php:1196
-msgid "May"
-msgstr "Mei"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Vriendschap plus"
 
-#: ../../include/text.php:1196
-msgid "June"
-msgstr "Juni"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr ""
 
-#: ../../include/text.php:1196
-msgid "July"
-msgstr "Juli"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Verloofd"
 
-#: ../../include/text.php:1196
-msgid "August"
-msgstr "Augustus"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Getrouwd"
 
-#: ../../include/text.php:1196
-msgid "September"
-msgstr "September"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr ""
 
-#: ../../include/text.php:1196
-msgid "October"
-msgstr "Oktober"
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partners"
 
-#: ../../include/text.php:1196
-msgid "November"
-msgstr "November"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "Samenwonend"
 
-#: ../../include/text.php:1196
-msgid "December"
-msgstr "December"
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr ""
 
-#: ../../include/text.php:1415
-msgid "bytes"
-msgstr "bytes"
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Blij"
 
-#: ../../include/text.php:1439 ../../include/text.php:1451
-msgid "Click to open/close"
-msgstr "klik om te openen/sluiten"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr ""
 
-#: ../../include/text.php:1670
-msgid "Select an alternate language"
-msgstr "Kies een andere taal"
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Swinger"
 
-#: ../../include/text.php:1926
-msgid "activity"
-msgstr "activiteit"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Bedrogen"
 
-#: ../../include/text.php:1929
-msgid "post"
-msgstr "bericht"
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr ""
 
-#: ../../include/text.php:2084
-msgid "Item filed"
-msgstr "Item bewaard"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Onstabiel"
 
-#: ../../include/enotify.php:16
-msgid "Friendica Notification"
-msgstr "Friendica Notificatie"
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Gescheiden"
 
-#: ../../include/enotify.php:19
-msgid "Thank You,"
-msgstr "Bedankt"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr ""
 
-#: ../../include/enotify.php:21
-#, php-format
-msgid "%s Administrator"
-msgstr "%s Beheerder"
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr ""
 
-#: ../../include/enotify.php:40
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Onzeker"
 
-#: ../../include/enotify.php:44
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Notificatie] Nieuw bericht ontvangen op %s"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "Het is gecompliceerd"
 
-#: ../../include/enotify.php:46
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s sent you a new private message at %2$s."
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Kan me niet schelen"
 
-#: ../../include/enotify.php:47
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s stuurde jou %2$s."
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Vraag me"
 
-#: ../../include/enotify.php:47
-msgid "a private message"
-msgstr "een prive bericht"
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
+msgstr ""
 
-#: ../../include/enotify.php:48
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden."
+#: ../../include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr ""
 
-#: ../../include/enotify.php:90
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s gaf een reactie op [url=%2$s]a %3$s[/url]"
+#: ../../include/uimport.php:116 ../../include/uimport.php:127
+msgid "Error! Cannot check nickname"
+msgstr ""
 
-#: ../../include/enotify.php:97
+#: ../../include/uimport.php:120 ../../include/uimport.php:131
 #, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s gaf een reactie op [url=%2$s]%3$s's %4$s[/url]"
+msgid "User '%s' already exists on this server!"
+msgstr "Gebruiker '%s' bestaat al op deze server!"
 
-#: ../../include/enotify.php:105
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s gaf een reactie op [url=%2$s]jouw %3$s[/url]"
+#: ../../include/uimport.php:153
+msgid "User creation error"
+msgstr "Fout bij het aanmaken van de gebruiker"
 
-#: ../../include/enotify.php:115
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr ""
+#: ../../include/uimport.php:171
+msgid "User profile creation error"
+msgstr "Fout bij het aanmaken van het gebruikersprofiel"
 
-#: ../../include/enotify.php:116
+#: ../../include/uimport.php:220
 #, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s gaf een reactie op een bericht/conversatie die jij volgt."
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d contact werd niet geïmporteerd"
+msgstr[1] "%d contacten werden niet geïmporteerd"
 
-#: ../../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 "Bezoek %s om de conversatie te bekijken en/of te beantwoorden."
+#: ../../include/uimport.php:290
+msgid "Done. You can now login with your username and password"
+msgstr "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord"
 
-#: ../../include/enotify.php:126
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
+#: ../../include/plugin.php:455 ../../include/plugin.php:457
+msgid "Click here to upgrade."
 msgstr ""
 
-#: ../../include/enotify.php:128
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
+#: ../../include/plugin.php:463
+msgid "This action exceeds the limits set by your subscription plan."
 msgstr ""
 
-#: ../../include/enotify.php:130
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
+#: ../../include/plugin.php:468
+msgid "This action is not available under your subscription plan."
 msgstr ""
 
-#: ../../include/enotify.php:141
+#: ../../include/conversation.php:207
 #, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Notificatie] %s heeft jou genoemd"
+msgid "%1$s poked %2$s"
+msgstr "%1$s stootte %2$s aan"
 
-#: ../../include/enotify.php:142
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s heeft jou in %2$s genoemd"
+#: ../../include/conversation.php:291
+msgid "post/item"
+msgstr "bericht/item"
 
-#: ../../include/enotify.php:143
+#: ../../include/conversation.php:292
 #, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]heeft jou genoemd[/url]."
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s markeerde %2$s's %3$s als favoriet"
 
-#: ../../include/enotify.php:155
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Notify] %1$s heeft jou aangestoten"
+#: ../../include/conversation.php:770
+msgid "remove"
+msgstr "verwijder"
 
-#: ../../include/enotify.php:156
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s heeft jou aangestoten op %2$s"
+#: ../../include/conversation.php:774
+msgid "Delete Selected Items"
+msgstr "Geselecteerde items verwijderen"
 
-#: ../../include/enotify.php:157
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr ""
+#: ../../include/conversation.php:873
+msgid "Follow Thread"
+msgstr "Conversatie volgen"
 
-#: ../../include/enotify.php:172
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Notificatie] %s heeft jouw bericht gelabeld"
+#: ../../include/conversation.php:874 ../../include/Contact.php:229
+msgid "View Status"
+msgstr "Bekijk status"
 
-#: ../../include/enotify.php:173
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s heeft jouw bericht gelabeld in %2$s"
+#: ../../include/conversation.php:875 ../../include/Contact.php:230
+msgid "View Profile"
+msgstr "Bekijk profiel"
 
-#: ../../include/enotify.php:174
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s labelde [url=%2$s]jouw bericht[/url]"
+#: ../../include/conversation.php:876 ../../include/Contact.php:231
+msgid "View Photos"
+msgstr "Bekijk foto's"
 
-#: ../../include/enotify.php:185
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen"
+#: ../../include/conversation.php:877 ../../include/Contact.php:232
+#: ../../include/Contact.php:255
+msgid "Network Posts"
+msgstr "Netwerkberichten"
 
-#: ../../include/enotify.php:186
+#: ../../include/conversation.php:878 ../../include/Contact.php:233
+#: ../../include/Contact.php:255
+msgid "Edit Contact"
+msgstr "Bewerk contact"
+
+#: ../../include/conversation.php:879 ../../include/Contact.php:235
+#: ../../include/Contact.php:255
+msgid "Send PM"
+msgstr "Stuur een privébericht"
+
+#: ../../include/conversation.php:880 ../../include/Contact.php:228
+msgid "Poke"
+msgstr "Aanstoten"
+
+#: ../../include/conversation.php:942
 #, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1$s' om %2$s"
+msgid "%s likes this."
+msgstr "%s vind dit leuk."
 
-#: ../../include/enotify.php:187
+#: ../../include/conversation.php:942
 #, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Je ontving [url=%1$s]een vriendschaps- of connectieverzoek[/url] van %2$s."
+msgid "%s doesn't like this."
+msgstr "%s vind dit niet leuk."
 
-#: ../../include/enotify.php:190 ../../include/enotify.php:208
+#: ../../include/conversation.php:947
 #, php-format
-msgid "You may visit their profile at %s"
-msgstr "U kunt hun profiel bezoeken op %s"
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d mensen</span> vinden dit leuk"
 
-#: ../../include/enotify.php:192
+#: ../../include/conversation.php:950
 #, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Bezoek %s om het verzoek goed of af te keuren."
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d people</span> vinden dit niet leuk"
 
-#: ../../include/enotify.php:199
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr ""
+#: ../../include/conversation.php:964
+msgid "and"
+msgstr "en"
 
-#: ../../include/enotify.php:200
+#: ../../include/conversation.php:970
 #, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr ""
+msgid ", and %d other people"
+msgstr ", en %d andere mensen"
 
-#: ../../include/enotify.php:201
+#: ../../include/conversation.php:972
 #, php-format
-msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr ""
-
-#: ../../include/enotify.php:206
-msgid "Name:"
-msgstr "Naam:"
-
-#: ../../include/enotify.php:207
-msgid "Photo:"
-msgstr "Foto: "
+msgid "%s like this."
+msgstr "%s vind dit leuk."
 
-#: ../../include/enotify.php:210
+#: ../../include/conversation.php:972
 #, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr ""
+msgid "%s don't like this."
+msgstr "%s vind dit niet leuk."
 
-#: ../../include/Scrape.php:583
-msgid " on Last.fm"
-msgstr " op Last.fm"
+#: ../../include/conversation.php:999 ../../include/conversation.php:1017
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Zichtbaar voor <strong>iedereen</strong>"
 
-#: ../../include/group.php:25
-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 "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten <strong>kunnen</strong> voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. "
+#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
+msgid "Please enter a video link/URL:"
+msgstr "Vul een videolink/URL in:"
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr ""
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
+msgid "Please enter an audio link/URL:"
+msgstr "Vul een audiolink/URL in:"
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "Iedereen"
+#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
+msgid "Tag term:"
+msgstr "Label:"
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "verander"
+#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
+msgid "Where are you right now?"
+msgstr "Waar ben je nu?"
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "Verander groep"
+#: ../../include/conversation.php:1006
+msgid "Delete item(s)?"
+msgstr "Item(s) verwijderen?"
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "Maak nieuwe groep"
+#: ../../include/conversation.php:1049
+msgid "Post to Email"
+msgstr "Verzenden per e-mail"
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
+#: ../../include/conversation.php:1054
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
 msgstr ""
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr ""
+#: ../../include/conversation.php:1109
+msgid "permissions"
+msgstr "rechten"
 
-#: ../../include/follow.php:59
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Deze website is niet geconfigureerd voor communicatie met andere netwerken."
+#: ../../include/conversation.php:1133
+msgid "Post to Groups"
+msgstr "Verzenden naar Groepen"
 
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Er werden geen compatibele communicatieprotocols of feeds ontdekt."
+#: ../../include/conversation.php:1134
+msgid "Post to Contacts"
+msgstr "Verzenden naar Contacten"
 
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr ""
+#: ../../include/conversation.php:1135
+msgid "Private post"
+msgstr "Privé verzending"
 
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr ""
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Nieuw Contact toevoegen"
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr ""
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Voeg een webadres of -locatie in:"
 
-#: ../../include/follow.php:86
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact."
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara"
 
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen."
+#: ../../include/contact_widgets.php:23
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d uitnodiging beschikbaar"
+msgstr[1] "%d uitnodigingen beschikbaar"
 
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr ""
+#: ../../include/contact_widgets.php:29
+msgid "Find People"
+msgstr "Zoek mensen"
 
-#: ../../include/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr ""
+#: ../../include/contact_widgets.php:30
+msgid "Enter name or interest"
+msgstr "Vul naam of interesse in"
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr ""
+#: ../../include/contact_widgets.php:31
+msgid "Connect/Follow"
+msgstr "Verbind/Volg"
 
-#: ../../include/follow.php:259
-msgid "following"
-msgstr "volgend"
+#: ../../include/contact_widgets.php:32
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Voorbeelden: Jan Peeters, Vissen"
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr "[geen onderwerp]"
+#: ../../include/contact_widgets.php:36
+msgid "Random Profile"
+msgstr "Willekeurig Profiel"
+
+#: ../../include/contact_widgets.php:70
+msgid "Networks"
+msgstr "Netwerken"
+
+#: ../../include/contact_widgets.php:73
+msgid "All Networks"
+msgstr "Alle netwerken"
+
+#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
+msgid "Everything"
+msgstr "Alles"
+
+#: ../../include/contact_widgets.php:135
+msgid "Categories"
+msgstr "Categorieën"
 
 #: ../../include/nav.php:73
 msgid "End this session"
@@ -6565,158 +6778,81 @@ msgstr "Gids"
 msgid "People directory"
 msgstr "Personengids"
 
-#: ../../include/nav.php:140
-msgid "Conversations from your friends"
-msgstr "Conversaties van je vrienden"
-
-#: ../../include/nav.php:141
-msgid "Network Reset"
-msgstr "Netwerkpagina opnieuw instellen"
-
-#: ../../include/nav.php:141
-msgid "Load Network page with no filters"
-msgstr "Laad de netwerkpagina zonder filters"
-
-#: ../../include/nav.php:149
-msgid "Friend Requests"
-msgstr "Vriendschapsverzoeken"
-
-#: ../../include/nav.php:151
-msgid "See all notifications"
-msgstr "Toon alle notificaties"
-
-#: ../../include/nav.php:152
-msgid "Mark all system notifications seen"
-msgstr "Alle systeemnotificaties als gelezen markeren"
-
-#: ../../include/nav.php:156
-msgid "Private mail"
-msgstr "Privéberichten"
-
-#: ../../include/nav.php:157
-msgid "Inbox"
-msgstr "Inbox"
-
-#: ../../include/nav.php:158
-msgid "Outbox"
-msgstr "Verzonden berichten"
-
-#: ../../include/nav.php:162
-msgid "Manage"
-msgstr "Beheren"
-
-#: ../../include/nav.php:162
-msgid "Manage other pages"
-msgstr "Andere pagina's beheren"
-
-#: ../../include/nav.php:165
-msgid "Delegations"
+#: ../../include/nav.php:132
+msgid "Information"
 msgstr ""
 
-#: ../../include/nav.php:169
-msgid "Manage/Edit Profiles"
-msgstr "Beheer/Wijzig Profielen"
-
-#: ../../include/nav.php:171
-msgid "Manage/edit friends and contacts"
-msgstr "Beheer/Wijzig vrienden en contacten"
-
-#: ../../include/nav.php:178
-msgid "Site setup and configuration"
-msgstr "Website opzetten en configureren"
-
-#: ../../include/nav.php:182
-msgid "Navigation"
-msgstr "Navigatie"
-
-#: ../../include/nav.php:182
-msgid "Site map"
-msgstr "Sitemap"
-
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "F j Y"
-
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "F j"
-
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "Verjaardag:"
+#: ../../include/nav.php:132
+msgid "Information about this friendica instance"
+msgstr ""
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Leeftijd:"
+#: ../../include/nav.php:142
+msgid "Conversations from your friends"
+msgstr "Conversaties van je vrienden"
 
-#: ../../include/profile_advanced.php:43
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "voor %1$d %2$s"
+#: ../../include/nav.php:143
+msgid "Network Reset"
+msgstr "Netwerkpagina opnieuw instellen"
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Labels:"
+#: ../../include/nav.php:143
+msgid "Load Network page with no filters"
+msgstr "Laad de netwerkpagina zonder filters"
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Religie:"
+#: ../../include/nav.php:151
+msgid "Friend Requests"
+msgstr "Vriendschapsverzoeken"
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Hobby:"
+#: ../../include/nav.php:153
+msgid "See all notifications"
+msgstr "Toon alle notificaties"
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Contactinformatie en sociale netwerken:"
+#: ../../include/nav.php:154
+msgid "Mark all system notifications seen"
+msgstr "Alle systeemnotificaties als gelezen markeren"
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Muzikale interesse "
+#: ../../include/nav.php:158
+msgid "Private mail"
+msgstr "Privéberichten"
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Boeken, literatuur:"
+#: ../../include/nav.php:159
+msgid "Inbox"
+msgstr "Inbox"
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Televisie"
+#: ../../include/nav.php:160
+msgid "Outbox"
+msgstr "Verzonden berichten"
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Film/dans/cultuur/ontspanning:"
+#: ../../include/nav.php:164
+msgid "Manage"
+msgstr "Beheren"
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Liefde/romance:"
+#: ../../include/nav.php:164
+msgid "Manage other pages"
+msgstr "Andere pagina's beheren"
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Werk/beroep:"
+#: ../../include/nav.php:169
+msgid "Account settings"
+msgstr "Account instellingen"
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "School/opleiding:"
+#: ../../include/nav.php:171
+msgid "Manage/Edit Profiles"
+msgstr "Beheer/Wijzig Profielen"
 
-#: ../../include/bbcode.php:215 ../../include/bbcode.php:620
-#: ../../include/bbcode.php:621
-msgid "Image/photo"
-msgstr "Afbeelding/foto"
+#: ../../include/nav.php:173
+msgid "Manage/edit friends and contacts"
+msgstr "Beheer/Wijzig vrienden en contacten"
 
-#: ../../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> schreef het volgende <a href=\"%s\" target=\"external-link\">bericht</a>"
+#: ../../include/nav.php:180
+msgid "Site setup and configuration"
+msgstr "Website opzetten en configureren"
 
-#: ../../include/bbcode.php:584 ../../include/bbcode.php:604
-msgid "$1 wrote:"
-msgstr "$1 schreef:"
+#: ../../include/nav.php:184
+msgid "Navigation"
+msgstr "Navigatie"
 
-#: ../../include/bbcode.php:631 ../../include/bbcode.php:632
-msgid "Encrypted content"
-msgstr "Versleutelde inhoud"
+#: ../../include/nav.php:184
+msgid "Site map"
+msgstr "Sitemap"
 
 #: ../../include/contact_selectors.php:32
 msgid "Unknown | Not categorised"
@@ -6786,528 +6922,432 @@ msgstr ""
 msgid "Twitter"
 msgstr ""
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Diversen"
-
-#: ../../include/datetime.php:153 ../../include/datetime.php:285
-msgid "year"
-msgstr "jaar"
-
-#: ../../include/datetime.php:158 ../../include/datetime.php:286
-msgid "month"
-msgstr "maand"
-
-#: ../../include/datetime.php:163 ../../include/datetime.php:288
-msgid "day"
-msgstr "dag"
-
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "nooit"
-
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "minder dan een seconde geleden"
-
-#: ../../include/datetime.php:285
-msgid "years"
-msgstr "jaren"
-
-#: ../../include/datetime.php:286
-msgid "months"
-msgstr "maanden"
-
-#: ../../include/datetime.php:287
-msgid "week"
-msgstr "week"
-
-#: ../../include/datetime.php:287
-msgid "weeks"
-msgstr "weken"
-
-#: ../../include/datetime.php:288
-msgid "days"
-msgstr "dagen"
-
-#: ../../include/datetime.php:289
-msgid "hour"
-msgstr "uur"
-
-#: ../../include/datetime.php:289
-msgid "hours"
-msgstr "uren"
-
-#: ../../include/datetime.php:290
-msgid "minute"
-msgstr "minuut"
+#: ../../include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr ""
 
-#: ../../include/datetime.php:290
-msgid "minutes"
-msgstr "minuten"
+#: ../../include/contact_selectors.php:91
+msgid "Statusnet"
+msgstr ""
 
-#: ../../include/datetime.php:291
-msgid "second"
-msgstr "seconde"
+#: ../../include/enotify.php:16
+msgid "Friendica Notification"
+msgstr "Friendica Notificatie"
 
-#: ../../include/datetime.php:291
-msgid "seconds"
-msgstr "secondes"
+#: ../../include/enotify.php:19
+msgid "Thank You,"
+msgstr "Bedankt"
 
-#: ../../include/datetime.php:300
+#: ../../include/enotify.php:21
 #, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s geleden"
+msgid "%s Administrator"
+msgstr "%s Beheerder"
 
-#: ../../include/datetime.php:472 ../../include/items.php:1829
+#: ../../include/enotify.php:40
 #, php-format
-msgid "%s's birthday"
-msgstr "%s's verjaardag"
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: ../../include/datetime.php:473 ../../include/items.php:1830
+#: ../../include/enotify.php:44
 #, php-format
-msgid "Happy Birthday %s"
-msgstr "Gefeliciteerd %s"
-
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "Algemene functies"
-
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr "Meerdere profielen"
-
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr "Mogelijkheid om meerdere profielen aan te maken"
-
-#: ../../include/features.php:30
-msgid "Post Composition Features"
-msgstr "Functies voor het opstellen van berichten"
-
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr "RTF-tekstverwerker"
-
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
-msgstr "Gebruik een tekstverwerker met eenvoudige opmaakfuncties"
-
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr "Voorvertoning bericht"
-
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
-msgstr ""
-
-#: ../../include/features.php:37
-msgid "Network Sidebar Widgets"
-msgstr "Zijbalkwidgets op netwerkpagina"
-
-#: ../../include/features.php:38
-msgid "Search by Date"
-msgstr "Zoeken op datum"
-
-#: ../../include/features.php:38
-msgid "Ability to select posts by date ranges"
-msgstr "Mogelijkheid om berichten te selecteren volgens datumbereik"
-
-#: ../../include/features.php:39
-msgid "Group Filter"
-msgstr "Groepsfilter"
-
-#: ../../include/features.php:39
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen"
-
-#: ../../include/features.php:40
-msgid "Network Filter"
-msgstr "Netwerkfilter"
-
-#: ../../include/features.php:40
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken"
-
-#: ../../include/features.php:41
-msgid "Save search terms for re-use"
-msgstr "Sla zoekopdrachten op voor hergebruik"
-
-#: ../../include/features.php:46
-msgid "Network Tabs"
-msgstr "Netwerktabs"
-
-#: ../../include/features.php:47
-msgid "Network Personal Tab"
-msgstr "Persoonlijke netwerktab"
-
-#: ../../include/features.php:47
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notificatie] Nieuw bericht ontvangen op %s"
 
-#: ../../include/features.php:48
-msgid "Network New Tab"
-msgstr "Nieuwe netwerktab"
+#: ../../include/enotify.php:46
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s sent you a new private message at %2$s."
 
-#: ../../include/features.php:48
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)"
+#: ../../include/enotify.php:47
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s stuurde jou %2$s."
 
-#: ../../include/features.php:49
-msgid "Network Shared Links Tab"
-msgstr ""
+#: ../../include/enotify.php:47
+msgid "a private message"
+msgstr "een prive bericht"
 
-#: ../../include/features.php:49
-msgid "Enable tab to display only Network posts with links in them"
-msgstr ""
+#: ../../include/enotify.php:48
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden."
 
-#: ../../include/features.php:54
-msgid "Post/Comment Tools"
-msgstr "Bericht-/reactiehulpmiddelen"
+#: ../../include/enotify.php:91
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s gaf een reactie op [url=%2$s]a %3$s[/url]"
 
-#: ../../include/features.php:55
-msgid "Multiple Deletion"
-msgstr "Meervoudige verwijdering"
+#: ../../include/enotify.php:98
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s gaf een reactie op [url=%2$s]%3$s's %4$s[/url]"
 
-#: ../../include/features.php:55
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Selecteer en verwijder meerdere berichten/reacties in een keer"
+#: ../../include/enotify.php:106
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s gaf een reactie op [url=%2$s]jouw %3$s[/url]"
 
-#: ../../include/features.php:56
-msgid "Edit Sent Posts"
-msgstr "Bewerk verzonden berichten"
+#: ../../include/enotify.php:116
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr ""
 
-#: ../../include/features.php:56
-msgid "Edit and correct posts and comments after sending"
-msgstr "Bewerk en corrigeer berichten en reacties na verzending"
+#: ../../include/enotify.php:117
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s gaf een reactie op een bericht/conversatie die jij volgt."
 
-#: ../../include/features.php:57
-msgid "Tagging"
-msgstr "Labelen"
+#: ../../include/enotify.php:120 ../../include/enotify.php:135
+#: ../../include/enotify.php:148 ../../include/enotify.php:161
+#: ../../include/enotify.php:179 ../../include/enotify.php:192
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Bezoek %s om de conversatie te bekijken en/of te beantwoorden."
 
-#: ../../include/features.php:57
-msgid "Ability to tag existing posts"
-msgstr "Mogelijkheid om bestaande berichten te labelen"
+#: ../../include/enotify.php:127
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr ""
 
-#: ../../include/features.php:58
-msgid "Post Categories"
-msgstr "Categorieën berichten"
+#: ../../include/enotify.php:129
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr ""
 
-#: ../../include/features.php:58
-msgid "Add categories to your posts"
-msgstr "Voeg categorieën toe aan je berichten"
+#: ../../include/enotify.php:131
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr ""
 
-#: ../../include/features.php:59
-msgid "Ability to file posts under folders"
-msgstr "Mogelijkheid om berichten in mappen te bewaren"
+#: ../../include/enotify.php:142
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notificatie] %s heeft jou genoemd"
 
-#: ../../include/features.php:60
-msgid "Dislike Posts"
-msgstr "Vind berichten niet leuk"
+#: ../../include/enotify.php:143
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s heeft jou in %2$s genoemd"
 
-#: ../../include/features.php:60
-msgid "Ability to dislike posts/comments"
-msgstr "Mogelijkheid om berichten of reacties niet leuk te vinden"
+#: ../../include/enotify.php:144
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]heeft jou genoemd[/url]."
 
-#: ../../include/features.php:61
-msgid "Star Posts"
-msgstr "Geef berichten een ster"
+#: ../../include/enotify.php:155
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr ""
 
-#: ../../include/features.php:61
-msgid "Ability to mark special posts with a star indicator"
+#: ../../include/enotify.php:156
+#, php-format
+msgid "%1$s shared a new post at %2$s"
 msgstr ""
 
-#: ../../include/diaspora.php:704
-msgid "Sharing notification from Diaspora network"
+#: ../../include/enotify.php:157
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
 msgstr ""
 
-#: ../../include/diaspora.php:2269
-msgid "Attachments:"
-msgstr "Bijlagen:"
+#: ../../include/enotify.php:169
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Notify] %1$s heeft jou aangestoten"
 
-#: ../../include/acl_selectors.php:325
-msgid "Visible to everybody"
-msgstr "Zichtbaar voor iedereen"
+#: ../../include/enotify.php:170
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s heeft jou aangestoten op %2$s"
 
-#: ../../include/items.php:3539
-msgid "A new person is sharing with you at "
+#: ../../include/enotify.php:171
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
 msgstr ""
 
-#: ../../include/items.php:3539
-msgid "You have a new follower at "
-msgstr "Je hebt een nieuwe volger op "
+#: ../../include/enotify.php:186
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notificatie] %s heeft jouw bericht gelabeld"
 
-#: ../../include/items.php:4062
-msgid "Do you really want to delete this item?"
-msgstr "Wil je echt dit item verwijderen?"
+#: ../../include/enotify.php:187
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s heeft jouw bericht gelabeld in %2$s"
 
-#: ../../include/items.php:4285
-msgid "Archives"
-msgstr "Archieven"
+#: ../../include/enotify.php:188
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s labelde [url=%2$s]jouw bericht[/url]"
 
-#: ../../include/oembed.php:140
-msgid "Embedded content"
-msgstr "Ingebedde inhoud"
+#: ../../include/enotify.php:199
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen"
 
-#: ../../include/oembed.php:149
-msgid "Embedding disabled"
-msgstr "Inbedden uitgeschakeld"
+#: ../../include/enotify.php:200
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1$s' om %2$s"
 
-#: ../../include/security.php:22
-msgid "Welcome "
-msgstr "Welkom"
+#: ../../include/enotify.php:201
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Je ontving [url=%1$s]een vriendschaps- of connectieverzoek[/url] van %2$s."
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Upload een profielfoto."
+#: ../../include/enotify.php:204 ../../include/enotify.php:222
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "U kunt hun profiel bezoeken op %s"
 
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "Welkom terug "
+#: ../../include/enotify.php:206
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Bezoek %s om het verzoek goed of af te keuren."
 
-#: ../../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."
+#: ../../include/enotify.php:213
+msgid "[Friendica:Notify] Friend suggestion received"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Man"
-
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Vrouw"
+#: ../../include/enotify.php:214
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Momenteel mannelijk"
+#: ../../include/enotify.php:215
+#, php-format
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Momenteel vrouwelijk"
+#: ../../include/enotify.php:220
+msgid "Name:"
+msgstr "Naam:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Meestal mannelijk"
+#: ../../include/enotify.php:221
+msgid "Photo:"
+msgstr "Foto: "
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Meestal vrouwelijk"
+#: ../../include/enotify.php:224
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgender"
+#: ../../include/user.php:39
+msgid "An invitation is required."
+msgstr "Een uitnodiging is vereist."
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Interseksueel"
+#: ../../include/user.php:44
+msgid "Invitation could not be verified."
+msgstr "Uitnodiging kon niet geverifieerd worden."
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transseksueel"
+#: ../../include/user.php:52
+msgid "Invalid OpenID url"
+msgstr "Ongeldige OpenID url"
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermafrodiet"
+#: ../../include/user.php:73
+msgid "Please enter the required information."
+msgstr "Vul de vereiste informatie in."
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Genderneutraal"
+#: ../../include/user.php:87
+msgid "Please use a shorter name."
+msgstr "gebruik een kortere naam"
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Niet-specifiek"
+#: ../../include/user.php:89
+msgid "Name too short."
+msgstr "Naam te kort"
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Anders"
+#: ../../include/user.php:104
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn."
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Onbeslist"
+#: ../../include/user.php:109
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Je e-maildomein is op deze website niet toegestaan."
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Manen"
+#: ../../include/user.php:112
+msgid "Not a valid email address."
+msgstr "Geen geldig e-mailadres."
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Vrouwen"
+#: ../../include/user.php:125
+msgid "Cannot use that email."
+msgstr "Ik kan die e-mail niet gebruiken."
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Homo"
+#: ../../include/user.php:131
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
+msgstr "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen."
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbie"
+#: ../../include/user.php:137 ../../include/user.php:235
+msgid "Nickname is already registered. Please choose another."
+msgstr "Bijnaam is al geregistreerd. Kies een andere."
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Geen voorkeur"
+#: ../../include/user.php:147
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere."
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Biseksueel"
+#: ../../include/user.php:163
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt."
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autoseksueel"
+#: ../../include/user.php:221
+msgid "An error occurred during registration. Please try again."
+msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Onthouder"
+#: ../../include/user.php:256
+msgid "An error occurred creating your default profile. Please try again."
+msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Maagd"
+#: ../../include/acl_selectors.php:326
+msgid "Visible to everybody"
+msgstr "Zichtbaar voor iedereen"
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Afwijkend"
+#: ../../include/bbcode.php:287 ../../include/bbcode.php:920
+#: ../../include/bbcode.php:921
+msgid "Image/photo"
+msgstr "Afbeelding/foto"
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
+#: ../../include/bbcode.php:357
+#, php-format
+msgid ""
+"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"_blank\">post</a>"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
+#: ../../include/bbcode.php:458
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Niet seksueel"
-
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Alleenstaand"
+#: ../../include/bbcode.php:884 ../../include/bbcode.php:904
+msgid "$1 wrote:"
+msgstr "$1 schreef:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Eenzaam"
+#: ../../include/bbcode.php:935 ../../include/bbcode.php:936
+msgid "Encrypted content"
+msgstr "Versleutelde inhoud"
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Beschikbaar"
+#: ../../include/oembed.php:174
+msgid "Embedded content"
+msgstr "Ingebedde inhoud"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Onbeschikbaar"
+#: ../../include/oembed.php:183
+msgid "Embedding disabled"
+msgstr "Inbedden uitgeschakeld"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "Verliefd"
+#: ../../include/group.php:25
+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 "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten <strong>kunnen</strong> voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. "
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Aan het daten"
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Iedereen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Ontrouw"
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "verander"
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Seksverslaafd"
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Verander groep"
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Vriendschap plus"
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Maak nieuwe groep"
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Verloofd"
-
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Getrouwd"
-
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
+#: ../../include/Contact.php:115
+msgid "stopped following"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partners"
+#: ../../include/Contact.php:234
+msgid "Drop Contact"
+msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "Samenwonend"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Diversen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr ""
+#: ../../include/datetime.php:153 ../../include/datetime.php:285
+msgid "year"
+msgstr "jaar"
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Blij"
+#: ../../include/datetime.php:158 ../../include/datetime.php:286
+msgid "month"
+msgstr "maand"
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr ""
+#: ../../include/datetime.php:163 ../../include/datetime.php:288
+msgid "day"
+msgstr "dag"
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "nooit"
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Bedrogen"
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "minder dan een seconde geleden"
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr ""
+#: ../../include/datetime.php:285
+msgid "years"
+msgstr "jaren"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Onstabiel"
+#: ../../include/datetime.php:286
+msgid "months"
+msgstr "maanden"
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Gescheiden"
+#: ../../include/datetime.php:287
+msgid "week"
+msgstr "week"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr ""
+#: ../../include/datetime.php:287
+msgid "weeks"
+msgstr "weken"
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr ""
+#: ../../include/datetime.php:288
+msgid "days"
+msgstr "dagen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Onzeker"
+#: ../../include/datetime.php:289
+msgid "hour"
+msgstr "uur"
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "Het is gecompliceerd"
+#: ../../include/datetime.php:289
+msgid "hours"
+msgstr "uren"
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Kan me niet schelen"
+#: ../../include/datetime.php:290
+msgid "minute"
+msgstr "minuut"
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Vraag me"
+#: ../../include/datetime.php:290
+msgid "minutes"
+msgstr "minuten"
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr ""
+#: ../../include/datetime.php:291
+msgid "second"
+msgstr "seconde"
 
-#: ../../include/Contact.php:234
-msgid "Drop Contact"
-msgstr ""
+#: ../../include/datetime.php:291
+msgid "seconds"
+msgstr "secondes"
 
-#: ../../include/dba.php:44
+#: ../../include/datetime.php:300
 #, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr ""
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s geleden"
+
+#: ../../include/network.php:886
+msgid "view full size"
+msgstr "Volledig formaat"
index 2b757898539c45e77504fd0216dd79601bfb8b20..4f6e5476b065f7f411348520a70fe6b637aef16e 100644 (file)
@@ -52,346 +52,132 @@ $a->strings["Image"] = "Afbeelding";
 $a->strings["Link"] = "Link";
 $a->strings["Video"] = "Video";
 $a->strings["Preview"] = "Voorvertoning";
-$a->strings["You must be logged in to use addons. "] = "";
+$a->strings["You must be logged in to use addons. "] = "Je moet ingelogd zijn om deze addons te kunnen gebruiken. ";
 $a->strings["Not Found"] = "Niet gevonden";
 $a->strings["Page not found."] = "Pagina niet gevonden";
 $a->strings["Permission denied"] = "Toegang geweigerd";
 $a->strings["Permission denied."] = "Toegang geweigerd";
 $a->strings["toggle mobile"] = "mobiel thema omwisselen";
-$a->strings["Home"] = "Tijdlijn";
-$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties";
-$a->strings["Profile"] = "Profiel";
-$a->strings["Your profile page"] = "Jouw profiel pagina";
-$a->strings["Photos"] = "Foto's";
-$a->strings["Your photos"] = "Jouw foto's";
-$a->strings["Events"] = "Gebeurtenissen";
-$a->strings["Your events"] = "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen.";
-$a->strings["Personal notes"] = "Persoonlijke nota's";
-$a->strings["Your personal photos"] = "Jouw persoonlijke foto's";
-$a->strings["Community"] = "Gemeenschap";
-$a->strings["don't show"] = "Niet tonen";
-$a->strings["show"] = "tonen";
-$a->strings["Theme settings"] = "Thema instellingen";
-$a->strings["Set font-size for posts and comments"] = "Stel lettergrootte voor berichten en reacties in";
-$a->strings["Set line-height for posts and comments"] = "";
-$a->strings["Set resolution for middle column"] = "";
-$a->strings["Contacts"] = "Contacten";
-$a->strings["Your contacts"] = "Jouw contacten";
-$a->strings["Community Pages"] = "Gemeenschapspagina's";
-$a->strings["Community Profiles"] = "Gemeenschapsprofielen";
-$a->strings["Last users"] = "Laatste gebruikers";
-$a->strings["Last likes"] = "Recent leuk gevonden";
-$a->strings["event"] = "gebeurtenis";
-$a->strings["status"] = "Status";
-$a->strings["photo"] = "Foto";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vind %3\$s van %2\$s leuk";
-$a->strings["Last photos"] = "Laatste foto's";
-$a->strings["Contact Photos"] = "Contactfoto's";
-$a->strings["Profile Photos"] = "Profielfoto's";
-$a->strings["Find Friends"] = "Zoek vrienden";
-$a->strings["Local Directory"] = "Lokale gids";
-$a->strings["Global Directory"] = "Globale gids";
-$a->strings["Similar Interests"] = "Dezelfde interesses";
-$a->strings["Friend Suggestions"] = "Vriendschapsvoorstellen";
-$a->strings["Invite Friends"] = "Vrienden uitnodigen";
-$a->strings["Settings"] = "Instellingen";
-$a->strings["Earth Layers"] = "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"] = "Diensten verbinden";
-$a->strings["Show/hide boxes at right-hand column:"] = "";
-$a->strings["Set color scheme"] = "Stel kleurenschema in";
-$a->strings["Set zoomfactor for Earth Layer"] = "";
-$a->strings["Alignment"] = "Uitlijning";
-$a->strings["Left"] = "Links";
-$a->strings["Center"] = "Gecentreerd";
-$a->strings["Color scheme"] = "Kleurschema";
-$a->strings["Posts font size"] = "Lettergrootte berichten";
-$a->strings["Textareas font size"] = "Lettergrootte tekstgebieden";
-$a->strings["Set colour scheme"] = "Stel kleurschema in";
-$a->strings["default"] = "standaard";
-$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"] = "Stel breedte van het thema in";
-$a->strings["Delete this item?"] = "Dit item verwijderen?";
-$a->strings["show fewer"] = "Minder tonen";
-$a->strings["Update %s failed. See error logs."] = "Wijziging %s mislukt. Lees de error logbestanden.";
-$a->strings["Update Error at %s"] = "Wijzigingsfout op %s";
-$a->strings["Create a New Account"] = "Nieuw account aanmaken";
-$a->strings["Register"] = "Registreer";
-$a->strings["Logout"] = "Uitloggen";
-$a->strings["Login"] = "Login";
-$a->strings["Nickname or Email address: "] = "Bijnaam of e-mailadres:";
-$a->strings["Password: "] = "Wachtwoord:";
-$a->strings["Remember me"] = "Onthou me";
-$a->strings["Or login using OpenID: "] = "Of log in met OpenID:";
-$a->strings["Forgot your password?"] = "Wachtwoord vergeten?";
-$a->strings["Password Reset"] = "Wachtwoord opnieuw instellen";
-$a->strings["Website Terms of Service"] = "Gebruikersvoorwaarden website";
-$a->strings["terms of service"] = "servicevoorwaarden";
-$a->strings["Website Privacy Policy"] = "Privacybeleid website";
-$a->strings["privacy policy"] = "privacybeleid";
-$a->strings["Requested account is not available."] = "Gevraagde account is niet beschikbaar.";
-$a->strings["Requested profile is not available."] = "Gevraagde profiel is niet beschikbaar.";
-$a->strings["Edit profile"] = "Bewerk profiel";
-$a->strings["Connect"] = "Verbinden";
-$a->strings["Message"] = "Bericht";
-$a->strings["Profiles"] = "Profielen";
-$a->strings["Manage/edit profiles"] = "Beheer/wijzig profielen";
-$a->strings["Change profile photo"] = "Profiel foto wijzigen";
-$a->strings["Create New Profile"] = "Maak nieuw profiel";
-$a->strings["Profile Image"] = "Profiel afbeelding";
-$a->strings["visible to everybody"] = "zichtbaar voor iedereen";
-$a->strings["Edit visibility"] = "Pas zichtbaarheid aan";
-$a->strings["Location:"] = "Plaats:";
-$a->strings["Gender:"] = "Geslacht:";
-$a->strings["Status:"] = "Tijdlijn:";
-$a->strings["Homepage:"] = "Jouw tijdlijn:";
-$a->strings["g A l F d"] = "G l j F";
-$a->strings["F d"] = "d F";
-$a->strings["[today]"] = "[vandaag]";
-$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen";
-$a->strings["Birthdays this week:"] = "Verjaardagen deze week:";
-$a->strings["[No description]"] = "[Geen beschrijving]";
-$a->strings["Event Reminders"] = "Gebeurtenisherinneringen";
-$a->strings["Events this week:"] = "Gebeurtenissen deze week:";
-$a->strings["Status"] = "Tijdlijn";
-$a->strings["Status Messages and Posts"] = "Berichten op jouw tijdlijn";
-$a->strings["Profile Details"] = "Profiel Details";
-$a->strings["Photo Albums"] = "Fotoalbums";
-$a->strings["Videos"] = "Video's";
-$a->strings["Events and Calendar"] = "Gebeurtenissen en kalender";
-$a->strings["Personal Notes"] = "Persoonlijke Nota's";
-$a->strings["Only You Can See This"] = "Alleen jij kunt dit zien";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s is op dit moment %2\$s";
-$a->strings["Mood"] = "Stemming";
-$a->strings["Set your current mood and tell your friends"] = "Stel je huidige stemming in, en vertel het je vrienden";
-$a->strings["Public access denied."] = "Niet vrij toegankelijk";
-$a->strings["Item not found."] = "Item niet gevonden.";
-$a->strings["Access to this profile has been restricted."] = "Toegang tot dit profiel is beperkt.";
-$a->strings["Item has been removed."] = "Item is verwijderd.";
-$a->strings["Access denied."] = "Toegang geweigerd";
-$a->strings["This is Friendica, version"] = "Dit is Friendica, versie";
-$a->strings["running at web location"] = "draaiend op web-adres";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bezoek <a href=\"http://friendica.com\">Friendica.com</a> om meer te leren over het Friendica project.";
-$a->strings["Bug reports and issues: please visit"] = "Bug rapporten en problemen: bezoek";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com";
-$a->strings["Installed plugins/addons/apps:"] = "Geïnstalleerde plugins/toepassingen:";
-$a->strings["No installed plugins/addons/apps"] = "Geen plugins of toepassingen geïnstalleerd";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heet %2\$s van harte welkom";
-$a->strings["Registration details for %s"] = "Registratie details voor %s";
-$a->strings["Registration successful. Please check your email for further instructions."] = "Registratie geslaagd. Kijk je e-mail na voor verdere instructies.";
-$a->strings["Failed to send email message. Here is the message that failed."] = "E-mail bericht kon niet verstuurd worden. Hier is het bericht.";
-$a->strings["Your registration can not be processed."] = "Je registratie kan niet verwerkt worden.";
-$a->strings["Registration request at %s"] = "Registratieverzoek op %s";
-$a->strings["Your registration is pending approval by the site owner."] = "Je registratie wacht op goedkeuring van de beheerder.";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen a.u.b. opnieuw.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken.";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in.";
-$a->strings["Your OpenID (optional): "] = "Je OpenID (optioneel):";
-$a->strings["Include your profile in member directory?"] = "Je profiel in de ledengids opnemen?";
-$a->strings["Yes"] = "Ja";
-$a->strings["No"] = "Nee";
-$a->strings["Membership on this site is by invitation only."] = "Lidmaatschap van deze website is uitsluitend op uitnodiging.";
-$a->strings["Your invitation ID: "] = "Je uitnodigingsid:";
-$a->strings["Registration"] = "Registratie";
-$a->strings["Your Full Name (e.g. Joe Smith): "] = "Je volledige naam (bijv. Jan Jansens):";
-$a->strings["Your Email Address: "] = "Je email adres:";
-$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>'."] = "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan '<strong>bijnaam@\$sitename</strong>' zijn.";
-$a->strings["Choose a nickname: "] = "Kies een bijnaam:";
-$a->strings["Import"] = "Importeren";
-$a->strings["Import your profile to this friendica instance"] = "";
-$a->strings["Profile not found."] = "Profiel niet gevonden";
+$a->strings["[Embedded content - reload page to view]"] = "[Ingebedde inhoud - herlaad pagina om het te bekijken]";
 $a->strings["Contact not found."] = "Contact niet gevonden";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd.";
-$a->strings["Response from remote site was not understood."] = "Antwoord van de website op afstand werd niet begrepen.";
-$a->strings["Unexpected response from remote site: "] = "Onverwacht antwoord van website op afstand:";
-$a->strings["Confirmation completed successfully."] = "Bevestiging werd correct voltooid.";
-$a->strings["Remote site reported: "] = "Website op afstand berichtte: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Tijdelijke fout. Wacht even en probeer opnieuw.";
-$a->strings["Introduction failed or was revoked."] = "Verzoek mislukt of herroepen.";
-$a->strings["Unable to set contact photo."] = "Ik kan geen contact foto instellen.";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s is nu bevriend met %2\$s";
-$a->strings["No user record found for '%s' "] = "Geen gebruiker gevonden voor '%s'";
-$a->strings["Our site encryption key is apparently messed up."] = "De encryptie-sleutel van onze webstek is blijkbaar beschadigd.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons.";
-$a->strings["Contact record was not found for you on our site."] = "We vonden op onze webstek geen contactrecord voor jou.";
-$a->strings["Site public key not available in contact record for URL %s."] = "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s.";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken.";
-$a->strings["Unable to set your contact credentials on our system."] = "Niet in staat om op dit systeem je contactreferenties in te stellen.";
-$a->strings["Unable to update your contact profile details on our system"] = "";
-$a->strings["Connection accepted at %s"] = "Uw connectie werd geaccepteerd op %s";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s is toegetreden tot %2\$s";
-$a->strings["Authorize application connection"] = "";
-$a->strings["Return to your app and insert this Securty Code:"] = "";
-$a->strings["Please login to continue."] = "Log in om verder te gaan.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?";
-$a->strings["No valid account found."] = "Geen geldige account gevonden.";
-$a->strings["Password reset request issued. Check your email."] = "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na.";
-$a->strings["Password reset requested at %s"] = "Op %s werd gevraagd je wachtwoord opnieuw in te stellen";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld.";
-$a->strings["Your password has been reset as requested."] = "Je wachtwoord is opnieuw ingesteld zoals gevraagd.";
-$a->strings["Your new password is"] = "Je nieuwe wachtwoord is";
-$a->strings["Save or copy your new password - and then"] = "Bewaar of kopieer je nieuw wachtwoord - en dan";
-$a->strings["click here to login"] = "klik hier om in te loggen";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de <em>Instellingen></em> pagina.";
-$a->strings["Your password has been changed at %s"] = "Je wachtwoord is veranderd op %s";
-$a->strings["Forgot your Password?"] = "Wachtwoord vergeten?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies.";
-$a->strings["Nickname or Email: "] = "Bijnaam of e-mail:";
-$a->strings["Reset"] = "Opnieuw";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "";
-$a->strings["No recipient selected."] = "Geen ontvanger geselecteerd.";
-$a->strings["Unable to check your home location."] = "Niet in staat om je tijdlijn-locatie vast te stellen";
-$a->strings["Message could not be sent."] = "Bericht kon niet verzonden worden.";
-$a->strings["Message collection failure."] = "Fout bij het verzamelen van berichten.";
-$a->strings["Message sent."] = "Bericht verzonden.";
-$a->strings["No recipient."] = "Geen ontvanger.";
-$a->strings["Please enter a link URL:"] = "Vul een internetadres/URL in:";
-$a->strings["Send Private Message"] = "Verstuur privébericht";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat.";
-$a->strings["To:"] = "Aan:";
-$a->strings["Subject:"] = "Onderwerp:";
-$a->strings["Your message:"] = "Jouw bericht:";
-$a->strings["Upload photo"] = "Foto uploaden";
-$a->strings["Insert web link"] = "Voeg een webadres in";
-$a->strings["Welcome to Friendica"] = "Welkom bij Friendica";
-$a->strings["New Member Checklist"] = "Checklist voor nieuwe leden";
-$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."] = "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen.";
-$a->strings["Getting Started"] = "Aan de slag";
-$a->strings["Friendica Walk-Through"] = "Doorloop Friendica";
-$a->strings["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."] = "Op je <em>Snelstart</em> pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden.";
-$a->strings["Go to Your Settings"] = "Ga naar je instellingen";
-$a->strings["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."] = "Verander je initieel wachtwoord op je <em>instellingenpagina</em>. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale web.";
-$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden.";
-$a->strings["Upload Profile Photo"] = "Profielfoto uploaden";
-$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Upload een profielfoto, als je dat nog niet gedaan hebt. Studies tonen aan dat mensen met echte foto's van zichzelf tien keer gemakkelijker vrienden maken dan mensen die dat niet doen.";
-$a->strings["Edit Your Profile"] = "Bewerk je profiel";
-$a->strings["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."] = "Bewerk je <strong>standaard</strong> profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen.";
-$a->strings["Profile Keywords"] = "Sleutelwoorden voor dit profiel";
-$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."] = "Stel enkele openbare sleutelwoorden in voor je standaard profiel die je interesses beschrijven. We kunnen dan misschien mensen vinden met gelijkaardige interesses, en vrienden voorstellen.";
-$a->strings["Connecting"] = "Verbinding aan het maken";
-$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."] = "Machtig de Facebook Connector als je een Facebook account hebt. We zullen (optioneel) al je Facebook vrienden en conversaties importeren.";
-$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Als</em> dit jouw eigen persoonlijke server is kan het installeren van de Facebook toevoeging je overgang naar het vrije sociale web vergemakkelijken.";
-$a->strings["Importing Emails"] = "E-mails importeren";
-$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Vul je e-mailtoegangsinformatie in op je pagina met verbindingsinstellingen als je vrienden of mailinglijsten uit je e-mail-inbox wilt importeren, en met hen wilt communiceren";
-$a->strings["Go to Your Contacts Page"] = "Ga naar je contactenpagina";
-$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de <em>Voeg nieuw contact toe</em> dialoog.";
-$a->strings["Go to Your Site's Directory"] = "Ga naar de gids van je website";
-$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."] = "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord <em>Connect</em> of <em>Follow</em> op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd.";
-$a->strings["Finding New People"] = "Nieuwe mensen vinden";
-$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."] = "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden.";
-$a->strings["Groups"] = "Groepen";
-$a->strings["Group Your Contacts"] = "Groepeer je contacten";
-$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."] = "Als je een aantal vrienden gemaakt hebt kun je ze in je eigen conversatiegroepen indelen vanuit de zijbalk van je 'Conacten' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. ";
-$a->strings["Why Aren't My Posts Public?"] = "Waarom zijn mijn berichten niet openbaar?";
-$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie.";
-$a->strings["Getting Help"] = "Hulp krijgen";
-$a->strings["Go to the Help Section"] = "Ga naar de help";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Je kunt onze <strong>help</strong> pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma.";
-$a->strings["Do you really want to delete this suggestion?"] = "Wil je echt dit voorstel verwijderen?";
-$a->strings["Cancel"] = "Annuleren";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen.";
-$a->strings["Ignore/Hide"] = "Negeren/Verbergen";
-$a->strings["Search Results For:"] = "Zoekresultaten voor:";
-$a->strings["Remove term"] = "Verwijder zoekterm";
-$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten";
-$a->strings["add"] = "toevoegen";
-$a->strings["Commented Order"] = "Nieuwe reacties bovenaan";
-$a->strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan";
-$a->strings["Posted Order"] = "Nieuwe berichten bovenaan";
-$a->strings["Sort by Post Date"] = "Nieuwe berichten bovenaan";
-$a->strings["Personal"] = "Persoonlijk";
-$a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of op jou betrekking hebben";
-$a->strings["New"] = "Nieuw";
-$a->strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum";
-$a->strings["Shared Links"] = "Gedeelde links";
-$a->strings["Interesting Links"] = "Interessante links";
-$a->strings["Starred"] = "Met ster";
-$a->strings["Favourite Posts"] = "Favoriete berichten";
-$a->strings["Warning: This group contains %s member from an insecure network."] = array(
-       0 => "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk.",
-       1 => "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk.",
+$a->strings["Friend suggestion sent."] = "Vriendschapsvoorstel verzonden.";
+$a->strings["Suggest Friends"] = "Stel vrienden voor";
+$a->strings["Suggest a friend for %s"] = "Stel een vriend voor aan %s";
+$a->strings["This introduction has already been accepted."] = "Verzoek is al goedgekeurd";
+$a->strings["Profile location is not valid or does not contain profile information."] = "Profiel is ongeldig of bevat geen informatie";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar.";
+$a->strings["Warning: profile location has no profile photo."] = "Waarschuwing: Profieladres heeft geen profielfoto.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "De %d vereiste parameter is niet op het gegeven adres gevonden",
+       1 => "De %d vereiste parameters zijn niet op het gegeven adres gevonden",
 );
-$a->strings["Private messages to this group are at risk of public disclosure."] = "Privéberichten naar deze groep kunnen openbaar gemaakt worden.";
-$a->strings["No such group"] = "Zo'n groep bestaat niet";
-$a->strings["Group is empty"] = "De groep is leeg";
-$a->strings["Group: "] = "Groep:";
-$a->strings["Contact: "] = "Contact: ";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Privéberichten naar deze persoon kunnen openbaar gemaakt worden.";
-$a->strings["Invalid contact."] = "Ongeldig contact.";
-$a->strings["Friendica Communications Server - Setup"] = "";
-$a->strings["Could not connect to database."] = "Kon geen toegang krijgen tot de database.";
-$a->strings["Could not create table."] = "Kon tabel niet aanmaken.";
-$a->strings["Your Friendica site database has been installed."] = "De database van je Friendica-website is geïnstalleerd.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Zie het bestand \"INSTALL.txt\".";
-$a->strings["System check"] = "Systeemcontrole";
-$a->strings["Next"] = "Volgende";
-$a->strings["Check again"] = "Controleer opnieuw";
-$a->strings["Database connection"] = "Verbinding met database";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. ";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat.";
-$a->strings["Database Server Name"] = "Servernaam database";
-$a->strings["Database Login Name"] = "Gebruikersnaam database";
-$a->strings["Database Login Password"] = "Wachtwoord database";
-$a->strings["Database Name"] = "Naam database";
-$a->strings["Site administrator email address"] = "E-mailadres van de websitebeheerder";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken.";
-$a->strings["Please select a default timezone for your website"] = "Selecteer een standaard tijdzone voor uw website";
-$a->strings["Site settings"] = "Website-instellingen";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Kan geen command-line-versie van PHP vinden in het PATH van de webserver.";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Als je geen command-line versie van PHP geïnstalleerd hebt op je server, kun je geen polling op de achtergrond gebruiken via cron. Zie  <a href='http://friendica.com/node/27'>'Activeren van geplande taken'</a>";
-$a->strings["PHP executable path"] = "PATH van het PHP commando";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten.";
-$a->strings["Command line PHP"] = "PHP-opdrachtregel";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "";
-$a->strings["Found PHP version: "] = "Gevonden PHP versie:";
-$a->strings["PHP cli binary"] = "";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd.";
-$a->strings["This is required for message delivery to work."] = "Dit is nodig om het verzenden van berichten mogelijk te maken.";
-$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait.";
-$a->strings["Generate encryption keys"] = "";
-$a->strings["libCurl PHP module"] = "libCurl PHP module";
-$a->strings["GD graphics PHP module"] = "GD graphics PHP module";
-$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module";
-$a->strings["mysqli PHP module"] = "mysqli PHP module";
-$a->strings["mb_string PHP module"] = "mb_string PHP module";
-$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd.";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen.";
-$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel.";
-$a->strings["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."] = "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies.";
-$a->strings[".htconfig.php is writable"] = ".htconfig.php is schrijfbaar";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen.";
-$a->strings["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."] = "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Zorg er a.u.b. voor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map.";
-$a->strings["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."] = "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 is schrijfbaar";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
-$a->strings["Url rewrite is working"] = "";
-$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver.";
-$a->strings["Errors encountered creating database tables."] = "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld.";
-$a->strings["<h1>What next</h1>"] = "<h1>Wat nu</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller.";
-$a->strings["Theme settings updated."] = "Thema instellingen aangepast.";
+$a->strings["Introduction complete."] = "Verzoek voltooid.";
+$a->strings["Unrecoverable protocol error."] = "Onherstelbare protocolfout. ";
+$a->strings["Profile unavailable."] = "Profiel onbeschikbaar";
+$a->strings["%s has received too many connection requests today."] = "%s heeft te veel verzoeken gehad vandaag.";
+$a->strings["Spam protection measures have been invoked."] = "Beveiligingsmaatregelen tegen spam zijn in werking getreden.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Wij adviseren vrienden om het over 24 uur nog een keer te proberen.";
+$a->strings["Invalid locator"] = "Ongeldige plaatsbepaler";
+$a->strings["Invalid email address."] = "Geen geldig e-mailadres";
+$a->strings["This account has not been configured for email. Request failed."] = "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail.";
+$a->strings["Unable to resolve your name at the provided location."] = "Ik kan jouw naam op het opgegeven adres niet vinden.";
+$a->strings["You have already introduced yourself here."] = "Je hebt jezelf hier al voorgesteld.";
+$a->strings["Apparently you are already friends with %s."] = "Blijkbaar bent u al bevriend met %s.";
+$a->strings["Invalid profile URL."] = "Ongeldig profiel adres.";
+$a->strings["Disallowed profile URL."] = "Niet toegelaten profiel adres.";
+$a->strings["Failed to update contact record."] = "Ik kon de contactgegevens niet aanpassen.";
+$a->strings["Your introduction has been sent."] = "Je verzoek is verzonden.";
+$a->strings["Please login to confirm introduction."] = "Log in om je verzoek te bevestigen.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Je huidige identiteit is niet de juiste. Log met <strong>dit</strong> profiel in.";
+$a->strings["Hide this contact"] = "Verberg dit contact";
+$a->strings["Welcome home %s."] = "Welkom terug %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Bevestig je vriendschaps-/connectieverzoek voor %s.";
+$a->strings["Confirm"] = "Bevestig";
+$a->strings["[Name Withheld]"] = "[Naam achtergehouden]";
+$a->strings["Public access denied."] = "Niet vrij toegankelijk";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:";
+$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Sluit aan als e-mail volger</strike> (Binnenkort)";
+$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>."] = "Als je nog geen lid bent van het vrije sociale web,  <a href=\"http://dir.friendica.com/siteinfo\">volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan</a>.";
+$a->strings["Friend/Connection Request"] = "Vriendschaps-/connectieverzoek";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Beantwoord het volgende:";
+$a->strings["Does %s know you?"] = "Kent %s jou?";
+$a->strings["Yes"] = "Ja";
+$a->strings["No"] = "Nee";
+$a->strings["Add a personal note:"] = "Voeg een persoonlijke opmerking toe:";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Gefedereerde Sociale Web";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = "- Gebruik niet dit formulier. Vul %s in in je Diaspora zoekbalk.";
+$a->strings["Your Identity Address:"] = "Adres van uw identiteit:";
+$a->strings["Submit Request"] = "Aanvraag indienen";
+$a->strings["Cancel"] = "Annuleren";
+$a->strings["View Video"] = "Bekijk Video";
+$a->strings["Requested profile is not available."] = "Gevraagde profiel is niet beschikbaar.";
+$a->strings["Access to this profile has been restricted."] = "Toegang tot dit profiel is beperkt.";
+$a->strings["Tips for New Members"] = "Tips voor nieuwe leden";
+$a->strings["Invalid request identifier."] = "Ongeldige <em>request identifier</em>.";
+$a->strings["Discard"] = "Verwerpen";
+$a->strings["Ignore"] = "Negeren";
+$a->strings["System"] = "Systeem";
+$a->strings["Network"] = "Netwerk";
+$a->strings["Personal"] = "Persoonlijk";
+$a->strings["Home"] = "Tijdlijn";
+$a->strings["Introductions"] = "Verzoeken";
+$a->strings["Messages"] = "Privéberichten";
+$a->strings["Show Ignored Requests"] = "Toon genegeerde verzoeken";
+$a->strings["Hide Ignored Requests"] = "Verberg genegeerde verzoeken";
+$a->strings["Notification type: "] = "Notificatiesoort:";
+$a->strings["Friend Suggestion"] = "Vriendschapsvoorstel";
+$a->strings["suggested by %s"] = "Voorgesteld door %s";
+$a->strings["Hide this contact from others"] = "Verberg dit contact voor anderen";
+$a->strings["Post a new friend activity"] = "Bericht over een nieuwe vriend";
+$a->strings["if applicable"] = "Indien toepasbaar";
+$a->strings["Approve"] = "Goedkeuren";
+$a->strings["Claims to be known to you: "] = "Denkt dat u hem of haar kent:";
+$a->strings["yes"] = "Ja";
+$a->strings["no"] = "Nee";
+$a->strings["Approve as: "] = "Goedkeuren als:";
+$a->strings["Friend"] = "Vriend";
+$a->strings["Sharer"] = "Deler";
+$a->strings["Fan/Admirer"] = "Fan/Bewonderaar";
+$a->strings["Friend/Connect Request"] = "Vriendschapsverzoek";
+$a->strings["New Follower"] = "Nieuwe Volger";
+$a->strings["No introductions."] = "Geen vriendschaps- of connectieverzoeken.";
+$a->strings["Notifications"] = "Notificaties";
+$a->strings["%s liked %s's post"] = "%s vond het bericht van %s leuk";
+$a->strings["%s disliked %s's post"] = "%s vond het bericht van %s niet leuk";
+$a->strings["%s is now friends with %s"] = "%s is nu bevriend met %s";
+$a->strings["%s created a new post"] = "%s schreef een nieuw bericht";
+$a->strings["%s commented on %s's post"] = "%s gaf een reactie op het bericht van %s";
+$a->strings["No more network notifications."] = "Geen netwerknotificaties meer";
+$a->strings["Network Notifications"] = "Netwerknotificaties";
+$a->strings["No more system notifications."] = "Geen systeemnotificaties meer.";
+$a->strings["System Notifications"] = "Systeemnotificaties";
+$a->strings["No more personal notifications."] = "Geen persoonlijke notificaties meer";
+$a->strings["Personal Notifications"] = "Persoonlijke notificaties";
+$a->strings["No more home notifications."] = "Geen tijdlijn-notificaties meer";
+$a->strings["Home Notifications"] = "Tijdlijn-notificaties";
+$a->strings["photo"] = "foto";
+$a->strings["status"] = "status";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vind %3\$s van %2\$s leuk";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vind %3\$s van %2\$s niet leuk";
+$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol fout. Geen ID Gevonden.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website.";
+$a->strings["Login failed."] = "Login mislukt.";
+$a->strings["Source (bbcode) text:"] = "Bron (bbcode) tekst:";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Bron (Diaspora) tekst om naar BBCode om te zetten:";
+$a->strings["Source input: "] = "Bron ingave:";
+$a->strings["bb2html (raw HTML): "] = "bb2html (ruwe 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): "] = "Bron ingave (Diaspora formaat):";
+$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["Theme settings updated."] = "Thema-instellingen aangepast.";
 $a->strings["Site"] = "Website";
 $a->strings["Users"] = "Gebruiker";
 $a->strings["Plugins"] = "Plugins";
@@ -401,6 +187,7 @@ $a->strings["Logs"] = "Logs";
 $a->strings["Admin"] = "Beheer";
 $a->strings["Plugin Features"] = "Plugin Functies";
 $a->strings["User registrations waiting for confirmation"] = "Gebruikersregistraties wachten op bevestiging";
+$a->strings["Item not found."] = "Item niet gevonden.";
 $a->strings["Normal Account"] = "Normale Account";
 $a->strings["Soapbox Account"] = "Zeepkist Account";
 $a->strings["Community/Celebrity Account"] = "Gemeenschap/Beroemdheid Account";
@@ -418,6 +205,7 @@ $a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] =
 $a->strings["Site settings updated."] = "Site instellingen gewijzigd.";
 $a->strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten";
 $a->strings["Never"] = "Nooit";
+$a->strings["At post arrival"] = "";
 $a->strings["Frequently"] = "Frequent";
 $a->strings["Hourly"] = "elk uur";
 $a->strings["Twice daily"] = "Twee keer per dag";
@@ -430,6 +218,7 @@ $a->strings["No SSL policy, links will track page SSL state"] = "Geen SSL beleid
 $a->strings["Force all links to use SSL"] = "Verplicht alle links om SSL te gebruiken";
 $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)";
 $a->strings["Save Settings"] = "";
+$a->strings["Registration"] = "Registratie";
 $a->strings["File upload"] = "Uploaden bestand";
 $a->strings["Policies"] = "Beleid";
 $a->strings["Advanced"] = "Geavanceerd";
@@ -478,7 +267,7 @@ $a->strings["URL to update the global directory. If this is not set, the global
 $a->strings["Allow threaded items"] = "Sta threads in conversaties toe";
 $a->strings["Allow infinite level threading for items on this site."] = "Sta oneindige niveaus threads in conversaties op deze website toe.";
 $a->strings["Private posts by default for new users"] = "Privéberichten als standaard voor nieuwe gebruikers";
-$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Stel de standaard rechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar.";
+$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Stel de standaardrechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar.";
 $a->strings["Don't include post content in email notifications"] = "De inhoud van het bericht niet insluiten bij e-mailnotificaties";
 $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."] = "De inhoud van berichten/commentaar/privéberichten/enzovoort  niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy.";
 $a->strings["Disallow public access to addons listed in the apps menu."] = "";
@@ -498,7 +287,7 @@ $a->strings["Use PHP UTF8 regular expressions"] = "Gebruik PHP UTF8 reguliere ui
 $a->strings["Show Community Page"] = "Toon Gemeenschapspagina";
 $a->strings["Display a Community page showing all recent public postings on this site."] = "Toon een gemeenschapspagina die alle recente openbare berichten op deze website toont.";
 $a->strings["Enable OStatus support"] = "Activeer OStatus ondersteuning";
-$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."] = "Bied ingebouwde Ostatus (identi.ca, status.net, enz.) ondersteuning. Alle communicaties in Ostatus zijn openbaar, dus zullen af en toe privacy waarschuwingen getoond worden.";
+$a->strings["Provide built-in OStatus (StatusNet, GNU Social 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"] = "Activeer Diaspora ondersteuning";
@@ -538,6 +327,7 @@ $a->strings["Failed Updates"] = "Misluke wijzigingen";
 $a->strings["This does not include updates prior to 1139, which did not return a status."] = "Dit is zonder de wijzigingen voor 1139, welke geen status teruggaven.";
 $a->strings["Mark success (if update was manually applied)"] = "Markeren als succes (als aanpassing manueel doorgevoerd werd)";
 $a->strings["Attempt to execute this update step automatically"] = "Probeer deze stap automatisch uit te voeren";
+$a->strings["Registration details for %s"] = "Registratie details voor %s";
 $a->strings["Registration successful. Email send to user"] = "";
 $a->strings["%s user blocked/unblocked"] = array(
        0 => "%s gebruiker geblokkeerd/niet geblokkeerd",
@@ -558,7 +348,6 @@ $a->strings["Request date"] = "Registratiedatum";
 $a->strings["Name"] = "Naam";
 $a->strings["Email"] = "E-mail";
 $a->strings["No registrations."] = "Geen registraties.";
-$a->strings["Approve"] = "Goedkeuren";
 $a->strings["Deny"] = "Weiger";
 $a->strings["Block"] = "Blokkeren";
 $a->strings["Unblock"] = "Blokkering opheffen";
@@ -581,6 +370,7 @@ $a->strings["Plugin %s enabled."] = "Plugin %s ingeschakeld.";
 $a->strings["Disable"] = "Uitschakelen";
 $a->strings["Enable"] = "Inschakelen";
 $a->strings["Toggle"] = "Schakelaar";
+$a->strings["Settings"] = "Instellingen";
 $a->strings["Author: "] = "Auteur:";
 $a->strings["Maintainer: "] = "Onderhoud:";
 $a->strings["No themes found."] = "Geen thema's gevonden.";
@@ -599,11 +389,36 @@ $a->strings["FTP Host"] = "FTP Server";
 $a->strings["FTP Path"] = "FTP Pad";
 $a->strings["FTP User"] = "FTP Gebruiker";
 $a->strings["FTP Password"] = "FTP wachtwoord";
-$a->strings["Search"] = "Zoeken";
-$a->strings["No results."] = "Geen resultaten.";
-$a->strings["Tips for New Members"] = "Tips voor nieuwe leden";
-$a->strings["link"] = "link";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s labelde %3\$s van %2\$s met %4\$s";
+$a->strings["New Message"] = "Nieuw Bericht";
+$a->strings["No recipient selected."] = "Geen ontvanger geselecteerd.";
+$a->strings["Unable to locate contact information."] = "Ik kan geen contact informatie vinden.";
+$a->strings["Message could not be sent."] = "Bericht kon niet verzonden worden.";
+$a->strings["Message collection failure."] = "Fout bij het verzamelen van berichten.";
+$a->strings["Message sent."] = "Bericht verzonden.";
+$a->strings["Do you really want to delete this message?"] = "Wil je echt dit bericht verwijderen?";
+$a->strings["Message deleted."] = "Bericht verwijderd.";
+$a->strings["Conversation removed."] = "Gesprek verwijderd.";
+$a->strings["Please enter a link URL:"] = "Vul een internetadres/URL in:";
+$a->strings["Send Private Message"] = "Verstuur privébericht";
+$a->strings["To:"] = "Aan:";
+$a->strings["Subject:"] = "Onderwerp:";
+$a->strings["Your message:"] = "Jouw bericht:";
+$a->strings["Upload photo"] = "Foto uploaden";
+$a->strings["Insert web link"] = "Voeg een webadres in";
+$a->strings["No messages."] = "Geen berichten.";
+$a->strings["Unknown sender - %s"] = "Onbekende afzender - %s";
+$a->strings["You and %s"] = "Jij en %s";
+$a->strings["%s and You"] = "%s en jij";
+$a->strings["Delete conversation"] = "Verwijder gesprek";
+$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d bericht",
+       1 => "%d berichten",
+);
+$a->strings["Message not available."] = "Bericht niet beschikbaar.";
+$a->strings["Delete message"] = "Verwijder bericht";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Geen beveiligde communicatie beschikbaar. Je kunt <strong>misschien</strong> antwoorden vanaf de profiel-pagina van de afzender.";
+$a->strings["Send Reply"] = "Verstuur Antwoord";
 $a->strings["Item not found"] = "Item niet gevonden";
 $a->strings["Edit post"] = "Bericht bewerken";
 $a->strings["upload photo"] = "Foto uploaden";
@@ -624,95 +439,169 @@ $a->strings["Public post"] = "Openbare post";
 $a->strings["Set title"] = "Titel plaatsen";
 $a->strings["Categories (comma-separated list)"] = "Categorieën (komma-gescheiden lijst)";
 $a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be";
+$a->strings["Profile not found."] = "Profiel niet gevonden";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd.";
+$a->strings["Response from remote site was not understood."] = "Antwoord van de website op afstand werd niet begrepen.";
+$a->strings["Unexpected response from remote site: "] = "Onverwacht antwoord van website op afstand:";
+$a->strings["Confirmation completed successfully."] = "Bevestiging werd correct voltooid.";
+$a->strings["Remote site reported: "] = "Website op afstand berichtte: ";
+$a->strings["Temporary failure. Please wait and try again."] = "Tijdelijke fout. Wacht even en probeer opnieuw.";
+$a->strings["Introduction failed or was revoked."] = "Verzoek mislukt of herroepen.";
+$a->strings["Unable to set contact photo."] = "Ik kan geen contact foto instellen.";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s is nu bevriend met %2\$s";
+$a->strings["No user record found for '%s' "] = "Geen gebruiker gevonden voor '%s'";
+$a->strings["Our site encryption key is apparently messed up."] = "De encryptie-sleutel van onze webstek is blijkbaar beschadigd.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons.";
+$a->strings["Contact record was not found for you on our site."] = "We vonden op onze webstek geen contactrecord voor jou.";
+$a->strings["Site public key not available in contact record for URL %s."] = "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s.";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken.";
+$a->strings["Unable to set your contact credentials on our system."] = "Niet in staat om op dit systeem je contactreferenties in te stellen.";
+$a->strings["Unable to update your contact profile details on our system"] = "";
+$a->strings["Connection accepted at %s"] = "Uw connectie werd geaccepteerd op %s";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s is toegetreden tot %2\$s";
+$a->strings["Event title and start time are required."] = "Titel en begintijd van de gebeurtenis zijn vereist.";
+$a->strings["l, F j"] = "l j F";
+$a->strings["Edit event"] = "Gebeurtenis bewerken";
+$a->strings["link to source"] = "Verwijzing naar bron";
+$a->strings["Events"] = "Gebeurtenissen";
+$a->strings["Create New Event"] = "Maak een nieuwe gebeurtenis";
+$a->strings["Previous"] = "Vorige";
+$a->strings["Next"] = "Volgende";
+$a->strings["hour:minute"] = "uur:minuut";
+$a->strings["Event details"] = "Gebeurtenis details";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "Formaat is %s %s. Begindatum en titel zijn vereist.";
+$a->strings["Event Starts:"] = "Gebeurtenis begint:";
+$a->strings["Required"] = "Vereist";
+$a->strings["Finish date/time is not known or not relevant"] = "Einddatum/tijd is niet gekend of niet relevant";
+$a->strings["Event Finishes:"] = "Gebeurtenis eindigt:";
+$a->strings["Adjust for viewer timezone"] = "Pas aan aan de tijdzone van de gebruiker";
+$a->strings["Description:"] = "Beschrijving:";
+$a->strings["Location:"] = "Plaats:";
+$a->strings["Title:"] = "Titel:";
+$a->strings["Share this event"] = "Deel deze gebeurtenis";
+$a->strings["Photos"] = "Foto's";
+$a->strings["Files"] = "Bestanden";
+$a->strings["Welcome to %s"] = "Welkom op %s";
+$a->strings["Remote privacy information not available."] = "Privacyinformatie op afstand niet beschikbaar.";
+$a->strings["Visible to:"] = "Zichtbaar voor:";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "";
+$a->strings["Unable to check your home location."] = "Niet in staat om je tijdlijn-locatie vast te stellen";
+$a->strings["No recipient."] = "Geen ontvanger.";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat.";
+$a->strings["Visit %s's profile [%s]"] = "Bekijk het profiel van %s [%s]";
+$a->strings["Edit contact"] = "Contact bewerken";
+$a->strings["Contacts who are not members of a group"] = "Contacten die geen leden zijn van een groep";
+$a->strings["This is Friendica, version"] = "Dit is Friendica, versie";
+$a->strings["running at web location"] = "draaiend op web-adres";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bezoek <a href=\"http://friendica.com\">Friendica.com</a> om meer te leren over het Friendica project.";
+$a->strings["Bug reports and issues: please visit"] = "Bug rapporten en problemen: bezoek";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com";
+$a->strings["Installed plugins/addons/apps:"] = "Geïnstalleerde plugins/toepassingen:";
+$a->strings["No installed plugins/addons/apps"] = "Geen plugins of toepassingen geïnstalleerd";
+$a->strings["Remove My Account"] = "Verwijder mijn account";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is.";
+$a->strings["Please enter your password for verification:"] = "Voer je wachtwoord in voor verificatie:";
+$a->strings["Image exceeds size limit of %d"] = "Afbeelding is groter dan de toegestane %d";
+$a->strings["Unable to process image."] = "Niet in staat om de afbeelding te verwerken";
+$a->strings["Wall Photos"] = "";
+$a->strings["Image upload failed."] = "Uploaden van afbeelding mislukt.";
+$a->strings["Authorize application connection"] = "";
+$a->strings["Return to your app and insert this Securty Code:"] = "";
+$a->strings["Please login to continue."] = "Log in om verder te gaan.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s labelde %3\$s van %2\$s met %4\$s";
+$a->strings["Photo Albums"] = "Fotoalbums";
+$a->strings["Contact Photos"] = "Contactfoto's";
+$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden";
+$a->strings["everybody"] = "iedereen";
+$a->strings["Contact information unavailable"] = "Contactinformatie niet beschikbaar";
+$a->strings["Profile Photos"] = "Profielfoto's";
+$a->strings["Album not found."] = "Album niet gevonden";
+$a->strings["Delete Album"] = "Verwijder album";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Wil je echt dit fotoalbum en alle foto's erin verwijderen?";
+$a->strings["Delete Photo"] = "Verwijder foto";
+$a->strings["Do you really want to delete this photo?"] = "Wil je echt deze foto verwijderen?";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s is gelabeld in %2\$s door %3\$s";
+$a->strings["a photo"] = "een foto";
+$a->strings["Image exceeds size limit of "] = "Afbeelding is groter dan de maximale afmeting van";
+$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg.";
+$a->strings["No photos selected"] = "Geen foto's geselecteerd";
+$a->strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt.";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt.";
+$a->strings["Upload Photos"] = "Upload foto's";
+$a->strings["New album name: "] = "Nieuwe albumnaam: ";
+$a->strings["or existing album name: "] = "of bestaande albumnaam: ";
+$a->strings["Do not show a status post for this upload"] = "Toon geen bericht op je tijdlijn van deze upload";
+$a->strings["Permissions"] = "Rechten";
+$a->strings["Show to Groups"] = "Tonen aan groepen";
+$a->strings["Show to Contacts"] = "Tonen aan contacten";
+$a->strings["Private Photo"] = "Privé foto";
+$a->strings["Public Photo"] = "Publieke foto";
+$a->strings["Edit Album"] = "Album wijzigen";
+$a->strings["Show Newest First"] = "Toon niewste eerst";
+$a->strings["Show Oldest First"] = "Toon oudste eerst";
+$a->strings["View Photo"] = "Bekijk foto";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt.";
+$a->strings["Photo not available"] = "Foto is niet beschikbaar";
+$a->strings["View photo"] = "Bekijk foto";
+$a->strings["Edit photo"] = "Bewerk foto";
+$a->strings["Use as profile photo"] = "Gebruik als profielfoto";
+$a->strings["View Full Size"] = "Bekijk in volledig formaat";
+$a->strings["Tags: "] = "Labels: ";
+$a->strings["[Remove any tag]"] = "[Alle labels verwijderen]";
+$a->strings["Rotate CW (right)"] = "Roteren met de klok mee (rechts)";
+$a->strings["Rotate CCW (left)"] = "Roteren tegen de klok in (links)";
+$a->strings["New album name"] = "Nieuwe albumnaam";
+$a->strings["Caption"] = "Onderschrift";
+$a->strings["Add a Tag"] = "Een label toevoegen";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping ";
+$a->strings["Private photo"] = "Privé foto";
+$a->strings["Public photo"] = "Publieke foto";
+$a->strings["Share"] = "Delen";
+$a->strings["View Album"] = "Album bekijken";
+$a->strings["Recent Photos"] = "Recente foto's";
+$a->strings["No profile"] = "Geen profiel";
+$a->strings["Registration successful. Please check your email for further instructions."] = "Registratie geslaagd. Kijk je e-mail na voor verdere instructies.";
+$a->strings["Failed to send email message. Here is the message that failed."] = "E-mail bericht kon niet verstuurd worden. Hier is het bericht.";
+$a->strings["Your registration can not be processed."] = "Je registratie kan niet verwerkt worden.";
+$a->strings["Registration request at %s"] = "Registratieverzoek op %s";
+$a->strings["Your registration is pending approval by the site owner."] = "Jouw registratie wacht op goedkeuring van de beheerder.";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken.";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in.";
+$a->strings["Your OpenID (optional): "] = "Je OpenID (optioneel):";
+$a->strings["Include your profile in member directory?"] = "Je profiel in de ledengids opnemen?";
+$a->strings["Membership on this site is by invitation only."] = "Lidmaatschap van deze website is uitsluitend op uitnodiging.";
+$a->strings["Your invitation ID: "] = "Je uitnodigingsid:";
+$a->strings["Your Full Name (e.g. Joe Smith): "] = "Je volledige naam (bijv. Jan Jansens):";
+$a->strings["Your Email Address: "] = "Je email adres:";
+$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>'."] = "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan '<strong>bijnaam@\$sitename</strong>' zijn.";
+$a->strings["Choose a nickname: "] = "Kies een bijnaam:";
+$a->strings["Register"] = "Registreer";
+$a->strings["Import"] = "Importeren";
+$a->strings["Import your profile to this friendica instance"] = "";
+$a->strings["No valid account found."] = "Geen geldige account gevonden.";
+$a->strings["Password reset request issued. Check your email."] = "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na.";
+$a->strings["Password reset requested at %s"] = "Op %s werd gevraagd je wachtwoord opnieuw in te stellen";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld.";
+$a->strings["Password Reset"] = "Wachtwoord opnieuw instellen";
+$a->strings["Your password has been reset as requested."] = "Je wachtwoord is opnieuw ingesteld zoals gevraagd.";
+$a->strings["Your new password is"] = "Je nieuwe wachtwoord is";
+$a->strings["Save or copy your new password - and then"] = "Bewaar of kopieer je nieuw wachtwoord - en dan";
+$a->strings["click here to login"] = "klik hier om in te loggen";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de <em>Instellingen></em> pagina.";
+$a->strings["Your password has been changed at %s"] = "Je wachtwoord is veranderd op %s";
+$a->strings["Forgot your Password?"] = "Wachtwoord vergeten?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies.";
+$a->strings["Nickname or Email: "] = "Bijnaam of e-mail:";
+$a->strings["Reset"] = "Opnieuw";
+$a->strings["System down for maintenance"] = "Systeem onbeschikbaar wegens onderhoud";
 $a->strings["Item not available."] = "Item niet beschikbaar";
 $a->strings["Item was not found."] = "Item niet gevonden";
-$a->strings["Account approved."] = "Account goedgekeurd.";
-$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s";
-$a->strings["Please login."] = "Log a.u.b. in.";
-$a->strings["Find on this site"] = "Op deze website zoeken";
-$a->strings["Finding: "] = "Gevonden:";
-$a->strings["Site Directory"] = "Websitegids";
-$a->strings["Find"] = "Zoek";
-$a->strings["Age: "] = "Leeftijd:";
-$a->strings["Gender: "] = "Geslacht:";
-$a->strings["About:"] = "Over:";
-$a->strings["No entries (some entries may be hidden)."] = "Geen gegevens (sommige gegevens kunnen verborgen zijn).";
-$a->strings["Contact settings applied."] = "Contactinstellingen toegepast.";
-$a->strings["Contact update failed."] = "Aanpassen van contact mislukt.";
-$a->strings["Repair Contact Settings"] = "Contactinstellingen herstellen";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Gebruik <strong>nu</strong> de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen.";
-$a->strings["Return to contact editor"] = "Ga terug naar contactbewerker";
-$a->strings["Account Nickname"] = "Bijnaam account";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Labelnaam - krijgt voorrang op naam/bijnaam";
-$a->strings["Account URL"] = "URL account";
-$a->strings["Friend Request URL"] = "URL vriendschapsverzoek";
-$a->strings["Friend Confirm URL"] = "";
-$a->strings["Notification Endpoint URL"] = "";
-$a->strings["Poll/Feed URL"] = "URL poll/feed";
-$a->strings["New photo from this URL"] = "Nieuwe foto van deze URL";
-$a->strings["Remote Self"] = "";
-$a->strings["Mirror postings from this contact"] = "";
-$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "";
-$a->strings["Move account"] = "Account verplaatsen";
-$a->strings["You can import an account from another Friendica server."] = "Je kunt een account van een andere Friendica server importeren.";
-$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."] = "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent.";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Deze functie is experimenteel. We kunnen geen contacten van het OStatus netwerk (statusnet/identi.ca) of van Diaspora importeren.";
-$a->strings["Account file"] = "Account bestand";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "";
-$a->strings["Remote privacy information not available."] = "Privacyinformatie op afstand niet beschikbaar.";
-$a->strings["Visible to:"] = "Zichtbaar voor:";
-$a->strings["Save"] = "Bewaren";
+$a->strings["Applications"] = "Toepassingen";
+$a->strings["No installed applications."] = "Geen toepassingen geïnstalleerd";
 $a->strings["Help:"] = "Help:";
 $a->strings["Help"] = "Help";
-$a->strings["No profile"] = "Geen profiel";
-$a->strings["This introduction has already been accepted."] = "Verzoek is al goedgekeurd";
-$a->strings["Profile location is not valid or does not contain profile information."] = "Profiel is ongeldig of bevat geen informatie";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar.";
-$a->strings["Warning: profile location has no profile photo."] = "Waarschuwing: Profieladres heeft geen profielfoto.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "De %d vereiste parameter is niet op het gegeven adres gevonden",
-       1 => "De %d vereiste parameters zijn niet op het gegeven adres gevonden",
-);
-$a->strings["Introduction complete."] = "Verzoek voltooid.";
-$a->strings["Unrecoverable protocol error."] = "Onherstelbare protocolfout. ";
-$a->strings["Profile unavailable."] = "Profiel onbeschikbaar";
-$a->strings["%s has received too many connection requests today."] = "%s heeft te veel verzoeken gehad vandaag.";
-$a->strings["Spam protection measures have been invoked."] = "Beveiligingsmaatregelen tegen spam zijn in werking getreden.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Wij adviseren vrienden om het over 24 uur nog een keer te proberen.";
-$a->strings["Invalid locator"] = "Ongeldige plaatsbepaler";
-$a->strings["Invalid email address."] = "Geen geldig e-mailadres";
-$a->strings["This account has not been configured for email. Request failed."] = "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail.";
-$a->strings["Unable to resolve your name at the provided location."] = "Ik kan jouw naam op het opgegeven adres niet vinden.";
-$a->strings["You have already introduced yourself here."] = "Je hebt jezelf hier al voorgesteld.";
-$a->strings["Apparently you are already friends with %s."] = "Blijkbaar bent u al bevriend met %s.";
-$a->strings["Invalid profile URL."] = "Ongeldig profiel adres.";
-$a->strings["Disallowed profile URL."] = "Niet toegelaten profiel adres.";
-$a->strings["Failed to update contact record."] = "Ik kon de contactgegevens niet aanpassen.";
-$a->strings["Your introduction has been sent."] = "Je verzoek is verzonden.";
-$a->strings["Please login to confirm introduction."] = "Log in om je verzoek te bevestigen.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Je huidige identiteit is niet de juiste. Log a.u.b. in met <strong>dit</strong> profiel.";
-$a->strings["Hide this contact"] = "Verberg dit contact";
-$a->strings["Welcome home %s."] = "Welkom terug %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Bevestig je vriendschaps-/connectieverzoek voor %s.";
-$a->strings["Confirm"] = "Bevestig";
-$a->strings["[Name Withheld]"] = "[Naam achtergehouden]";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:";
-$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Sluit aan als e-mail volger</strike> (Binnenkort)";
-$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>."] = "Als je nog geen lid bent van het vrije sociale web,  <a href=\"http://dir.friendica.com/siteinfo\">volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan</a>.";
-$a->strings["Friend/Connection Request"] = "Vriendschaps-/connectieverzoek";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Beantwoord het volgende:";
-$a->strings["Does %s know you?"] = "Kent %s jou?";
-$a->strings["Add a personal note:"] = "Voeg een persoonlijke opmerking toe:";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Gefedereerde Sociale Web";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = "- Gebruik a.u.b. niet dit formulier. Vul %s in in je Diaspora zoekbalk.";
-$a->strings["Your Identity Address:"] = "Adres van uw identiteit:";
-$a->strings["Submit Request"] = "Aanvraag indienen";
-$a->strings["[Embedded content - reload page to view]"] = "[Ingebedde inhoud - herlaad pagina om het te bekijken]";
-$a->strings["View in context"] = "In context bekijken";
 $a->strings["%d contact edited."] = array(
        0 => "",
        1 => "",
@@ -743,7 +632,6 @@ $a->strings["%d contact in common"] = array(
 $a->strings["View all contacts"] = "Alle contacten zien";
 $a->strings["Toggle Blocked status"] = "Schakel geblokkeerde status";
 $a->strings["Unignore"] = "Negeer niet meer";
-$a->strings["Ignore"] = "Negeren";
 $a->strings["Toggle Ignored status"] = "Schakel negeerstatus";
 $a->strings["Unarchive"] = "Archiveer niet meer";
 $a->strings["Archive"] = "Archiveer";
@@ -756,7 +644,6 @@ $a->strings["Profile Visibility"] = "Zichtbaarheid profiel";
 $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. ";
 $a->strings["Contact Information / Notes"] = "Contactinformatie / aantekeningen";
 $a->strings["Edit contact notes"] = "Wijzig aantekeningen over dit contact";
-$a->strings["Visit %s's profile [%s]"] = "Bekijk het profiel van %s [%s]";
 $a->strings["Block/Unblock contact"] = "Blokkeer/deblokkeer contact";
 $a->strings["Ignore contact"] = "Negeer contact";
 $a->strings["Repair URL settings"] = "Repareer URL-instellingen";
@@ -767,8 +654,10 @@ $a->strings["Update public posts"] = "Openbare posts aanpassen";
 $a->strings["Currently blocked"] = "Op dit moment geblokkeerd";
 $a->strings["Currently ignored"] = "Op dit moment genegeerd";
 $a->strings["Currently archived"] = "Op dit moment gearchiveerd";
-$a->strings["Hide this contact from others"] = "Verberg dit contact voor anderen";
 $a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antwoorden of 'vind ik leuk's op je openbare posts <strong>kunnen</strong> nog zichtbaar zijn";
+$a->strings["Notification for new posts"] = "";
+$a->strings["Send a notification of every new post of this contact"] = "";
+$a->strings["Fetch further information for feeds"] = "";
 $a->strings["Suggestions"] = "Voorstellen";
 $a->strings["Suggest potential friends"] = "Stel vrienden voor";
 $a->strings["All Contacts"] = "Alle Contacten";
@@ -786,15 +675,94 @@ $a->strings["Only show hidden contacts"] = "Toon alleen verborgen contacten";
 $a->strings["Mutual Friendship"] = "Wederzijdse vriendschap";
 $a->strings["is a fan of yours"] = "Is een fan van jou";
 $a->strings["you are a fan of"] = "Jij bent een fan van";
-$a->strings["Edit contact"] = "Contact bewerken";
+$a->strings["Contacts"] = "Contacten";
 $a->strings["Search your contacts"] = "Doorzoek je contacten";
+$a->strings["Finding: "] = "Gevonden:";
+$a->strings["Find"] = "Zoek";
 $a->strings["Update"] = "Wijzigen";
-$a->strings["everybody"] = "iedereen";
-$a->strings["Account settings"] = "Account instellingen";
+$a->strings["No videos selected"] = "Geen video's geselecteerd";
+$a->strings["Recent Videos"] = "Recente video's";
+$a->strings["Upload New Videos"] = "Nieuwe video's uploaden";
+$a->strings["Common Friends"] = "Gedeelde Vrienden";
+$a->strings["No contacts in common."] = "Geen gedeelde contacten.";
+$a->strings["Contact added"] = "Contact toegevoegd";
+$a->strings["Move account"] = "Account verplaatsen";
+$a->strings["You can import an account from another Friendica server."] = "Je kunt een account van een andere Friendica server importeren.";
+$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."] = "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Deze functie is experimenteel. We kunnen geen contacten van het OStatus netwerk (statusnet/identi.ca) of van Diaspora importeren.";
+$a->strings["Account file"] = "Account bestand";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt %3\$s van %2\$s";
+$a->strings["Friends of %s"] = "Vrienden van %s";
+$a->strings["No friends to display."] = "Geen vrienden om te laten zien.";
+$a->strings["Tag removed"] = "Label verwijderd";
+$a->strings["Remove Item Tag"] = "Verwijder label van item";
+$a->strings["Select a tag to remove: "] = "Selecteer een label om te verwijderen: ";
+$a->strings["Remove"] = "Verwijderen";
+$a->strings["Welcome to Friendica"] = "Welkom bij Friendica";
+$a->strings["New Member Checklist"] = "Checklist voor nieuwe leden";
+$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."] = "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen.";
+$a->strings["Getting Started"] = "Aan de slag";
+$a->strings["Friendica Walk-Through"] = "Doorloop Friendica";
+$a->strings["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."] = "Op je <em>Snelstart</em> pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden.";
+$a->strings["Go to Your Settings"] = "Ga naar je instellingen";
+$a->strings["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."] = "Verander je initieel wachtwoord op je <em>instellingenpagina</em>. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale web.";
+$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden.";
+$a->strings["Profile"] = "Profiel";
+$a->strings["Upload Profile Photo"] = "Profielfoto uploaden";
+$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Upload een profielfoto, als je dat nog niet gedaan hebt. Studies tonen aan dat mensen met echte foto's van zichzelf tien keer gemakkelijker vrienden maken dan mensen die dat niet doen.";
+$a->strings["Edit Your Profile"] = "Bewerk je profiel";
+$a->strings["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."] = "Bewerk je <strong>standaard</strong> profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen.";
+$a->strings["Profile Keywords"] = "Sleutelwoorden voor dit profiel";
+$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."] = "Stel enkele openbare sleutelwoorden in voor je standaard profiel die je interesses beschrijven. We kunnen dan misschien mensen vinden met gelijkaardige interesses, en vrienden voorstellen.";
+$a->strings["Connecting"] = "Verbinding aan het maken";
+$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."] = "Machtig de Facebook Connector als je een Facebook account hebt. We zullen (optioneel) al je Facebook vrienden en conversaties importeren.";
+$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Als</em> dit jouw eigen persoonlijke server is kan het installeren van de Facebook toevoeging je overgang naar het vrije sociale web vergemakkelijken.";
+$a->strings["Importing Emails"] = "E-mails importeren";
+$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Vul je e-mailtoegangsinformatie in op je pagina met verbindingsinstellingen als je vrienden of mailinglijsten uit je e-mail-inbox wilt importeren, en met hen wilt communiceren";
+$a->strings["Go to Your Contacts Page"] = "Ga naar je contactenpagina";
+$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de <em>Voeg nieuw contact toe</em> dialoog.";
+$a->strings["Go to Your Site's Directory"] = "Ga naar de gids van je website";
+$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."] = "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord <em>Connect</em> of <em>Follow</em> op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd.";
+$a->strings["Finding New People"] = "Nieuwe mensen vinden";
+$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."] = "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden.";
+$a->strings["Groups"] = "Groepen";
+$a->strings["Group Your Contacts"] = "Groepeer je contacten";
+$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."] = "Als je een aantal vrienden gemaakt hebt kun je ze in je eigen conversatiegroepen indelen vanuit de zijbalk van je 'Conacten' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. ";
+$a->strings["Why Aren't My Posts Public?"] = "Waarom zijn mijn berichten niet openbaar?";
+$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie.";
+$a->strings["Getting Help"] = "Hulp krijgen";
+$a->strings["Go to the Help Section"] = "Ga naar de help";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Je kunt onze <strong>help</strong> pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma.";
+$a->strings["Remove term"] = "Verwijder zoekterm";
+$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten";
+$a->strings["Search"] = "Zoeken";
+$a->strings["No results."] = "Geen resultaten.";
+$a->strings["Total invitation limit exceeded."] = "Totale uitnodigingslimiet overschreden.";
+$a->strings["%s : Not a valid email address."] = "%s: Geen geldig e-mailadres.";
+$a->strings["Please join us on Friendica"] = "Kom bij ons op Friendica";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website.";
+$a->strings["%s : Message delivery failed."] = "%s : Aflevering van bericht mislukt.";
+$a->strings["%d message sent."] = array(
+       0 => "%d bericht verzonden.",
+       1 => "%d berichten verzonden.",
+);
+$a->strings["You have no more invitations available"] = "Je kunt geen uitnodigingen meer sturen";
+$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."] = "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke 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."] = "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen.";
+$a->strings["Send invitations"] = "Verstuur uitnodigingen";
+$a->strings["Enter email addresses, one per line:"] = "Vul e-mailadressen in, één per lijn:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Je zult deze uitnodigingscode moeten invullen: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken";
 $a->strings["Additional features"] = "Extra functies";
-$a->strings["Display settings"] = "Scherminstellingen";
-$a->strings["Connector settings"] = "Connector instellingen";
-$a->strings["Plugin settings"] = "Plugin instellingen";
+$a->strings["Display"] = "";
+$a->strings["Social Networks"] = "";
+$a->strings["Delegations"] = "";
 $a->strings["Connected apps"] = "Verbonden applicaties";
 $a->strings["Export personal data"] = "Persoonlijke gegevens exporteren";
 $a->strings["Remove account"] = "Account verwijderen";
@@ -808,7 +776,7 @@ $a->strings["Empty passwords are not allowed. Password unchanged."] = "Lege wach
 $a->strings["Wrong password."] = "Verkeerd wachtwoord.";
 $a->strings["Password changed."] = "Wachtwoord gewijzigd.";
 $a->strings["Password update failed. Please try again."] = "Wachtwoord-)wijziging mislukt. Probeer opnieuw.";
-$a->strings[" Please use a shorter name."] = "Gebruik a.u.b. een kortere naam.";
+$a->strings[" Please use a shorter name."] = "Gebruik een kortere naam.";
 $a->strings[" Name too short."] = "Naam te kort.";
 $a->strings["Wrong Password"] = "Verkeerd wachtwoord";
 $a->strings[" Not valid email."] = "Geen geldig e-mailadres.";
@@ -836,7 +804,6 @@ $a->strings["enabled"] = "ingeschakeld";
 $a->strings["disabled"] = "uitgeschakeld";
 $a->strings["StatusNet"] = "StatusNet";
 $a->strings["Email access is disabled on this site."] = "E-mailtoegang is op deze website uitgeschakeld.";
-$a->strings["Connector Settings"] = "Connector Instellingen";
 $a->strings["Email/Mailbox Setup"] = "E-mail Instellen";
 $a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken.";
 $a->strings["Last successful email check:"] = "Laatste succesvolle e-mail controle:";
@@ -861,7 +828,10 @@ $a->strings["Number of items to display per page:"] = "Aantal items te tonen per
 $a->strings["Maximum of 100 items"] = "Maximum 100 items";
 $a->strings["Number of items to display per page when viewed from mobile device:"] = "Aantal items per pagina als je een mobiel toestel gebruikt:";
 $a->strings["Don't show emoticons"] = "Emoticons niet tonen";
+$a->strings["Don't show notices"] = "";
 $a->strings["Infinite scroll"] = "";
+$a->strings["User Types"] = "";
+$a->strings["Community Types"] = "";
 $a->strings["Normal Account Page"] = "Normale account pagina";
 $a->strings["This account is a normal personal profile"] = "Deze account is een normaal persoonlijk profiel";
 $a->strings["Soapbox Page"] = "Zeepkist pagina";
@@ -913,8 +883,6 @@ $a->strings["Maximum Friend Requests/Day:"] = "Maximum aantal vriendschapsverzoe
 $a->strings["(to prevent spam abuse)"] = "(om spam misbruik te voorkomen)";
 $a->strings["Default Post Permissions"] = "Standaard rechten voor nieuwe berichten";
 $a->strings["(click to open/close)"] = "(klik om te openen/sluiten)";
-$a->strings["Show to Groups"] = "Tonen aan groepen";
-$a->strings["Show to Contacts"] = "Tonen aan contacten";
 $a->strings["Default Private Post"] = "Standaard Privé Post";
 $a->strings["Default Public Post"] = "Standaard Publieke Post";
 $a->strings["Default Permissions for New Posts"] = "Standaard rechten voor nieuwe berichten";
@@ -927,17 +895,20 @@ $a->strings["making an <em>interesting</em> profile change"] = "Een <em>interess
 $a->strings["Send a notification email when:"] = "Stuur een notificatie e-mail wanneer:";
 $a->strings["You receive an introduction"] = "Je ontvangt een vriendschaps- of connectieverzoek";
 $a->strings["Your introductions are confirmed"] = "Jouw vriendschaps- of connectieverzoeken zijn bevestigd";
-$a->strings["Someone writes on your profile wall"] = "Iemand iets op de muur van je profiel schrijft";
-$a->strings["Someone writes a followup comment"] = "Iemand een commentaar schrijft";
+$a->strings["Someone writes on your profile wall"] = "Iemand iets op je tijdlijn schrijft";
+$a->strings["Someone writes a followup comment"] = "Iemand een reactie schrijft";
 $a->strings["You receive a private message"] = "Je een privé-bericht ontvangt";
 $a->strings["You receive a friend suggestion"] = "Je een suggestie voor een vriendschap ontvangt";
-$a->strings["You are tagged in a post"] = "Je bent in een bericht genoemd";
-$a->strings["You are poked/prodded/etc. in a post"] = "Je bent in een bericht aangestoten/gepord/etc.";
+$a->strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd";
+$a->strings["You are poked/prodded/etc. in a post"] = "Je in een bericht bent aangestoten/gepord/etc.";
 $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["Item has been removed."] = "Item is verwijderd.";
+$a->strings["People Search"] = "Mensen Zoeken";
+$a->strings["No matches"] = "Geen resultaten";
 $a->strings["Profile deleted."] = "Profiel verwijderd";
 $a->strings["Profile-"] = "Profiel-";
 $a->strings["New profile created."] = "Nieuw profiel aangemaakt.";
@@ -963,8 +934,8 @@ $a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s veranderde %2
 $a->strings[" - Visit %1\$s's %2\$s"] = " - Bezoek %2\$s van %1\$s";
 $a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepast %2\$s, %3\$s veranderd.";
 $a->strings["Hide your contact/friend list from viewers of this profile?"] = "Je vrienden/contacten verbergen voor bezoekers van dit profiel?";
-$a->strings["Edit Profile Details"] = "Profiel details bewerken";
-$a->strings["Change Profile Photo"] = "Profiel foto wijzigen";
+$a->strings["Edit Profile Details"] = "Profieldetails bewerken";
+$a->strings["Change Profile Photo"] = "Profielfoto wijzigen";
 $a->strings["View this profile"] = "Dit profiel bekijken";
 $a->strings["Create a new profile using these settings"] = "Nieuw profiel aanmaken met deze instellingen";
 $a->strings["Clone this profile"] = "Dit profiel klonen";
@@ -988,158 +959,105 @@ $a->strings["Homepage URL:"] = "Adres tijdlijn:";
 $a->strings["Hometown:"] = "Woonplaats:";
 $a->strings["Political Views:"] = "Politieke standpunten:";
 $a->strings["Religious Views:"] = "Geloof:";
-$a->strings["Public Keywords:"] = "Publieke Sleutelwoorden:";
-$a->strings["Private Keywords:"] = "Privé Sleutelwoorden:";
-$a->strings["Likes:"] = "Houdt van:";
-$a->strings["Dislikes:"] = "Houdt niet van:";
-$a->strings["Example: fishing photography software"] = "Voorbeeld: vissen fotografie software";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)";
-$a->strings["Tell us about yourself..."] = "Vertel iets over jezelf...";
-$a->strings["Hobbies/Interests"] = "Hobby's/Interesses";
-$a->strings["Contact information and Social Networks"] = "Contactinformatie en sociale netwerken";
-$a->strings["Musical interests"] = "Muzikale interesses";
-$a->strings["Books, literature"] = "Boeken, literatuur";
-$a->strings["Television"] = "Televisie";
-$a->strings["Film/dance/culture/entertainment"] = "Film/dans/cultuur/ontspanning";
-$a->strings["Love/romance"] = "Liefde/romance";
-$a->strings["Work/employment"] = "Werk";
-$a->strings["School/education"] = "School/opleiding";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dit is jouw <strong>publiek</strong> profiel.<br />Het <strong>kan</strong> zichtbaar zijn voor iedereen op het internet.";
-$a->strings["Edit/Manage Profiles"] = "Wijzig/Beheer Profielen";
-$a->strings["Group created."] = "Groep aangemaakt.";
-$a->strings["Could not create group."] = "Kon de groep niet aanmaken.";
-$a->strings["Group not found."] = "Groep niet gevonden.";
-$a->strings["Group name changed."] = "Groepsnaam gewijzigd.";
-$a->strings["Save Group"] = "";
-$a->strings["Create a group of contacts/friends."] = "Maak een groep contacten/vrienden aan.";
-$a->strings["Group Name: "] = "Groepsnaam:";
-$a->strings["Group removed."] = "Groep verwijderd.";
-$a->strings["Unable to remove group."] = "Niet in staat om groep te verwijderen.";
-$a->strings["Group Editor"] = "Groepsbewerker";
-$a->strings["Members"] = "Leden";
-$a->strings["Click on a contact to add or remove."] = "Klik op een contact om het toe te voegen of te verwijderen.";
-$a->strings["Source (bbcode) text:"] = "Bron (bbcode) tekst:";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Bron (Diaspora) tekst om naar BBCode om te zetten:";
-$a->strings["Source input: "] = "Bron ingave:";
-$a->strings["bb2html (raw HTML): "] = "bb2html (ruwe 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): "] = "Bron ingave (Diaspora formaat):";
-$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["Public Keywords:"] = "Publieke Sleutelwoorden:";
+$a->strings["Private Keywords:"] = "Privé Sleutelwoorden:";
+$a->strings["Likes:"] = "Houdt van:";
+$a->strings["Dislikes:"] = "Houdt niet van:";
+$a->strings["Example: fishing photography software"] = "Voorbeeld: vissen fotografie software";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)";
+$a->strings["Tell us about yourself..."] = "Vertel iets over jezelf...";
+$a->strings["Hobbies/Interests"] = "Hobby's/Interesses";
+$a->strings["Contact information and Social Networks"] = "Contactinformatie en sociale netwerken";
+$a->strings["Musical interests"] = "Muzikale interesses";
+$a->strings["Books, literature"] = "Boeken, literatuur";
+$a->strings["Television"] = "Televisie";
+$a->strings["Film/dance/culture/entertainment"] = "Film/dans/cultuur/ontspanning";
+$a->strings["Love/romance"] = "Liefde/romance";
+$a->strings["Work/employment"] = "Werk";
+$a->strings["School/education"] = "School/opleiding";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dit is jouw <strong>publiek</strong> profiel.<br />Het <strong>kan</strong> zichtbaar zijn voor iedereen op het internet.";
+$a->strings["Age: "] = "Leeftijd:";
+$a->strings["Edit/Manage Profiles"] = "Wijzig/Beheer Profielen";
+$a->strings["Change profile photo"] = "Profiel foto wijzigen";
+$a->strings["Create New Profile"] = "Maak nieuw profiel";
+$a->strings["Profile Image"] = "Profiel afbeelding";
+$a->strings["visible to everybody"] = "zichtbaar voor iedereen";
+$a->strings["Edit visibility"] = "Pas zichtbaarheid aan";
+$a->strings["link"] = "link";
+$a->strings["Export account"] = "Account exporteren";
+$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."] = "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server.";
+$a->strings["Export all"] = "Alles exporteren";
+$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)"] = "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)";
+$a->strings["{0} wants to be your friend"] = "{0} wilt je vriend worden";
+$a->strings["{0} sent you a message"] = "{0} stuurde jou een bericht";
+$a->strings["{0} requested registration"] = "{0} vroeg om zich te registreren";
+$a->strings["{0} commented %s's post"] = "{0} gaf een reactie op het bericht van %s";
+$a->strings["{0} liked %s's post"] = "{0} vond het bericht van %s leuk";
+$a->strings["{0} disliked %s's post"] = "{0} vond het bericht van %s niet leuk";
+$a->strings["{0} is now friends with %s"] = "{0} is nu bevriend met %s";
+$a->strings["{0} posted"] = "{0} plaatste";
+$a->strings["{0} tagged %s's post with #%s"] = "{0} labelde %s's bericht met #%s";
+$a->strings["{0} mentioned you in a post"] = "{0} vermeldde je in een bericht";
+$a->strings["Nothing new here"] = "Niets nieuw hier";
+$a->strings["Clear notifications"] = "Notificaties verwijderen";
 $a->strings["Not available."] = "Niet beschikbaar";
-$a->strings["Contact added"] = "Contact toegevoegd";
-$a->strings["No more system notifications."] = "Geen systeemnotificaties meer.";
-$a->strings["System Notifications"] = "Systeemnotificaties";
-$a->strings["New Message"] = "Nieuw Bericht";
-$a->strings["Unable to locate contact information."] = "Ik kan geen contact informatie vinden.";
-$a->strings["Messages"] = "Privéberichten";
-$a->strings["Do you really want to delete this message?"] = "Wil je echt dit bericht verwijderen?";
-$a->strings["Message deleted."] = "Bericht verwijderd.";
-$a->strings["Conversation removed."] = "Gesprek verwijderd.";
-$a->strings["No messages."] = "Geen berichten.";
-$a->strings["Unknown sender - %s"] = "Onbekende afzender - %s";
-$a->strings["You and %s"] = "Jij en %s";
-$a->strings["%s and You"] = "%s en jij";
-$a->strings["Delete conversation"] = "Verwijder gesprek";
-$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d bericht",
-       1 => "%d berichten",
-);
-$a->strings["Message not available."] = "Bericht niet beschikbaar.";
-$a->strings["Delete message"] = "Verwijder bericht";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Geen beveiligde communicatie beschikbaar. Je kunt <strong>misschien</strong> antwoorden vanaf de profiel-pagina van de afzender.";
-$a->strings["Send Reply"] = "Verstuur Antwoord";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vind %3\$s van %2\$s niet leuk";
-$a->strings["Post successful."] = "Bericht succesvol geplaatst.";
-$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
-$a->strings["Time Conversion"] = "Tijdsconversie";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones.";
-$a->strings["UTC time: %s"] = "UTC tijd: %s";
-$a->strings["Current timezone: %s"] = "Huidige Tijdzone: %s";
-$a->strings["Converted localtime: %s"] = "Omgerekende lokale tijd: %s";
-$a->strings["Please select your timezone:"] = "Selecteer je tijdzone:";
+$a->strings["Community"] = "Gemeenschap";
 $a->strings["Save to Folder:"] = "Bewaren in map:";
 $a->strings["- select -"] = "- Kies -";
+$a->strings["Save"] = "Bewaren";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "";
+$a->strings["Or - did you try to upload an empty file?"] = "";
+$a->strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d";
+$a->strings["File upload failed."] = "Uploaden van bestand mislukt.";
 $a->strings["Invalid profile identifier."] = "Ongeldige profiel-identificatie.";
 $a->strings["Profile Visibility Editor"] = "";
+$a->strings["Click on a contact to add or remove."] = "Klik op een contact om het toe te voegen of te verwijderen.";
 $a->strings["Visible To"] = "Zichtbaar voor";
 $a->strings["All Contacts (with secure profile access)"] = "Alle contacten (met veilige profieltoegang)";
+$a->strings["Do you really want to delete this suggestion?"] = "Wil je echt dit voorstel verwijderen?";
+$a->strings["Friend Suggestions"] = "Vriendschapsvoorstellen";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen.";
+$a->strings["Connect"] = "Verbinden";
+$a->strings["Ignore/Hide"] = "Negeren/Verbergen";
+$a->strings["Access denied."] = "Toegang geweigerd";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heet %2\$s van harte welkom";
+$a->strings["Manage Identities and/or Pages"] = "Beheer Identiteiten en/of Pagina's";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Wissel tussen verschillende identiteiten of groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen.";
+$a->strings["Select an identity to manage: "] = "Selecteer een identiteit om te beheren:";
+$a->strings["No potential page delegates located."] = "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden.";
+$a->strings["Delegate Page Management"] = "Paginabeheer uitbesteden";
+$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."] = "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd.";
+$a->strings["Existing Page Managers"] = "Bestaande paginabeheerders";
+$a->strings["Existing Page Delegates"] = "Bestaande personen waaraan het paginabeheer is uitbesteed";
+$a->strings["Potential Delegates"] = "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed ";
+$a->strings["Add"] = "Toevoegen";
+$a->strings["No entries."] = "Geen gegevens.";
 $a->strings["No contacts."] = "Geen contacten.";
 $a->strings["View Contacts"] = "Bekijk contacten";
-$a->strings["People Search"] = "Mensen Zoeken";
-$a->strings["No matches"] = "Geen resultaten";
-$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden";
-$a->strings["Contact information unavailable"] = "Contactinformatie niet beschikbaar";
-$a->strings["Album not found."] = "Album niet gevonden";
-$a->strings["Delete Album"] = "Verwijder album";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Wil je echt dit fotoalbum en alle foto's erin verwijderen?";
-$a->strings["Delete Photo"] = "Verwijder foto";
-$a->strings["Do you really want to delete this photo?"] = "Wil je echt deze foto verwijderen?";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s is gelabeld in %2\$s door %3\$s";
-$a->strings["a photo"] = "een foto";
-$a->strings["Image exceeds size limit of "] = "Afbeelding is groter dan de maximale afmeting van";
-$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg.";
-$a->strings["Unable to process image."] = "Niet in staat om de afbeelding te verwerken";
-$a->strings["Image upload failed."] = "Uploaden van afbeelding mislukt.";
-$a->strings["No photos selected"] = "Geen foto's geselecteerd";
-$a->strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt.";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt.";
-$a->strings["Upload Photos"] = "Upload foto's";
-$a->strings["New album name: "] = "Nieuwe albumnaam: ";
-$a->strings["or existing album name: "] = "of bestaande albumnaam: ";
-$a->strings["Do not show a status post for this upload"] = "Toon geen bericht op je tijdlijn van deze upload";
-$a->strings["Permissions"] = "Rechten";
-$a->strings["Private Photo"] = "Privé foto";
-$a->strings["Public Photo"] = "Publieke foto";
-$a->strings["Edit Album"] = "Album wijzigen";
-$a->strings["Show Newest First"] = "Toon niewste eerst";
-$a->strings["Show Oldest First"] = "Toon oudste eerst";
-$a->strings["View Photo"] = "Bekijk foto";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt.";
-$a->strings["Photo not available"] = "Foto is niet beschikbaar";
-$a->strings["View photo"] = "Bekijk foto";
-$a->strings["Edit photo"] = "Bewerk foto";
-$a->strings["Use as profile photo"] = "Gebruik als profielfoto";
-$a->strings["View Full Size"] = "Bekijk in volledig formaat";
-$a->strings["Tags: "] = "Labels: ";
-$a->strings["[Remove any tag]"] = "[Alle labels verwijderen]";
-$a->strings["Rotate CW (right)"] = "Roteren met de klok mee (rechts)";
-$a->strings["Rotate CCW (left)"] = "Roteren tegen de klok in (links)";
-$a->strings["New album name"] = "Nieuwe albumnaam";
-$a->strings["Caption"] = "Onderschrift";
-$a->strings["Add a Tag"] = "Een label toevoegen";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping ";
-$a->strings["Private photo"] = "Privé foto";
-$a->strings["Public photo"] = "Publieke foto";
-$a->strings["Share"] = "Delen";
-$a->strings["View Album"] = "Album bekijken";
-$a->strings["Recent Photos"] = "Recente foto's";
-$a->strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d";
-$a->strings["File upload failed."] = "Uploaden van bestand mislukt.";
-$a->strings["No videos selected"] = "Geen video's geselecteerd";
-$a->strings["View Video"] = "Bekijk Video";
-$a->strings["Recent Videos"] = "Recente video's";
-$a->strings["Upload New Videos"] = "Nieuwe video's uploaden";
+$a->strings["Personal Notes"] = "Persoonlijke Nota's";
 $a->strings["Poke/Prod"] = "Aanstoten/porren";
 $a->strings["poke, prod or do other things to somebody"] = "aanstoten, porren of andere dingen met iemand doen";
 $a->strings["Recipient"] = "Ontvanger";
 $a->strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen";
 $a->strings["Make this post private"] = "Dit bericht privé maken";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt %3\$s van %2\$s";
-$a->strings["Export account"] = "Account exporteren";
-$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."] = "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server.";
-$a->strings["Export all"] = "Alles exporteren";
-$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)"] = "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)";
-$a->strings["Common Friends"] = "Gedeelde Vrienden";
-$a->strings["No contacts in common."] = "Geen gedeelde contacten.";
-$a->strings["Image exceeds size limit of %d"] = "Afbeelding is groter dan de toegestane %d";
-$a->strings["Wall Photos"] = "";
+$a->strings["Global Directory"] = "Globale gids";
+$a->strings["Find on this site"] = "Op deze website zoeken";
+$a->strings["Site Directory"] = "Websitegids";
+$a->strings["Gender: "] = "Geslacht:";
+$a->strings["Gender:"] = "Geslacht:";
+$a->strings["Status:"] = "Tijdlijn:";
+$a->strings["Homepage:"] = "Jouw tijdlijn:";
+$a->strings["About:"] = "Over:";
+$a->strings["No entries (some entries may be hidden)."] = "Geen gegevens (sommige gegevens kunnen verborgen zijn).";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
+$a->strings["Time Conversion"] = "Tijdsconversie";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones.";
+$a->strings["UTC time: %s"] = "UTC tijd: %s";
+$a->strings["Current timezone: %s"] = "Huidige Tijdzone: %s";
+$a->strings["Converted localtime: %s"] = "Omgerekende lokale tijd: %s";
+$a->strings["Please select your timezone:"] = "Selecteer je tijdzone:";
+$a->strings["Post successful."] = "Bericht succesvol geplaatst.";
 $a->strings["Image uploaded but image cropping failed."] = "Afbeelding opgeladen, maar bijsnijden mislukt.";
 $a->strings["Image size reduction [%s] failed."] = "Verkleining van de afbeelding [%s] mislukt.";
 $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen.";
@@ -1153,51 +1071,89 @@ $a->strings["Crop Image"] = "Afbeelding bijsnijden";
 $a->strings["Please adjust the image cropping for optimum viewing."] = "Pas het afsnijden van de afbeelding aan voor het beste resultaat.";
 $a->strings["Done Editing"] = "Wijzigingen compleet";
 $a->strings["Image uploaded successfully."] = "Uploaden van afbeelding gelukt.";
-$a->strings["Applications"] = "Toepassingen";
-$a->strings["No installed applications."] = "Geen toepassingen geïnstalleerd";
-$a->strings["Nothing new here"] = "Niets nieuw hier";
-$a->strings["Clear notifications"] = "Notificaties verwijderen";
+$a->strings["Friendica Communications Server - Setup"] = "";
+$a->strings["Could not connect to database."] = "Kon geen toegang krijgen tot de database.";
+$a->strings["Could not create table."] = "Kon tabel niet aanmaken.";
+$a->strings["Your Friendica site database has been installed."] = "De database van je Friendica-website is geïnstalleerd.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Zie het bestand \"INSTALL.txt\".";
+$a->strings["System check"] = "Systeemcontrole";
+$a->strings["Check again"] = "Controleer opnieuw";
+$a->strings["Database connection"] = "Verbinding met database";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. ";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat.";
+$a->strings["Database Server Name"] = "Servernaam database";
+$a->strings["Database Login Name"] = "Gebruikersnaam database";
+$a->strings["Database Login Password"] = "Wachtwoord database";
+$a->strings["Database Name"] = "Naam database";
+$a->strings["Site administrator email address"] = "E-mailadres van de websitebeheerder";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken.";
+$a->strings["Please select a default timezone for your website"] = "Selecteer een standaard tijdzone voor uw website";
+$a->strings["Site settings"] = "Website-instellingen";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Kan geen command-line-versie van PHP vinden in het PATH van de webserver.";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Als je geen command-line versie van PHP geïnstalleerd hebt op je server, kun je geen polling op de achtergrond gebruiken via cron. Zie  <a href='http://friendica.com/node/27'>'Activeren van geplande taken'</a>";
+$a->strings["PHP executable path"] = "PATH van het PHP commando";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten.";
+$a->strings["Command line PHP"] = "PHP-opdrachtregel";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "";
+$a->strings["Found PHP version: "] = "Gevonden PHP versie:";
+$a->strings["PHP cli binary"] = "";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd.";
+$a->strings["This is required for message delivery to work."] = "Dit is nodig om het verzenden van berichten mogelijk te maken.";
+$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait.";
+$a->strings["Generate encryption keys"] = "";
+$a->strings["libCurl PHP module"] = "libCurl PHP module";
+$a->strings["GD graphics PHP module"] = "GD graphics PHP module";
+$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module";
+$a->strings["mysqli PHP module"] = "mysqli PHP module";
+$a->strings["mb_string PHP module"] = "mb_string PHP module";
+$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd.";
+$a->strings["Error: mysqli PHP module required but not installed."] = "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd.";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen.";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel.";
+$a->strings["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."] = "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies.";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php is schrijfbaar";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen.";
+$a->strings["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."] = "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map.";
+$a->strings["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."] = "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 is schrijfbaar";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
+$a->strings["Url rewrite is working"] = "";
+$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver.";
+$a->strings["Errors encountered creating database tables."] = "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld.";
+$a->strings["<h1>What next</h1>"] = "<h1>Wat nu</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller.";
+$a->strings["Group created."] = "Groep aangemaakt.";
+$a->strings["Could not create group."] = "Kon de groep niet aanmaken.";
+$a->strings["Group not found."] = "Groep niet gevonden.";
+$a->strings["Group name changed."] = "Groepsnaam gewijzigd.";
+$a->strings["Save Group"] = "";
+$a->strings["Create a group of contacts/friends."] = "Maak een groep contacten/vrienden aan.";
+$a->strings["Group Name: "] = "Groepsnaam:";
+$a->strings["Group removed."] = "Groep verwijderd.";
+$a->strings["Unable to remove group."] = "Niet in staat om groep te verwijderen.";
+$a->strings["Group Editor"] = "Groepsbewerker";
+$a->strings["Members"] = "Leden";
+$a->strings["No such group"] = "Zo'n groep bestaat niet";
+$a->strings["Group is empty"] = "De groep is leeg";
+$a->strings["Group: "] = "Groep:";
+$a->strings["View in context"] = "In context bekijken";
+$a->strings["Account approved."] = "Account goedgekeurd.";
+$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s";
+$a->strings["Please login."] = "Inloggen.";
 $a->strings["Profile Match"] = "Profielmatch";
 $a->strings["No keywords to match. Please add keywords to your default profile."] = "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel.";
 $a->strings["is interested in:"] = "Is geïnteresseerd in:";
-$a->strings["Tag removed"] = "Label verwijderd";
-$a->strings["Remove Item Tag"] = "Verwijder label van item";
-$a->strings["Select a tag to remove: "] = "Selecteer een label om te verwijderen: ";
-$a->strings["Remove"] = "Verwijderen";
-$a->strings["Event title and start time are required."] = "Titel en begintijd van de gebeurtenis zijn vereist.";
-$a->strings["l, F j"] = "l j F";
-$a->strings["Edit event"] = "Gebeurtenis bewerken";
-$a->strings["link to source"] = "Verwijzing naar bron";
-$a->strings["Create New Event"] = "Maak een nieuwe gebeurtenis";
-$a->strings["Previous"] = "Vorige";
-$a->strings["hour:minute"] = "uur:minuut";
-$a->strings["Event details"] = "Gebeurtenis details";
-$a->strings["Format is %s %s. Starting date and Title are required."] = "Formaat is %s %s. Begindatum en titel zijn vereist.";
-$a->strings["Event Starts:"] = "Gebeurtenis begint:";
-$a->strings["Required"] = "Vereist";
-$a->strings["Finish date/time is not known or not relevant"] = "Einddatum/tijd is niet gekend of niet relevant";
-$a->strings["Event Finishes:"] = "Gebeurtenis eindigt:";
-$a->strings["Adjust for viewer timezone"] = "Pas aan aan de tijdzone van de gebruiker";
-$a->strings["Description:"] = "Beschrijving:";
-$a->strings["Title:"] = "Titel:";
-$a->strings["Share this event"] = "Deel deze gebeurtenis";
-$a->strings["No potential page delegates located."] = "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden.";
-$a->strings["Delegate Page Management"] = "Paginabeheer uitbesteden";
-$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."] = "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd.";
-$a->strings["Existing Page Managers"] = "Bestaande paginabeheerders";
-$a->strings["Existing Page Delegates"] = "Bestaande personen waaraan het paginabeheer is uitbesteed";
-$a->strings["Potential Delegates"] = "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed ";
-$a->strings["Add"] = "Toevoegen";
-$a->strings["No entries."] = "Geen gegevens.";
-$a->strings["Contacts who are not members of a group"] = "Contacten die geen leden zijn van een groep";
-$a->strings["Files"] = "Bestanden";
-$a->strings["System down for maintenance"] = "Systeem onbeschikbaar wegens onderhoud";
-$a->strings["Remove My Account"] = "Verwijder mijn account";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is.";
-$a->strings["Please enter your password for verification:"] = "Voer je wachtwoord in voor verificatie:";
-$a->strings["Friend suggestion sent."] = "Vriendschapsvoorstel verzonden.";
-$a->strings["Suggest Friends"] = "Stel vrienden voor";
-$a->strings["Suggest a friend for %s"] = "Stel een vriend voor aan %s";
 $a->strings["Unable to locate original post."] = "Ik kan de originele post niet meer vinden.";
 $a->strings["Empty post discarded."] = "Lege post weggegooid.";
 $a->strings["System error. Post not saved."] = "Systeemfout. Post niet bewaard.";
@@ -1205,170 +1161,187 @@ $a->strings["This message was sent to you by %s, a member of the Friendica socia
 $a->strings["You may visit them online at %s"] = "Je kunt ze online bezoeken op %s";
 $a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen.";
 $a->strings["%s posted an update."] = "%s heeft een wijziging geplaatst.";
-$a->strings["{0} wants to be your friend"] = "{0} wilt je vriend worden";
-$a->strings["{0} sent you a message"] = "{0} stuurde jou een berichtje";
-$a->strings["{0} requested registration"] = "{0} vroeg om zich te registreren";
-$a->strings["{0} commented %s's post"] = "{0} gaf een reactie op het bericht van %s";
-$a->strings["{0} liked %s's post"] = "{0} vond het bericht van %s leuk";
-$a->strings["{0} disliked %s's post"] = "{0} vond het bericht van %s niet leuk";
-$a->strings["{0} is now friends with %s"] = "{0} is nu bevriend met %s";
-$a->strings["{0} posted"] = "{0} plaatste";
-$a->strings["{0} tagged %s's post with #%s"] = "{0} labelde %s's bericht met #%s";
-$a->strings["{0} mentioned you in a post"] = "{0} vermeldde je in een bericht";
-$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol fout. Geen ID Gevonden.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website.";
-$a->strings["Login failed."] = "Login mislukt.";
-$a->strings["Invalid request identifier."] = "Ongeldige <em>request identifier</em>.";
-$a->strings["Discard"] = "Verwerpen";
-$a->strings["System"] = "Systeem";
-$a->strings["Network"] = "Netwerk";
-$a->strings["Introductions"] = "Verzoeken";
-$a->strings["Show Ignored Requests"] = "Toon genegeerde verzoeken";
-$a->strings["Hide Ignored Requests"] = "Verberg genegeerde verzoeken";
-$a->strings["Notification type: "] = "Notificatiesoort:";
-$a->strings["Friend Suggestion"] = "Vriendschapsvoorstel";
-$a->strings["suggested by %s"] = "Voorgesteld door %s";
-$a->strings["Post a new friend activity"] = "Bericht over een nieuwe vriend";
-$a->strings["if applicable"] = "Indien toepasbaar";
-$a->strings["Claims to be known to you: "] = "Denkt dat u hem of haar kent:";
-$a->strings["yes"] = "Ja";
-$a->strings["no"] = "Nee";
-$a->strings["Approve as: "] = "Goedkeuren als:";
-$a->strings["Friend"] = "Vriend";
-$a->strings["Sharer"] = "Deler";
-$a->strings["Fan/Admirer"] = "Fan/Bewonderaar";
-$a->strings["Friend/Connect Request"] = "Vriendschapsverzoek";
-$a->strings["New Follower"] = "Nieuwe Volger";
-$a->strings["No introductions."] = "Geen vriendschaps- of connectieverzoeken.";
-$a->strings["Notifications"] = "Notificaties";
-$a->strings["%s liked %s's post"] = "%s vond het bericht van %s leuk";
-$a->strings["%s disliked %s's post"] = "%s vond het bericht van %s niet leuk";
-$a->strings["%s is now friends with %s"] = "%s is nu bevriend met %s";
-$a->strings["%s created a new post"] = "%s schreef een nieuw bericht";
-$a->strings["%s commented on %s's post"] = "%s gaf een reactie op het bericht van %s";
-$a->strings["No more network notifications."] = "Geen netwerknotificaties meer";
-$a->strings["Network Notifications"] = "Netwerknotificaties";
-$a->strings["No more personal notifications."] = "Geen persoonlijke notificaties meer";
-$a->strings["Personal Notifications"] = "Persoonlijke notificaties";
-$a->strings["No more home notifications."] = "Geen tijdlijn-notificaties meer";
-$a->strings["Home Notifications"] = "Tijdlijn-notificaties";
-$a->strings["Total invitation limit exceeded."] = "Totale uitnodigingslimiet overschreden.";
-$a->strings["%s : Not a valid email address."] = "%s: Geen geldig e-mailadres.";
-$a->strings["Please join us on Friendica"] = "Kom bij ons op Friendica";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website.";
-$a->strings["%s : Message delivery failed."] = "%s : Aflevering van bericht mislukt.";
-$a->strings["%d message sent."] = array(
-       0 => "%d bericht verzonden.",
-       1 => "%d berichten verzonden.",
-);
-$a->strings["You have no more invitations available"] = "Je kunt geen uitnodigingen meer sturen";
-$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."] = "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke 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."] = "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen.";
-$a->strings["Send invitations"] = "Verstuur uitnodigingen";
-$a->strings["Enter email addresses, one per line:"] = "Vul e-mailadressen in, één per lijn:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Je zult deze uitnodigingscode moeten invullen: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken";
-$a->strings["Manage Identities and/or Pages"] = "Beheer Identiteiten en/of Pagina's";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Wissel tussen verschillende identiteiten of groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen.";
-$a->strings["Select an identity to manage: "] = "Selecteer een identiteit om te beheren:";
-$a->strings["Welcome to %s"] = "Welkom op %s";
-$a->strings["Friends of %s"] = "Vrienden van %s";
-$a->strings["No friends to display."] = "Geen vrienden om te laten zien.";
-$a->strings["Add New Contact"] = "Nieuw Contact toevoegen";
-$a->strings["Enter address or web location"] = "Voeg een webadres of -locatie in:";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara";
-$a->strings["%d invitation available"] = array(
-       0 => "%d uitnodiging beschikbaar",
-       1 => "%d uitnodigingen beschikbaar",
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s is op dit moment %2\$s";
+$a->strings["Mood"] = "Stemming";
+$a->strings["Set your current mood and tell your friends"] = "Stel je huidige stemming in, en vertel het je vrienden";
+$a->strings["Search Results For:"] = "Zoekresultaten voor:";
+$a->strings["add"] = "toevoegen";
+$a->strings["Commented Order"] = "Nieuwe reacties bovenaan";
+$a->strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan";
+$a->strings["Posted Order"] = "Nieuwe berichten bovenaan";
+$a->strings["Sort by Post Date"] = "Nieuwe berichten bovenaan";
+$a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of op jou betrekking hebben";
+$a->strings["New"] = "Nieuw";
+$a->strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum";
+$a->strings["Shared Links"] = "Gedeelde links";
+$a->strings["Interesting Links"] = "Interessante links";
+$a->strings["Starred"] = "Met ster";
+$a->strings["Favourite Posts"] = "Favoriete berichten";
+$a->strings["Warning: This group contains %s member from an insecure network."] = array(
+       0 => "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk.",
+       1 => "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk.",
 );
-$a->strings["Find People"] = "Zoek mensen";
-$a->strings["Enter name or interest"] = "Vul naam of interesse in";
-$a->strings["Connect/Follow"] = "Verbind/Volg";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeelden: Jan Peeters, Vissen";
-$a->strings["Random Profile"] = "Willekeurig Profiel";
-$a->strings["Networks"] = "Netwerken";
-$a->strings["All Networks"] = "Alle netwerken";
+$a->strings["Private messages to this group are at risk of public disclosure."] = "Privéberichten naar deze groep kunnen openbaar gemaakt worden.";
+$a->strings["Contact: "] = "Contact: ";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Privéberichten naar deze persoon kunnen openbaar gemaakt worden.";
+$a->strings["Invalid contact."] = "Ongeldig contact.";
+$a->strings["Contact settings applied."] = "Contactinstellingen toegepast.";
+$a->strings["Contact update failed."] = "Aanpassen van contact mislukt.";
+$a->strings["Repair Contact Settings"] = "Contactinstellingen herstellen";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Gebruik <strong>nu</strong> de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen.";
+$a->strings["Return to contact editor"] = "Ga terug naar contactbewerker";
+$a->strings["Account Nickname"] = "Bijnaam account";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Labelnaam - krijgt voorrang op naam/bijnaam";
+$a->strings["Account URL"] = "URL account";
+$a->strings["Friend Request URL"] = "URL vriendschapsverzoek";
+$a->strings["Friend Confirm URL"] = "";
+$a->strings["Notification Endpoint URL"] = "";
+$a->strings["Poll/Feed URL"] = "URL poll/feed";
+$a->strings["New photo from this URL"] = "Nieuwe foto van deze URL";
+$a->strings["Remote Self"] = "";
+$a->strings["Mirror postings from this contact"] = "";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "";
+$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties";
+$a->strings["Your profile page"] = "Jouw profiel pagina";
+$a->strings["Your contacts"] = "Jouw contacten";
+$a->strings["Your photos"] = "Jouw foto's";
+$a->strings["Your events"] = "Jouw gebeurtenissen";
+$a->strings["Personal notes"] = "Persoonlijke nota's";
+$a->strings["Your personal photos"] = "Jouw persoonlijke foto's";
+$a->strings["Community Pages"] = "Gemeenschapspagina's";
+$a->strings["Community Profiles"] = "Gemeenschapsprofielen";
+$a->strings["Last users"] = "Laatste gebruikers";
+$a->strings["Last likes"] = "Recent leuk gevonden";
+$a->strings["event"] = "gebeurtenis";
+$a->strings["Last photos"] = "Laatste foto's";
+$a->strings["Find Friends"] = "Zoek vrienden";
+$a->strings["Local Directory"] = "Lokale gids";
+$a->strings["Similar Interests"] = "Dezelfde interesses";
+$a->strings["Invite Friends"] = "Vrienden uitnodigen";
+$a->strings["Earth Layers"] = "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"] = "Diensten verbinden";
+$a->strings["don't show"] = "Niet tonen";
+$a->strings["show"] = "tonen";
+$a->strings["Show/hide boxes at right-hand column:"] = "";
+$a->strings["Theme settings"] = "Thema-instellingen";
+$a->strings["Set font-size for posts and comments"] = "Stel lettergrootte voor berichten en reacties in";
+$a->strings["Set line-height for posts and comments"] = "Stel lijnhoogte voor berichten en reacties in";
+$a->strings["Set resolution for middle column"] = "Stel resolutie in voor de middelste kolom. ";
+$a->strings["Set color scheme"] = "Stel kleurenschema in";
+$a->strings["Set zoomfactor for Earth Layer"] = "";
+$a->strings["Set style"] = "";
+$a->strings["Set colour scheme"] = "Stel kleurschema in";
+$a->strings["Alignment"] = "Uitlijning";
+$a->strings["Left"] = "Links";
+$a->strings["Center"] = "Gecentreerd";
+$a->strings["Color scheme"] = "Kleurschema";
+$a->strings["Posts font size"] = "Lettergrootte berichten";
+$a->strings["Textareas font size"] = "Lettergrootte tekstgebieden";
+$a->strings["Set resize level for images in posts and comments (width and height)"] = "";
+$a->strings["Set theme width"] = "Stel breedte van het thema in";
+$a->strings["Delete this item?"] = "Dit item verwijderen?";
+$a->strings["show fewer"] = "Minder tonen";
+$a->strings["Update %s failed. See error logs."] = "Wijziging %s mislukt. Lees de error logbestanden.";
+$a->strings["Update Error at %s"] = "Wijzigingsfout op %s";
+$a->strings["Create a New Account"] = "Nieuw account aanmaken";
+$a->strings["Logout"] = "Uitloggen";
+$a->strings["Login"] = "Login";
+$a->strings["Nickname or Email address: "] = "Bijnaam of e-mailadres:";
+$a->strings["Password: "] = "Wachtwoord:";
+$a->strings["Remember me"] = "Onthou me";
+$a->strings["Or login using OpenID: "] = "Of log in met OpenID:";
+$a->strings["Forgot your password?"] = "Wachtwoord vergeten?";
+$a->strings["Website Terms of Service"] = "Gebruikersvoorwaarden website";
+$a->strings["terms of service"] = "servicevoorwaarden";
+$a->strings["Website Privacy Policy"] = "Privacybeleid website";
+$a->strings["privacy policy"] = "privacybeleid";
+$a->strings["Requested account is not available."] = "Gevraagde account is niet beschikbaar.";
+$a->strings["Edit profile"] = "Bewerk profiel";
+$a->strings["Message"] = "Bericht";
+$a->strings["Profiles"] = "Profielen";
+$a->strings["Manage/edit profiles"] = "Beheer/wijzig profielen";
+$a->strings["g A l F d"] = "G l j F";
+$a->strings["F d"] = "d F";
+$a->strings["[today]"] = "[vandaag]";
+$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen";
+$a->strings["Birthdays this week:"] = "Verjaardagen deze week:";
+$a->strings["[No description]"] = "[Geen beschrijving]";
+$a->strings["Event Reminders"] = "Gebeurtenisherinneringen";
+$a->strings["Events this week:"] = "Gebeurtenissen deze week:";
+$a->strings["Status"] = "Tijdlijn";
+$a->strings["Status Messages and Posts"] = "Berichten op jouw tijdlijn";
+$a->strings["Profile Details"] = "Profieldetails";
+$a->strings["Videos"] = "Video's";
+$a->strings["Events and Calendar"] = "Gebeurtenissen en kalender";
+$a->strings["Only You Can See This"] = "Alleen jij kunt dit zien";
+$a->strings["General Features"] = "Algemene functies";
+$a->strings["Multiple Profiles"] = "Meerdere profielen";
+$a->strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken";
+$a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten";
+$a->strings["Richtext Editor"] = "RTF-tekstverwerker";
+$a->strings["Enable richtext editor"] = "Gebruik een tekstverwerker met eenvoudige opmaakfuncties";
+$a->strings["Post Preview"] = "Voorvertoning bericht";
+$a->strings["Allow previewing posts and comments before publishing them"] = "";
+$a->strings["Auto-mention Forums"] = "";
+$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "";
+$a->strings["Network Sidebar Widgets"] = "Zijbalkwidgets op netwerkpagina";
+$a->strings["Search by Date"] = "Zoeken op datum";
+$a->strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten te selecteren volgens datumbereik";
+$a->strings["Group Filter"] = "Groepsfilter";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen";
+$a->strings["Network Filter"] = "Netwerkfilter";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken";
+$a->strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik";
+$a->strings["Network Tabs"] = "Netwerktabs";
+$a->strings["Network Personal Tab"] = "Persoonlijke netwerktab";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had";
+$a->strings["Network New Tab"] = "Nieuwe netwerktab";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)";
+$a->strings["Network Shared Links Tab"] = "";
+$a->strings["Enable tab to display only Network posts with links in them"] = "";
+$a->strings["Post/Comment Tools"] = "Bericht-/reactiehulpmiddelen";
+$a->strings["Multiple Deletion"] = "Meervoudige verwijdering";
+$a->strings["Select and delete multiple posts/comments at once"] = "Selecteer en verwijder meerdere berichten/reacties in een keer";
+$a->strings["Edit Sent Posts"] = "Bewerk verzonden berichten";
+$a->strings["Edit and correct posts and comments after sending"] = "Bewerk en corrigeer berichten en reacties na verzending";
+$a->strings["Tagging"] = "Labelen";
+$a->strings["Ability to tag existing posts"] = "Mogelijkheid om bestaande berichten te labelen";
+$a->strings["Post Categories"] = "Categorieën berichten";
+$a->strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten";
 $a->strings["Saved Folders"] = "Bewaarde Mappen";
-$a->strings["Everything"] = "Alles";
-$a->strings["Categories"] = "Categorieën";
-$a->strings["Click here to upgrade."] = "";
-$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["User not found."] = "";
-$a->strings["There is no status with this id."] = "Er is geen status met dit kenmerk";
-$a->strings["view full size"] = "Volledig formaat";
-$a->strings["Starts:"] = "Begint:";
-$a->strings["Finishes:"] = "Eindigt:";
-$a->strings["(no subject)"] = "(geen onderwerp)";
-$a->strings["noreply"] = "geen reactie";
-$a->strings["An invitation is required."] = "Een uitnodiging is vereist.";
-$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden.";
-$a->strings["Invalid OpenID url"] = "Ongeldige OpenID url";
+$a->strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen te bewaren";
+$a->strings["Dislike Posts"] = "Vind berichten niet leuk";
+$a->strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten of reacties niet leuk te vinden";
+$a->strings["Star Posts"] = "Geef berichten een ster";
+$a->strings["Ability to mark special posts with a star indicator"] = "";
+$a->strings["Logged out."] = "Uitgelogd.";
 $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:"] = "De foutboodschap was:";
-$a->strings["Please enter the required information."] = "Vul a.u.b. de vereiste informatie in.";
-$a->strings["Please use a shorter name."] = "gebruik een kortere naam";
-$a->strings["Name too short."] = "Naam te kort";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn.";
-$a->strings["Your email domain is not among those allowed on this site."] = "Je e-maildomein is op deze website niet toegestaan.";
-$a->strings["Not a valid email address."] = "Geen geldig e-mailadres.";
-$a->strings["Cannot use that email."] = "Ik kan die e-mail niet gebruiken.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen.";
-$a->strings["Nickname is already registered. Please choose another."] = "Bijnaam is al geregistreerd. Kies een andere.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt.";
-$a->strings["An error occurred during registration. Please try again."] = "";
-$a->strings["An error occurred creating your default profile. Please try again."] = "";
-$a->strings["Friends"] = "Vrienden";
-$a->strings["%1\$s poked %2\$s"] = "%1\$s stootte %2\$s aan";
-$a->strings["poked"] = "aangestoten";
-$a->strings["post/item"] = "bericht/item";
-$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s markeerde %2\$s's %3\$s als favoriet";
-$a->strings["remove"] = "verwijder";
-$a->strings["Delete Selected Items"] = "Geselecteerde items verwijderen";
-$a->strings["Follow Thread"] = "Conversatie volgen";
-$a->strings["View Status"] = "Bekijk status";
-$a->strings["View Profile"] = "Bekijk profiel";
-$a->strings["View Photos"] = "Bekijk foto's";
-$a->strings["Network Posts"] = "Netwerkberichten";
-$a->strings["Edit Contact"] = "Bewerk contact";
-$a->strings["Send PM"] = "Stuur een privébericht";
-$a->strings["Poke"] = "Aanstoten";
-$a->strings["%s likes this."] = "%s vind dit leuk.";
-$a->strings["%s doesn't like this."] = "%s vind dit niet leuk.";
-$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d mensen</span> vinden dit leuk";
-$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d people</span> vinden dit niet leuk";
-$a->strings["and"] = "en";
-$a->strings[", and %d other people"] = ", en %d andere mensen";
-$a->strings["%s like this."] = "%s vind dit leuk.";
-$a->strings["%s don't like this."] = "%s vind dit niet leuk.";
-$a->strings["Visible to <strong>everybody</strong>"] = "Zichtbaar voor <strong>iedereen</strong>";
-$a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:";
-$a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:";
-$a->strings["Tag term:"] = "Label:";
-$a->strings["Where are you right now?"] = "Waar ben je nu?";
-$a->strings["Delete item(s)?"] = "Item(s) verwijderen?";
-$a->strings["Post to Email"] = "Verzenden per e-mail";
-$a->strings["permissions"] = "rechten";
-$a->strings["Post to Groups"] = "Verzenden naar Groepen";
-$a->strings["Post to Contacts"] = "Verzenden naar Contacten";
-$a->strings["Private post"] = "Privé verzending";
-$a->strings["Logged out."] = "Uitgelogd.";
-$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!"] = "Gebruiker '%s' bestaat al op deze server!";
-$a->strings["User creation error"] = "Fout bij het aanmaken van de gebruiker";
-$a->strings["User profile creation error"] = "Fout bij het aanmaken van het gebruikersprofiel";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d contact werd niet geïmporteerd",
-       1 => "%d contacten werden niet geïmporteerd",
-);
-$a->strings["Done. You can now login with your username and password"] = "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord";
+$a->strings["Starts:"] = "Begint:";
+$a->strings["Finishes:"] = "Eindigt:";
+$a->strings["j F, Y"] = "F j Y";
+$a->strings["j F"] = "F j";
+$a->strings["Birthday:"] = "Verjaardag:";
+$a->strings["Age:"] = "Leeftijd:";
+$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s";
+$a->strings["Tags:"] = "Labels:";
+$a->strings["Religion:"] = "Religie:";
+$a->strings["Hobbies/Interests:"] = "Hobby:";
+$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:";
+$a->strings["Musical interests:"] = "Muzikale interesse ";
+$a->strings["Books, literature:"] = "Boeken, literatuur:";
+$a->strings["Television:"] = "Televisie";
+$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/cultuur/ontspanning:";
+$a->strings["Love/Romance:"] = "Liefde/romance:";
+$a->strings["Work/employment:"] = "Werk/beroep:";
+$a->strings["School/education:"] = "School/opleiding:";
+$a->strings["[no subject]"] = "[geen onderwerp]";
+$a->strings[" on Last.fm"] = " op Last.fm";
 $a->strings["newer"] = "nieuwere berichten";
 $a->strings["older"] = "oudere berichten";
 $a->strings["prev"] = "vorige";
@@ -1381,6 +1354,7 @@ $a->strings["%d Contact"] = array(
        1 => "%d contacten",
 );
 $a->strings["poke"] = "aanstoten";
+$a->strings["poked"] = "aangestoten";
 $a->strings["ping"] = "ping";
 $a->strings["pinged"] = "gepingd";
 $a->strings["prod"] = "porren";
@@ -1432,200 +1406,37 @@ $a->strings["November"] = "November";
 $a->strings["December"] = "December";
 $a->strings["bytes"] = "bytes";
 $a->strings["Click to open/close"] = "klik om te openen/sluiten";
+$a->strings["default"] = "standaard";
 $a->strings["Select an alternate language"] = "Kies een andere taal";
 $a->strings["activity"] = "activiteit";
 $a->strings["post"] = "bericht";
-$a->strings["Item filed"] = "Item bewaard";
-$a->strings["Friendica Notification"] = "Friendica Notificatie";
-$a->strings["Thank You,"] = "Bedankt";
-$a->strings["%s Administrator"] = "%s Beheerder";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notificatie] Nieuw bericht ontvangen op %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s sent you a new private message at %2\$s.";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s stuurde jou %2\$s.";
-$a->strings["a private message"] = "een prive bericht";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]a %3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]%3\$s's %4\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]jouw %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 gaf een reactie op een bericht/conversatie die jij volgt.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of te beantwoorden.";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "";
-$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:Notificatie] %s heeft jou genoemd";
-$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s heeft jou in %2\$s genoemd";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]heeft jou genoemd[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s heeft jou aangestoten";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s heeft jou aangestoten op %2\$s";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notificatie] %s heeft jouw bericht gelabeld";
-$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s heeft jouw bericht gelabeld in %2\$s";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s labelde [url=%2\$s]jouw bericht[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1\$s' om %2\$s";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Je ontving [url=%1\$s]een vriendschaps- of connectieverzoek[/url] van %2\$s.";
-$a->strings["You may visit their profile at %s"] = "U kunt hun profiel bezoeken op %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Bezoek %s om het verzoek goed of af te keuren.";
-$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:"] = "Naam:";
-$a->strings["Photo:"] = "Foto: ";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "";
-$a->strings[" on Last.fm"] = " op 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."] = "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten <strong>kunnen</strong> voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. ";
-$a->strings["Default privacy group for new contacts"] = "";
-$a->strings["Everybody"] = "Iedereen";
-$a->strings["edit"] = "verander";
-$a->strings["Edit group"] = "Verander groep";
-$a->strings["Create a new group"] = "Maak nieuwe groep";
-$a->strings["Contacts not in any group"] = "";
-$a->strings["Connect URL missing."] = "";
-$a->strings["This site is not configured to allow communications with other networks."] = "Deze website is niet geconfigureerd voor communicatie met andere netwerken.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Er werden geen compatibele communicatieprotocols of feeds ontdekt.";
-$a->strings["The profile address specified does not provide adequate information."] = "";
-$a->strings["An author or name was not found."] = "";
-$a->strings["No browser URL could be matched to this address."] = "";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact.";
-$a->strings["Use mailto: in front of address to force email check."] = "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "";
-$a->strings["Unable to retrieve contact information."] = "";
-$a->strings["following"] = "volgend";
-$a->strings["[no subject]"] = "[geen onderwerp]";
-$a->strings["End this session"] = "Deze sessie beëindigen";
-$a->strings["Sign in"] = "Inloggen";
-$a->strings["Home Page"] = "Jouw tijdlijn";
-$a->strings["Create an account"] = "Maak een accoount";
-$a->strings["Help and documentation"] = "Hulp en documentatie";
-$a->strings["Apps"] = "Apps";
-$a->strings["Addon applications, utilities, games"] = "Extra toepassingen, hulpmiddelen of spelletjes";
-$a->strings["Search site content"] = "Doorzoek de inhoud van de website";
-$a->strings["Conversations on this site"] = "Conversaties op deze website";
-$a->strings["Directory"] = "Gids";
-$a->strings["People directory"] = "Personengids";
-$a->strings["Conversations from your friends"] = "Conversaties van je vrienden";
-$a->strings["Network Reset"] = "Netwerkpagina opnieuw instellen";
-$a->strings["Load Network page with no filters"] = "Laad de netwerkpagina zonder filters";
-$a->strings["Friend Requests"] = "Vriendschapsverzoeken";
-$a->strings["See all notifications"] = "Toon alle notificaties";
-$a->strings["Mark all system notifications seen"] = "Alle systeemnotificaties als gelezen markeren";
-$a->strings["Private mail"] = "Privéberichten";
-$a->strings["Inbox"] = "Inbox";
-$a->strings["Outbox"] = "Verzonden berichten";
-$a->strings["Manage"] = "Beheren";
-$a->strings["Manage other pages"] = "Andere pagina's beheren";
-$a->strings["Delegations"] = "";
-$a->strings["Manage/Edit Profiles"] = "Beheer/Wijzig Profielen";
-$a->strings["Manage/edit friends and contacts"] = "Beheer/Wijzig vrienden en contacten";
-$a->strings["Site setup and configuration"] = "Website opzetten en configureren";
-$a->strings["Navigation"] = "Navigatie";
-$a->strings["Site map"] = "Sitemap";
-$a->strings["j F, Y"] = "F j Y";
-$a->strings["j F"] = "F j";
-$a->strings["Birthday:"] = "Verjaardag:";
-$a->strings["Age:"] = "Leeftijd:";
-$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s";
-$a->strings["Tags:"] = "Labels:";
-$a->strings["Religion:"] = "Religie:";
-$a->strings["Hobbies/Interests:"] = "Hobby:";
-$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:";
-$a->strings["Musical interests:"] = "Muzikale interesse ";
-$a->strings["Books, literature:"] = "Boeken, literatuur:";
-$a->strings["Television:"] = "Televisie";
-$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/cultuur/ontspanning:";
-$a->strings["Love/Romance:"] = "Liefde/romance:";
-$a->strings["Work/employment:"] = "Werk/beroep:";
-$a->strings["School/education:"] = "School/opleiding:";
-$a->strings["Image/photo"] = "Afbeelding/foto";
-$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "<span><a href=\"%s\" target=\"external-link\">%s</a> schreef het volgende <a href=\"%s\" target=\"external-link\">bericht</a>";
-$a->strings["$1 wrote:"] = "$1 schreef:";
-$a->strings["Encrypted content"] = "Versleutelde inhoud";
-$a->strings["Unknown | Not categorised"] = "Onbekend | Niet ";
-$a->strings["Block immediately"] = "Onmiddellijk blokkeren";
-$a->strings["Shady, spammer, self-marketer"] = "";
-$a->strings["Known to me, but no opinion"] = "Bekend, maar geen mening";
-$a->strings["OK, probably harmless"] = "OK, waarschijnlijk onschadelijk";
-$a->strings["Reputable, has my trust"] = "Gerenommeerd, heeft mijn vertrouwen";
-$a->strings["Weekly"] = "wekelijks";
-$a->strings["Monthly"] = "maandelijks";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Zot!"] = "Zot!";
-$a->strings["LinkedIn"] = "Linkedln";
-$a->strings["XMPP/IM"] = "XMPP/IM";
-$a->strings["MySpace"] = "Myspace";
-$a->strings["Google+"] = "Google+";
-$a->strings["pump.io"] = "";
-$a->strings["Twitter"] = "";
-$a->strings["Miscellaneous"] = "Diversen";
-$a->strings["year"] = "jaar";
-$a->strings["month"] = "maand";
-$a->strings["day"] = "dag";
-$a->strings["never"] = "nooit";
-$a->strings["less than a second ago"] = "minder dan een seconde geleden";
-$a->strings["years"] = "jaren";
-$a->strings["months"] = "maanden";
-$a->strings["week"] = "week";
-$a->strings["weeks"] = "weken";
-$a->strings["days"] = "dagen";
-$a->strings["hour"] = "uur";
-$a->strings["hours"] = "uren";
-$a->strings["minute"] = "minuut";
-$a->strings["minutes"] = "minuten";
-$a->strings["second"] = "seconde";
-$a->strings["seconds"] = "secondes";
-$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden";
+$a->strings["Item filed"] = "Item bewaard";
+$a->strings["User not found."] = "";
+$a->strings["There is no status with this id."] = "Er is geen status met dit kenmerk";
+$a->strings["There is no conversation with this id."] = "";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "";
 $a->strings["%s's birthday"] = "%s's verjaardag";
 $a->strings["Happy Birthday %s"] = "Gefeliciteerd %s";
-$a->strings["General Features"] = "Algemene functies";
-$a->strings["Multiple Profiles"] = "Meerdere profielen";
-$a->strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken";
-$a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten";
-$a->strings["Richtext Editor"] = "RTF-tekstverwerker";
-$a->strings["Enable richtext editor"] = "Gebruik een tekstverwerker met eenvoudige opmaakfuncties";
-$a->strings["Post Preview"] = "Voorvertoning bericht";
-$a->strings["Allow previewing posts and comments before publishing them"] = "";
-$a->strings["Network Sidebar Widgets"] = "Zijbalkwidgets op netwerkpagina";
-$a->strings["Search by Date"] = "Zoeken op datum";
-$a->strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten te selecteren volgens datumbereik";
-$a->strings["Group Filter"] = "Groepsfilter";
-$a->strings["Enable widget to display Network posts only from selected group"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen";
-$a->strings["Network Filter"] = "Netwerkfilter";
-$a->strings["Enable widget to display Network posts only from selected network"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken";
-$a->strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik";
-$a->strings["Network Tabs"] = "Netwerktabs";
-$a->strings["Network Personal Tab"] = "Persoonlijke netwerktab";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had";
-$a->strings["Network New Tab"] = "Nieuwe netwerktab";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)";
-$a->strings["Network Shared Links Tab"] = "";
-$a->strings["Enable tab to display only Network posts with links in them"] = "";
-$a->strings["Post/Comment Tools"] = "Bericht-/reactiehulpmiddelen";
-$a->strings["Multiple Deletion"] = "Meervoudige verwijdering";
-$a->strings["Select and delete multiple posts/comments at once"] = "Selecteer en verwijder meerdere berichten/reacties in een keer";
-$a->strings["Edit Sent Posts"] = "Bewerk verzonden berichten";
-$a->strings["Edit and correct posts and comments after sending"] = "Bewerk en corrigeer berichten en reacties na verzending";
-$a->strings["Tagging"] = "Labelen";
-$a->strings["Ability to tag existing posts"] = "Mogelijkheid om bestaande berichten te labelen";
-$a->strings["Post Categories"] = "Categorieën berichten";
-$a->strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten";
-$a->strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen te bewaren";
-$a->strings["Dislike Posts"] = "Vind berichten niet leuk";
-$a->strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten of reacties niet leuk te vinden";
-$a->strings["Star Posts"] = "Geef berichten een ster";
-$a->strings["Ability to mark special posts with a star indicator"] = "";
-$a->strings["Sharing notification from Diaspora network"] = "";
-$a->strings["Attachments:"] = "Bijlagen:";
-$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen";
 $a->strings["A new person is sharing with you at "] = "";
 $a->strings["You have a new follower at "] = "Je hebt een nieuwe volger op ";
 $a->strings["Do you really want to delete this item?"] = "Wil je echt dit item verwijderen?";
 $a->strings["Archives"] = "Archieven";
-$a->strings["Embedded content"] = "Ingebedde inhoud";
-$a->strings["Embedding disabled"] = "Inbedden uitgeschakeld";
+$a->strings["(no subject)"] = "(geen onderwerp)";
+$a->strings["noreply"] = "geen reactie";
+$a->strings["Sharing notification from Diaspora network"] = "";
+$a->strings["Attachments:"] = "Bijlagen:";
+$a->strings["Connect URL missing."] = "";
+$a->strings["This site is not configured to allow communications with other networks."] = "Deze website is niet geconfigureerd voor communicatie met andere netwerken.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Er werden geen compatibele communicatieprotocols of feeds ontdekt.";
+$a->strings["The profile address specified does not provide adequate information."] = "";
+$a->strings["An author or name was not found."] = "";
+$a->strings["No browser URL could be matched to this address."] = "";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact.";
+$a->strings["Use mailto: in front of address to force email check."] = "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "";
+$a->strings["Unable to retrieve contact information."] = "";
+$a->strings["following"] = "volgend";
 $a->strings["Welcome "] = "Welkom";
 $a->strings["Please upload a profile photo."] = "Upload een profielfoto.";
 $a->strings["Welcome back "] = "Welkom terug ";
@@ -1666,6 +1477,7 @@ $a->strings["Infatuated"] = "";
 $a->strings["Dating"] = "Aan het daten";
 $a->strings["Unfaithful"] = "Ontrouw";
 $a->strings["Sex Addict"] = "Seksverslaafd";
+$a->strings["Friends"] = "Vrienden";
 $a->strings["Friends/Benefits"] = "Vriendschap plus";
 $a->strings["Casual"] = "";
 $a->strings["Engaged"] = "Verloofd";
@@ -1687,6 +1499,208 @@ $a->strings["Uncertain"] = "Onzeker";
 $a->strings["It's complicated"] = "Het is gecompliceerd";
 $a->strings["Don't care"] = "Kan me niet schelen";
 $a->strings["Ask me"] = "Vraag me";
+$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!"] = "Gebruiker '%s' bestaat al op deze server!";
+$a->strings["User creation error"] = "Fout bij het aanmaken van de gebruiker";
+$a->strings["User profile creation error"] = "Fout bij het aanmaken van het gebruikersprofiel";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d contact werd niet geïmporteerd",
+       1 => "%d contacten werden niet geïmporteerd",
+);
+$a->strings["Done. You can now login with your username and password"] = "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord";
+$a->strings["Click here to upgrade."] = "";
+$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["%1\$s poked %2\$s"] = "%1\$s stootte %2\$s aan";
+$a->strings["post/item"] = "bericht/item";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s markeerde %2\$s's %3\$s als favoriet";
+$a->strings["remove"] = "verwijder";
+$a->strings["Delete Selected Items"] = "Geselecteerde items verwijderen";
+$a->strings["Follow Thread"] = "Conversatie volgen";
+$a->strings["View Status"] = "Bekijk status";
+$a->strings["View Profile"] = "Bekijk profiel";
+$a->strings["View Photos"] = "Bekijk foto's";
+$a->strings["Network Posts"] = "Netwerkberichten";
+$a->strings["Edit Contact"] = "Bewerk contact";
+$a->strings["Send PM"] = "Stuur een privébericht";
+$a->strings["Poke"] = "Aanstoten";
+$a->strings["%s likes this."] = "%s vind dit leuk.";
+$a->strings["%s doesn't like this."] = "%s vind dit niet leuk.";
+$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d mensen</span> vinden dit leuk";
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d people</span> vinden dit niet leuk";
+$a->strings["and"] = "en";
+$a->strings[", and %d other people"] = ", en %d andere mensen";
+$a->strings["%s like this."] = "%s vind dit leuk.";
+$a->strings["%s don't like this."] = "%s vind dit niet leuk.";
+$a->strings["Visible to <strong>everybody</strong>"] = "Zichtbaar voor <strong>iedereen</strong>";
+$a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:";
+$a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:";
+$a->strings["Tag term:"] = "Label:";
+$a->strings["Where are you right now?"] = "Waar ben je nu?";
+$a->strings["Delete item(s)?"] = "Item(s) verwijderen?";
+$a->strings["Post to Email"] = "Verzenden per e-mail";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "";
+$a->strings["permissions"] = "rechten";
+$a->strings["Post to Groups"] = "Verzenden naar Groepen";
+$a->strings["Post to Contacts"] = "Verzenden naar Contacten";
+$a->strings["Private post"] = "Privé verzending";
+$a->strings["Add New Contact"] = "Nieuw Contact toevoegen";
+$a->strings["Enter address or web location"] = "Voeg een webadres of -locatie in:";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara";
+$a->strings["%d invitation available"] = array(
+       0 => "%d uitnodiging beschikbaar",
+       1 => "%d uitnodigingen beschikbaar",
+);
+$a->strings["Find People"] = "Zoek mensen";
+$a->strings["Enter name or interest"] = "Vul naam of interesse in";
+$a->strings["Connect/Follow"] = "Verbind/Volg";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeelden: Jan Peeters, Vissen";
+$a->strings["Random Profile"] = "Willekeurig Profiel";
+$a->strings["Networks"] = "Netwerken";
+$a->strings["All Networks"] = "Alle netwerken";
+$a->strings["Everything"] = "Alles";
+$a->strings["Categories"] = "Categorieën";
+$a->strings["End this session"] = "Deze sessie beëindigen";
+$a->strings["Sign in"] = "Inloggen";
+$a->strings["Home Page"] = "Jouw tijdlijn";
+$a->strings["Create an account"] = "Maak een accoount";
+$a->strings["Help and documentation"] = "Hulp en documentatie";
+$a->strings["Apps"] = "Apps";
+$a->strings["Addon applications, utilities, games"] = "Extra toepassingen, hulpmiddelen of spelletjes";
+$a->strings["Search site content"] = "Doorzoek de inhoud van de website";
+$a->strings["Conversations on this site"] = "Conversaties op deze website";
+$a->strings["Directory"] = "Gids";
+$a->strings["People directory"] = "Personengids";
+$a->strings["Information"] = "";
+$a->strings["Information about this friendica instance"] = "";
+$a->strings["Conversations from your friends"] = "Conversaties van je vrienden";
+$a->strings["Network Reset"] = "Netwerkpagina opnieuw instellen";
+$a->strings["Load Network page with no filters"] = "Laad de netwerkpagina zonder filters";
+$a->strings["Friend Requests"] = "Vriendschapsverzoeken";
+$a->strings["See all notifications"] = "Toon alle notificaties";
+$a->strings["Mark all system notifications seen"] = "Alle systeemnotificaties als gelezen markeren";
+$a->strings["Private mail"] = "Privéberichten";
+$a->strings["Inbox"] = "Inbox";
+$a->strings["Outbox"] = "Verzonden berichten";
+$a->strings["Manage"] = "Beheren";
+$a->strings["Manage other pages"] = "Andere pagina's beheren";
+$a->strings["Account settings"] = "Account instellingen";
+$a->strings["Manage/Edit Profiles"] = "Beheer/Wijzig Profielen";
+$a->strings["Manage/edit friends and contacts"] = "Beheer/Wijzig vrienden en contacten";
+$a->strings["Site setup and configuration"] = "Website opzetten en configureren";
+$a->strings["Navigation"] = "Navigatie";
+$a->strings["Site map"] = "Sitemap";
+$a->strings["Unknown | Not categorised"] = "Onbekend | Niet ";
+$a->strings["Block immediately"] = "Onmiddellijk blokkeren";
+$a->strings["Shady, spammer, self-marketer"] = "";
+$a->strings["Known to me, but no opinion"] = "Bekend, maar geen mening";
+$a->strings["OK, probably harmless"] = "OK, waarschijnlijk onschadelijk";
+$a->strings["Reputable, has my trust"] = "Gerenommeerd, heeft mijn vertrouwen";
+$a->strings["Weekly"] = "wekelijks";
+$a->strings["Monthly"] = "maandelijks";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Zot!"] = "Zot!";
+$a->strings["LinkedIn"] = "Linkedln";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "Myspace";
+$a->strings["Google+"] = "Google+";
+$a->strings["pump.io"] = "";
+$a->strings["Twitter"] = "";
+$a->strings["Diaspora Connector"] = "";
+$a->strings["Statusnet"] = "";
+$a->strings["Friendica Notification"] = "Friendica Notificatie";
+$a->strings["Thank You,"] = "Bedankt";
+$a->strings["%s Administrator"] = "%s Beheerder";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notificatie] Nieuw bericht ontvangen op %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s sent you a new private message at %2\$s.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s stuurde jou %2\$s.";
+$a->strings["a private message"] = "een prive bericht";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]a %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]%3\$s's %4\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]jouw %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 gaf een reactie op een bericht/conversatie die jij volgt.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of te beantwoorden.";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "";
+$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:Notificatie] %s heeft jou genoemd";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s heeft jou in %2\$s genoemd";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]heeft jou genoemd[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "";
+$a->strings["%1\$s shared a new post at %2\$s"] = "";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s heeft jou aangestoten";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s heeft jou aangestoten op %2\$s";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notificatie] %s heeft jouw bericht gelabeld";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s heeft jouw bericht gelabeld in %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s labelde [url=%2\$s]jouw bericht[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1\$s' om %2\$s";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Je ontving [url=%1\$s]een vriendschaps- of connectieverzoek[/url] van %2\$s.";
+$a->strings["You may visit their profile at %s"] = "U kunt hun profiel bezoeken op %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Bezoek %s om het verzoek goed of af te keuren.";
+$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:"] = "Naam:";
+$a->strings["Photo:"] = "Foto: ";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "";
+$a->strings["An invitation is required."] = "Een uitnodiging is vereist.";
+$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden.";
+$a->strings["Invalid OpenID url"] = "Ongeldige OpenID url";
+$a->strings["Please enter the required information."] = "Vul de vereiste informatie in.";
+$a->strings["Please use a shorter name."] = "gebruik een kortere naam";
+$a->strings["Name too short."] = "Naam te kort";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn.";
+$a->strings["Your email domain is not among those allowed on this site."] = "Je e-maildomein is op deze website niet toegestaan.";
+$a->strings["Not a valid email address."] = "Geen geldig e-mailadres.";
+$a->strings["Cannot use that email."] = "Ik kan die e-mail niet gebruiken.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen.";
+$a->strings["Nickname is already registered. Please choose another."] = "Bijnaam is al geregistreerd. Kies een andere.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt.";
+$a->strings["An error occurred during registration. Please try again."] = "";
+$a->strings["An error occurred creating your default profile. Please try again."] = "";
+$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen";
+$a->strings["Image/photo"] = "Afbeelding/foto";
+$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "";
+$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "";
+$a->strings["$1 wrote:"] = "$1 schreef:";
+$a->strings["Encrypted content"] = "Versleutelde inhoud";
+$a->strings["Embedded content"] = "Ingebedde inhoud";
+$a->strings["Embedding disabled"] = "Inbedden uitgeschakeld";
+$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."] = "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten <strong>kunnen</strong> voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. ";
+$a->strings["Default privacy group for new contacts"] = "";
+$a->strings["Everybody"] = "Iedereen";
+$a->strings["edit"] = "verander";
+$a->strings["Edit group"] = "Verander groep";
+$a->strings["Create a new group"] = "Maak nieuwe groep";
+$a->strings["Contacts not in any group"] = "";
 $a->strings["stopped following"] = "";
 $a->strings["Drop Contact"] = "";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "";
+$a->strings["Miscellaneous"] = "Diversen";
+$a->strings["year"] = "jaar";
+$a->strings["month"] = "maand";
+$a->strings["day"] = "dag";
+$a->strings["never"] = "nooit";
+$a->strings["less than a second ago"] = "minder dan een seconde geleden";
+$a->strings["years"] = "jaren";
+$a->strings["months"] = "maanden";
+$a->strings["week"] = "week";
+$a->strings["weeks"] = "weken";
+$a->strings["days"] = "dagen";
+$a->strings["hour"] = "uur";
+$a->strings["hours"] = "uren";
+$a->strings["minute"] = "minuut";
+$a->strings["minutes"] = "minuten";
+$a->strings["second"] = "seconde";
+$a->strings["seconds"] = "secondes";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden";
+$a->strings["view full size"] = "Volledig formaat";
index 5d257be0b866a478a43ed691f16238ae84db7f10..3b06d0d282c6b7bb5780a59b2fa53cf8b46332ca 100644 (file)
 # Frederico Aracnus <frederico@teia.bio.br>, 2011
 # FULL NAME <EMAIL@ADDRESS>, 2011
 # Ricardo Pereira <rhalah@gmail.com>, 2012
-# Sérgio F. de Lima <oigreslima@gmail.com>, 2013
+# Sérgio F. de Lima <oigreslima@gmail.com>, 2013-2014
 # Sérgio F. de Lima <oigreslima@gmail.com>, 2012
 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-18 20:14+0000\n"
-"Last-Translator: Frederico Aracnus <frederico@teia.bio.br>\n"
+"POT-Creation-Date: 2014-05-16 11:05+0200\n"
+"PO-Revision-Date: 2014-05-17 16:26+0000\n"
+"Last-Translator: Sérgio F. de Lima <oigreslima@gmail.com>\n"
 "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/friendica/language/pt_BR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -34,25 +34,26 @@ msgstr ""
 msgid "This entry was edited"
 msgstr "Essa entrada foi editada"
 
-#: ../../object/Item.php:113 ../../mod/content.php:619
-#: ../../mod/photos.php:1351
+#: ../../object/Item.php:113 ../../mod/photos.php:1355
+#: ../../mod/content.php:619
 msgid "Private Message"
 msgstr "Mensagem privada"
 
 #: ../../object/Item.php:117 ../../mod/editpost.php:109
-#: ../../mod/content.php:727 ../../mod/settings.php:659
+#: ../../mod/settings.php:671 ../../mod/content.php:727
 msgid "Edit"
 msgstr "Editar"
 
-#: ../../object/Item.php:126 ../../mod/content.php:437
-#: ../../mod/content.php:739 ../../include/conversation.php:611
+#: ../../object/Item.php:126 ../../mod/photos.php:1649
+#: ../../mod/content.php:437 ../../mod/content.php:739
+#: ../../include/conversation.php:612
 msgid "Select"
 msgstr "Selecionar"
 
-#: ../../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:910 ../../mod/photos.php:1650
+#: ../../mod/contacts.php:703 ../../mod/settings.php:672
+#: ../../mod/group.php:171 ../../mod/content.php:438 ../../mod/content.php:740
+#: ../../include/conversation.php:613
 msgid "Delete"
 msgstr "Excluir"
 
@@ -80,8 +81,8 @@ msgstr "marcado com estrela"
 msgid "add tag"
 msgstr "adicionar etiqueta"
 
-#: ../../object/Item.php:213 ../../mod/content.php:683
-#: ../../mod/photos.php:1529
+#: ../../object/Item.php:213 ../../mod/photos.php:1538
+#: ../../mod/content.php:683
 msgid "I like this (toggle)"
 msgstr "Eu gostei disso (alternar)"
 
@@ -89,8 +90,8 @@ msgstr "Eu gostei disso (alternar)"
 msgid "like"
 msgstr "gostei"
 
-#: ../../object/Item.php:214 ../../mod/content.php:684
-#: ../../mod/photos.php:1530
+#: ../../object/Item.php:214 ../../mod/photos.php:1539
+#: ../../mod/content.php:684
 msgid "I don't like this (toggle)"
 msgstr "Eu não gostei disso (alternar)"
 
@@ -106,2897 +107,2916 @@ msgstr "Compartilhar isso"
 msgid "share"
 msgstr "compartilhar"
 
-#: ../../object/Item.php:278 ../../include/conversation.php:663
+#: ../../object/Item.php:298 ../../include/conversation.php:665
 msgid "Categories:"
 msgstr "Categorias:"
 
-#: ../../object/Item.php:279 ../../include/conversation.php:664
+#: ../../object/Item.php:299 ../../include/conversation.php:666
 msgid "Filed under:"
 msgstr "Arquivado sob:"
 
-#: ../../object/Item.php:287 ../../object/Item.php:288
+#: ../../object/Item.php:307 ../../object/Item.php:308
 #: ../../mod/content.php:471 ../../mod/content.php:851
-#: ../../mod/content.php:852 ../../include/conversation.php:651
+#: ../../mod/content.php:852 ../../include/conversation.php:653
 #, php-format
 msgid "View %s's profile @ %s"
 msgstr "Ver o perfil de %s @ %s"
 
-#: ../../object/Item.php:289 ../../mod/content.php:853
+#: ../../object/Item.php:309 ../../mod/content.php:853
 msgid "to"
 msgstr "para"
 
-#: ../../object/Item.php:290
+#: ../../object/Item.php:310
 msgid "via"
 msgstr "via"
 
-#: ../../object/Item.php:291 ../../mod/content.php:854
+#: ../../object/Item.php:311 ../../mod/content.php:854
 msgid "Wall-to-Wall"
 msgstr "Mural-para-mural"
 
-#: ../../object/Item.php:292 ../../mod/content.php:855
+#: ../../object/Item.php:312 ../../mod/content.php:855
 msgid "via Wall-To-Wall:"
 msgstr "via Mural-para-mural"
 
-#: ../../object/Item.php:301 ../../mod/content.php:481
-#: ../../mod/content.php:863 ../../include/conversation.php:671
+#: ../../object/Item.php:321 ../../mod/content.php:481
+#: ../../mod/content.php:863 ../../include/conversation.php:673
 #, php-format
 msgid "%s from %s"
 msgstr "%s de %s"
 
-#: ../../object/Item.php:319 ../../object/Item.php:633 ../../boot.php:685
-#: ../../mod/content.php:708 ../../mod/photos.php:1551
-#: ../../mod/photos.php:1595 ../../mod/photos.php:1678
+#: ../../object/Item.php:341 ../../object/Item.php:657
+#: ../../mod/photos.php:1560 ../../mod/photos.php:1604
+#: ../../mod/photos.php:1692 ../../mod/content.php:708 ../../boot.php:693
 msgid "Comment"
 msgstr "Comentar"
 
-#: ../../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
+#: ../../object/Item.php:344 ../../mod/message.php:334
+#: ../../mod/message.php:565 ../../mod/editpost.php:124
+#: ../../mod/wallmessage.php:156 ../../mod/photos.php:1541
+#: ../../mod/content.php:498 ../../mod/content.php:882
+#: ../../include/conversation.php:690 ../../include/conversation.php:1107
 msgid "Please wait"
 msgstr "Por favor, espere"
 
-#: ../../object/Item.php:343 ../../mod/content.php:602
+#: ../../object/Item.php:367 ../../mod/content.php:602
 #, php-format
 msgid "%d comment"
 msgid_plural "%d comments"
 msgstr[0] "%d comentário"
 msgstr[1] "%d comentários"
 
-#: ../../object/Item.php:345 ../../object/Item.php:358
-#: ../../mod/content.php:604 ../../include/text.php:1919
+#: ../../object/Item.php:369 ../../object/Item.php:382
+#: ../../mod/content.php:604 ../../include/text.php:1959
 msgid "comment"
 msgid_plural "comments"
 msgstr[0] "comentário"
 msgstr[1] "comentários"
 
-#: ../../object/Item.php:346 ../../boot.php:686 ../../mod/content.php:605
+#: ../../object/Item.php:370 ../../mod/content.php:605 ../../boot.php:694
 #: ../../include/contact_widgets.php:204
 msgid "show more"
 msgstr "exibir mais"
 
-#: ../../object/Item.php:631 ../../mod/content.php:706
-#: ../../mod/photos.php:1549 ../../mod/photos.php:1593
-#: ../../mod/photos.php:1676
+#: ../../object/Item.php:655 ../../mod/photos.php:1558
+#: ../../mod/photos.php:1602 ../../mod/photos.php:1690
+#: ../../mod/content.php:706
 msgid "This is you"
 msgstr "Este(a) é você"
 
-#: ../../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
+#: ../../object/Item.php:658 ../../mod/fsuggest.php:107
 #: ../../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
+#: ../../mod/events.php:478 ../../mod/photos.php:1082
+#: ../../mod/photos.php:1203 ../../mod/photos.php:1510
+#: ../../mod/photos.php:1561 ../../mod/photos.php:1605
+#: ../../mod/photos.php:1693 ../../mod/contacts.php:464
+#: ../../mod/invite.php:140 ../../mod/profiles.php:634
+#: ../../mod/manage.php:110 ../../mod/poke.php:199 ../../mod/localtime.php:45
+#: ../../mod/install.php:248 ../../mod/install.php:286
+#: ../../mod/content.php:709 ../../mod/mood.php:137 ../../mod/crepair.php:171
+#: ../../view/theme/diabook/theme.php:633
+#: ../../view/theme/diabook/config.php:148 ../../view/theme/vier/config.php:47
+#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64
+#: ../../view/theme/cleanzero/config.php:80
 msgid "Submit"
 msgstr "Enviar"
 
-#: ../../object/Item.php:635 ../../mod/content.php:710
+#: ../../object/Item.php:659 ../../mod/content.php:710
 msgid "Bold"
 msgstr "Negrito"
 
-#: ../../object/Item.php:636 ../../mod/content.php:711
+#: ../../object/Item.php:660 ../../mod/content.php:711
 msgid "Italic"
 msgstr "Itálico"
 
-#: ../../object/Item.php:637 ../../mod/content.php:712
+#: ../../object/Item.php:661 ../../mod/content.php:712
 msgid "Underline"
 msgstr "Sublinhado"
 
-#: ../../object/Item.php:638 ../../mod/content.php:713
+#: ../../object/Item.php:662 ../../mod/content.php:713
 msgid "Quote"
 msgstr "Citação"
 
-#: ../../object/Item.php:639 ../../mod/content.php:714
+#: ../../object/Item.php:663 ../../mod/content.php:714
 msgid "Code"
 msgstr "Código"
 
-#: ../../object/Item.php:640 ../../mod/content.php:715
+#: ../../object/Item.php:664 ../../mod/content.php:715
 msgid "Image"
 msgstr "Imagem"
 
-#: ../../object/Item.php:641 ../../mod/content.php:716
+#: ../../object/Item.php:665 ../../mod/content.php:716
 msgid "Link"
 msgstr "Link"
 
-#: ../../object/Item.php:642 ../../mod/content.php:717
+#: ../../object/Item.php:666 ../../mod/content.php:717
 msgid "Video"
 msgstr "Vídeo"
 
-#: ../../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
+#: ../../object/Item.php:667 ../../mod/editpost.php:145
+#: ../../mod/photos.php:1562 ../../mod/photos.php:1606
+#: ../../mod/photos.php:1694 ../../mod/content.php:718
+#: ../../include/conversation.php:1124
 msgid "Preview"
 msgstr "Pré-visualização"
 
-#: ../../index.php:199 ../../mod/apps.php:7
+#: ../../index.php:203 ../../mod/apps.php:7
 msgid "You must be logged in to use addons. "
 msgstr "Você precisa estar logado para usar os addons."
 
-#: ../../index.php:243 ../../mod/help.php:90
+#: ../../index.php:247 ../../mod/help.php:90
 msgid "Not Found"
 msgstr "Não encontrada"
 
-#: ../../index.php:246 ../../mod/help.php:93
+#: ../../index.php:250 ../../mod/help.php:93
 msgid "Page not found."
 msgstr "Página não encontrada."
 
-#: ../../index.php:355 ../../mod/group.php:72 ../../mod/profperm.php:19
+#: ../../index.php:359 ../../mod/profperm.php:19 ../../mod/group.php:72
 msgid "Permission denied"
 msgstr "Permissão negada"
 
-#: ../../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
+#: ../../index.php:360 ../../mod/fsuggest.php:78 ../../mod/files.php:170
+#: ../../mod/notifications.php:66 ../../mod/message.php:38
+#: ../../mod/message.php:174 ../../mod/editpost.php:10
+#: ../../mod/dfrn_confirm.php:53 ../../mod/events.php:140
+#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
+#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
+#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:66 ../../mod/api.php:26
+#: ../../mod/api.php:31 ../../mod/photos.php:134 ../../mod/photos.php:1048
+#: ../../mod/register.php:41 ../../mod/attach.php:33
+#: ../../mod/contacts.php:246 ../../mod/follow.php:9 ../../mod/uimport.php:23
+#: ../../mod/allfriends.php:9 ../../mod/invite.php:15 ../../mod/invite.php:101
+#: ../../mod/settings.php:102 ../../mod/settings.php:591
+#: ../../mod/settings.php:596 ../../mod/display.php:266
+#: ../../mod/profiles.php:146 ../../mod/profiles.php:575
+#: ../../mod/wall_attach.php:55 ../../mod/suggest.php:56
+#: ../../mod/manage.php:96 ../../mod/delegate.php:6
+#: ../../mod/viewcontacts.php:22 ../../mod/notes.php:20 ../../mod/poke.php:135
 #: ../../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
+#: ../../mod/install.php:151 ../../mod/group.php:19 ../../mod/regmod.php:118
+#: ../../mod/item.php:145 ../../mod/item.php:161 ../../mod/mood.php:114
+#: ../../mod/network.php:4 ../../mod/crepair.php:117
+#: ../../include/items.php:4390
 msgid "Permission denied."
 msgstr "Permissão negada."
 
-#: ../../index.php:415
+#: ../../index.php:419
 msgid "toggle mobile"
 msgstr "habilita mobile"
 
-#: ../../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 "Pessoal"
+#: ../../mod/update_notes.php:41 ../../mod/update_profile.php:41
+#: ../../mod/update_community.php:18 ../../mod/update_network.php:22
+#: ../../mod/update_display.php:22
+msgid "[Embedded content - reload page to view]"
+msgstr "[Conteúdo incorporado - recarregue a página para ver]"
 
-#: ../../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 "Suas publicações e conversas"
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131
+msgid "Contact not found."
+msgstr "O contato não foi encontrado."
 
-#: ../../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 "Perfil "
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "A sugestão de amigo foi enviada"
 
-#: ../../view/theme/perihel/theme.php:34
-#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
-msgid "Your profile page"
-msgstr "Sua página de perfil"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Sugerir amigos"
 
-#: ../../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 "Fotos"
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Sugerir um amigo para %s"
 
-#: ../../view/theme/perihel/theme.php:35
-#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
-msgid "Your photos"
-msgstr "Suas fotos"
+#: ../../mod/dfrn_request.php:93
+msgid "This introduction has already been accepted."
+msgstr "Esta apresentação já foi aceita."
 
-#: ../../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 "Eventos"
+#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "A localização do perfil não é válida ou não contém uma informação de perfil."
 
-#: ../../view/theme/perihel/theme.php:36
-#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79
-msgid "Your events"
-msgstr "Seus eventos"
+#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Aviso: a localização do perfil não possui nenhum nome identificável do seu dono."
 
-#: ../../view/theme/perihel/theme.php:37
-#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
-msgid "Personal notes"
-msgstr "Suas anotações pessoais"
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
+msgid "Warning: profile location has no profile photo."
+msgstr "Aviso: a localização do perfil não possui nenhuma foto do perfil."
 
-#: ../../view/theme/perihel/theme.php:37
-#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
-msgid "Your personal photos"
-msgstr "Suas fotos pessoais"
+#: ../../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] "O parâmetro requerido %d não foi encontrado na localização fornecida"
+msgstr[1] "Os parâmetros requeridos %d não foram encontrados na localização fornecida"
 
-#: ../../view/theme/perihel/theme.php:38
-#: ../../view/theme/diabook/theme.php:129 ../../mod/community.php:32
-#: ../../include/nav.php:128
-msgid "Community"
-msgstr "Comunidade"
+#: ../../mod/dfrn_request.php:170
+msgid "Introduction complete."
+msgstr "A apresentação foi finalizada."
 
-#: ../../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 "não exibir"
+#: ../../mod/dfrn_request.php:209
+msgid "Unrecoverable protocol error."
+msgstr "Ocorreu um erro irrecuperável de protocolo."
 
-#: ../../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 "exibir"
+#: ../../mod/dfrn_request.php:237
+msgid "Profile unavailable."
+msgstr "O perfil não está disponível."
 
-#: ../../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 "Configurações do tema"
+#: ../../mod/dfrn_request.php:262
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s recebeu solicitações de conexão em excesso hoje."
 
-#: ../../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 "Escolha o tamanho da fonte para publicações e comentários"
+#: ../../mod/dfrn_request.php:263
+msgid "Spam protection measures have been invoked."
+msgstr "As medidas de proteção contra spam foram ativadas."
 
-#: ../../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 "Escolha comprimento da linha para publicações e comentários"
+#: ../../mod/dfrn_request.php:264
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Os amigos foram notificados para tentar novamente em 24 horas."
 
-#: ../../view/theme/perihel/config.php:100
-#: ../../view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
-msgstr "Escolha a resolução para a coluna do meio"
+#: ../../mod/dfrn_request.php:326
+msgid "Invalid locator"
+msgstr "Localizador inválido"
 
-#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:607
-#: ../../include/nav.php:171
-msgid "Contacts"
-msgstr "Contatos"
+#: ../../mod/dfrn_request.php:335
+msgid "Invalid email address."
+msgstr "Endereço de e-mail inválido."
 
-#: ../../view/theme/diabook/theme.php:125
-msgid "Your contacts"
-msgstr "Seus contatos"
+#: ../../mod/dfrn_request.php:362
+msgid "This account has not been configured for email. Request failed."
+msgstr "Essa conta não foi configurada para e-mails. Não foi possível atender à solicitação."
 
-#: ../../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 "Páginas da Comunidade"
+#: ../../mod/dfrn_request.php:458
+msgid "Unable to resolve your name at the provided location."
+msgstr "Não foi possível encontrar a sua identificação no endereço indicado."
 
-#: ../../view/theme/diabook/theme.php:391
-#: ../../view/theme/diabook/theme.php:626
-#: ../../view/theme/diabook/config.php:160
-msgid "Community Profiles"
-msgstr "Profiles Comunitários"
+#: ../../mod/dfrn_request.php:471
+msgid "You have already introduced yourself here."
+msgstr "Você já fez a sua apresentação aqui."
 
-#: ../../view/theme/diabook/theme.php:412
-#: ../../view/theme/diabook/theme.php:630
-#: ../../view/theme/diabook/config.php:164
-msgid "Last users"
-msgstr "Últimos usuários"
+#: ../../mod/dfrn_request.php:475
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Aparentemente você já é amigo de %s."
 
-#: ../../view/theme/diabook/theme.php:441
-#: ../../view/theme/diabook/theme.php:632
-#: ../../view/theme/diabook/config.php:166
-msgid "Last likes"
-msgstr "Últimas gostadas"
+#: ../../mod/dfrn_request.php:496
+msgid "Invalid profile URL."
+msgstr "URL de perfil inválida."
 
-#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118
-#: ../../include/conversation.php:246 ../../include/text.php:1913
-msgid "event"
-msgstr "evento"
+#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
+msgid "Disallowed profile URL."
+msgstr "URL de perfil não permitida."
 
-#: ../../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"
+#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180
+msgid "Failed to update contact record."
+msgstr "Não foi possível atualizar o registro do contato."
 
-#: ../../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 "foto"
+#: ../../mod/dfrn_request.php:592
+msgid "Your introduction has been sent."
+msgstr "A sua apresentação foi enviada."
 
-#: ../../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 gosta de %3$s de %2$s"
+#: ../../mod/dfrn_request.php:645
+msgid "Please login to confirm introduction."
+msgstr "Por favor, autentique-se para confirmar a apresentação."
 
-#: ../../view/theme/diabook/theme.php:486
-#: ../../view/theme/diabook/theme.php:631
-#: ../../view/theme/diabook/config.php:165
-msgid "Last photos"
-msgstr "Últimas fotos"
+#: ../../mod/dfrn_request.php:659
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "A identidade autenticada está incorreta. Por favor, entre como <strong>este</strong> perfil."
 
-#: ../../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 "Fotos dos contatos"
+#: ../../mod/dfrn_request.php:670
+msgid "Hide this contact"
+msgstr "Ocultar este contato"
 
-#: ../../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 "Fotos do perfil"
+#: ../../mod/dfrn_request.php:673
+#, php-format
+msgid "Welcome home %s."
+msgstr "Bem-vindo(a) à sua página pessoal %s."
 
-#: ../../view/theme/diabook/theme.php:523
-#: ../../view/theme/diabook/theme.php:629
-#: ../../view/theme/diabook/config.php:163
-msgid "Find Friends"
-msgstr "Encontrar amigos"
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Por favor, confirme sua solicitação de apresentação/conexão para %s."
 
-#: ../../view/theme/diabook/theme.php:524
-msgid "Local Directory"
-msgstr "Diretório Local"
+#: ../../mod/dfrn_request.php:675
+msgid "Confirm"
+msgstr "Confirmar"
 
-#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:49
-msgid "Global Directory"
-msgstr "Diretório global"
+#: ../../mod/dfrn_request.php:716 ../../include/items.php:3703
+msgid "[Name Withheld]"
+msgstr "[Nome não revelado]"
 
-#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35
-msgid "Similar Interests"
-msgstr "Interesses Parecidos"
+#: ../../mod/dfrn_request.php:761 ../../mod/photos.php:918
+#: ../../mod/videos.php:115 ../../mod/search.php:89 ../../mod/display.php:19
+#: ../../mod/community.php:18 ../../mod/viewcontacts.php:17
+#: ../../mod/directory.php:31
+msgid "Public access denied."
+msgstr "Acesso público negado."
 
-#: ../../view/theme/diabook/theme.php:527 ../../mod/suggest.php:66
-#: ../../include/contact_widgets.php:34
-msgid "Friend Suggestions"
-msgstr "Sugestões de amigos"
+#: ../../mod/dfrn_request.php:811
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Por favor, digite seu 'Endereço de Identificação' a partir de uma das seguintes redes de comunicação suportadas:"
 
-#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37
-msgid "Invite Friends"
-msgstr "Convidar amigos"
+#: ../../mod/dfrn_request.php:827
+msgid "<strike>Connect as an email follower</strike> (Coming soon)"
+msgstr "<strike>Conectar como um acompanhante por e-mail</strike> (Em breve)"
 
-#: ../../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 "Configurações"
+#: ../../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 "Caso você ainda não seja membro da rede social livre, <a href=\"http://dir.friendica.com/siteinfo\">clique aqui para encontrar um site Friendica público e junte-se à nós</a>."
 
-#: ../../view/theme/diabook/theme.php:579
-#: ../../view/theme/diabook/theme.php:625
-#: ../../view/theme/diabook/config.php:159
-msgid "Earth Layers"
-msgstr "Camadas da Terra"
-
-#: ../../view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
-msgstr "Configure o zoom para Camadas da Terra"
+#: ../../mod/dfrn_request.php:832
+msgid "Friend/Connection Request"
+msgstr "Solicitação de amizade/conexão"
 
-#: ../../view/theme/diabook/theme.php:585
-#: ../../view/theme/diabook/config.php:156
-msgid "Set longitude (X) for Earth Layers"
-msgstr "Configure longitude (X) para Camadas da Terra"
+#: ../../mod/dfrn_request.php:833
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Examplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
 
-#: ../../view/theme/diabook/theme.php:586
-#: ../../view/theme/diabook/config.php:157
-msgid "Set latitude (Y) for Earth Layers"
-msgstr "Configure latitude (Y) para Camadas da Terra"
+#: ../../mod/dfrn_request.php:834
+msgid "Please answer the following:"
+msgstr "Por favor, entre com as informações solicitadas:"
 
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:627
-#: ../../view/theme/diabook/config.php:161
-msgid "Help or @NewHere ?"
-msgstr "Ajuda ou @NewHere ?"
+#: ../../mod/dfrn_request.php:835
+#, php-format
+msgid "Does %s know you?"
+msgstr "%s conhece você?"
 
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:628
-#: ../../view/theme/diabook/config.php:162
-msgid "Connect Services"
-msgstr "Conectar serviços"
+#: ../../mod/dfrn_request.php:836 ../../mod/message.php:209
+#: ../../mod/api.php:105 ../../mod/register.php:243 ../../mod/contacts.php:326
+#: ../../mod/settings.php:1001 ../../mod/settings.php:1007
+#: ../../mod/settings.php:1015 ../../mod/settings.php:1019
+#: ../../mod/settings.php:1024 ../../mod/settings.php:1030
+#: ../../mod/settings.php:1036 ../../mod/settings.php:1042
+#: ../../mod/settings.php:1072 ../../mod/settings.php:1073
+#: ../../mod/settings.php:1074 ../../mod/settings.php:1075
+#: ../../mod/settings.php:1076 ../../mod/profiles.php:614
+#: ../../mod/suggest.php:29 ../../include/items.php:4235
+msgid "Yes"
+msgstr "Sim"
 
-#: ../../view/theme/diabook/theme.php:622
-msgid "Show/hide boxes at right-hand column:"
-msgstr "Mostre/esconda caixas na coluna à direita:"
+#: ../../mod/dfrn_request.php:837 ../../mod/api.php:106
+#: ../../mod/register.php:244 ../../mod/settings.php:1001
+#: ../../mod/settings.php:1007 ../../mod/settings.php:1015
+#: ../../mod/settings.php:1019 ../../mod/settings.php:1024
+#: ../../mod/settings.php:1030 ../../mod/settings.php:1036
+#: ../../mod/settings.php:1042 ../../mod/settings.php:1072
+#: ../../mod/settings.php:1073 ../../mod/settings.php:1074
+#: ../../mod/settings.php:1075 ../../mod/settings.php:1076
+#: ../../mod/profiles.php:615
+msgid "No"
+msgstr "Não"
 
-#: ../../view/theme/diabook/config.php:154
-msgid "Set color scheme"
-msgstr "Configure o esquema de cores"
+#: ../../mod/dfrn_request.php:838
+msgid "Add a personal note:"
+msgstr "Adicione uma anotação pessoal:"
 
-#: ../../view/theme/diabook/config.php:155
-msgid "Set zoomfactor for Earth Layer"
-msgstr "Configure o zoom para Camadas da Terra"
+#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Alinhamento"
+#: ../../mod/dfrn_request.php:841
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Social Web"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Esquerda"
+#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:731
+#: ../../include/contact_selectors.php:80
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Centro"
+#: ../../mod/dfrn_request.php:843
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - Por favor, não utilize esse formulário.  Ao invés disso, digite %s na sua barra de pesquisa do Diaspora."
 
-#: ../../view/theme/quattro/config.php:68 ../../view/theme/clean/config.php:76
-#: ../../view/theme/cleanzero/config.php:86
-msgid "Color scheme"
-msgstr "Esquema de cores"
+#: ../../mod/dfrn_request.php:844
+msgid "Your Identity Address:"
+msgstr "Seu endereço de identificação:"
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "Tamanho da fonte para publicações"
+#: ../../mod/dfrn_request.php:847
+msgid "Submit Request"
+msgstr "Enviar solicitação"
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr "Tamanho da fonte para campos texto"
+#: ../../mod/dfrn_request.php:848 ../../mod/message.php:212
+#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../mod/photos.php:203
+#: ../../mod/photos.php:292 ../../mod/contacts.php:329 ../../mod/tagrm.php:11
+#: ../../mod/tagrm.php:94 ../../mod/settings.php:610
+#: ../../mod/settings.php:636 ../../mod/suggest.php:32
+#: ../../include/items.php:4238 ../../include/conversation.php:1127
+msgid "Cancel"
+msgstr "Cancelar"
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Configure o esquema de cores"
+#: ../../mod/files.php:156 ../../mod/videos.php:301
+#: ../../include/text.php:1400
+msgid "View Video"
+msgstr "Ver Vídeo"
 
-#: ../../view/theme/clean/config.php:54 ../../include/user.php:243
-#: ../../include/text.php:1649
-msgid "default"
-msgstr "padrão"
+#: ../../mod/profile.php:21 ../../boot.php:1353
+msgid "Requested profile is not available."
+msgstr "Perfil solicitado não está disponível."
 
-#: ../../view/theme/clean/config.php:74
-msgid "Background Image"
-msgstr "Imagem de fundo"
+#: ../../mod/profile.php:155 ../../mod/display.php:99
+msgid "Access to this profile has been restricted."
+msgstr "O acesso a este perfil está restrito."
 
-#: ../../view/theme/clean/config.php:74
-msgid ""
-"The URL to a picture (e.g. from your photo album) that should be used as "
-"background image."
-msgstr "A URL de uma imagem (ex. do seu álbum de fotos) que possa ser usada como fundo da tela."
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Dicas para novos membros"
 
-#: ../../view/theme/clean/config.php:75
-msgid "Background Color"
-msgstr "Cor do fundo"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Identificador de solicitação inválido"
 
-#: ../../view/theme/clean/config.php:75
-msgid "HEX value for the background color. Don't include the #"
-msgstr "Valor hexadecimal para a cor do fundo. Não inclua o #."
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:211
+msgid "Discard"
+msgstr "Descartar"
 
-#: ../../view/theme/clean/config.php:77
-msgid "font size"
-msgstr "tamanho da fonte"
+#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
+#: ../../mod/notifications.php:210 ../../mod/contacts.php:437
+#: ../../mod/contacts.php:491 ../../mod/contacts.php:701
+msgid "Ignore"
+msgstr "Ignorar"
 
-#: ../../view/theme/clean/config.php:77
-msgid "base font size for your interface"
-msgstr "tamanho base da fonte para a sua interface"
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "Sistema"
 
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr "Configure o nível de redimensionamento para imagens em publicações e comentários (largura e altura)"
+#: ../../mod/notifications.php:83 ../../include/nav.php:142
+msgid "Network"
+msgstr "Rede"
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Configure a largura do tema"
+#: ../../mod/notifications.php:88 ../../mod/network.php:365
+msgid "Personal"
+msgstr "Pessoal"
 
-#: ../../boot.php:684
-msgid "Delete this item?"
-msgstr "Excluir este item?"
+#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:123
+#: ../../include/nav.php:104 ../../include/nav.php:145
+msgid "Home"
+msgstr "Pessoal"
 
-#: ../../boot.php:687
-msgid "show fewer"
-msgstr "exibir menos"
+#: ../../mod/notifications.php:98 ../../include/nav.php:151
+msgid "Introductions"
+msgstr "Apresentações"
 
-#: ../../boot.php:1015
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "Atualização %s falhou. Vide registro de erros (log)."
+#: ../../mod/notifications.php:103 ../../mod/message.php:182
+#: ../../include/nav.php:158
+msgid "Messages"
+msgstr "Mensagens"
 
-#: ../../boot.php:1017
-#, php-format
-msgid "Update Error at %s"
-msgstr "Erro de Atualização em %s"
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Exibir solicitações ignoradas"
 
-#: ../../boot.php:1127
-msgid "Create a New Account"
-msgstr "Criar uma nova conta"
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Ocultar solicitações ignoradas"
 
-#: ../../boot.php:1128 ../../mod/register.php:275 ../../include/nav.php:108
-msgid "Register"
-msgstr "Registrar"
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
+msgid "Notification type: "
+msgstr "Tipo de notificação:"
 
-#: ../../boot.php:1152 ../../include/nav.php:73
-msgid "Logout"
-msgstr "Sair"
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Sugestão de amigo"
 
-#: ../../boot.php:1153 ../../include/nav.php:91
-msgid "Login"
-msgstr "Entrar"
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
+msgstr "sugerido por %s"
 
-#: ../../boot.php:1155
-msgid "Nickname or Email address: "
-msgstr "Identificação ou endereço de e-mail: "
+#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
+#: ../../mod/contacts.php:497
+msgid "Hide this contact from others"
+msgstr "Ocultar este contato dos outros"
 
-#: ../../boot.php:1156
-msgid "Password: "
-msgstr "Senha: "
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "Post a new friend activity"
+msgstr "Publicar a adição de amigo"
 
-#: ../../boot.php:1157
-msgid "Remember me"
-msgstr "Lembre-se de mim"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "if applicable"
+msgstr "se aplicável"
 
-#: ../../boot.php:1160
-msgid "Or login using OpenID: "
-msgstr "Ou login usando OpendID:"
+#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
+#: ../../mod/admin.php:908
+msgid "Approve"
+msgstr "Aprovar"
 
-#: ../../boot.php:1166
-msgid "Forgot your password?"
-msgstr "Esqueceu a sua senha?"
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Alega ser conhecido por você: "
 
-#: ../../boot.php:1167 ../../mod/lostpass.php:84
-msgid "Password Reset"
-msgstr "Reiniciar a senha"
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "sim"
 
-#: ../../boot.php:1169
-msgid "Website Terms of Service"
-msgstr "Termos de Serviço do Website"
+#: ../../mod/notifications.php:181
+msgid "no"
+msgstr "não"
 
-#: ../../boot.php:1170
-msgid "terms of service"
-msgstr "termos de serviço"
+#: ../../mod/notifications.php:188
+msgid "Approve as: "
+msgstr "Aprovar como:"
 
-#: ../../boot.php:1172
-msgid "Website Privacy Policy"
-msgstr "Política de Privacidade do Website"
+#: ../../mod/notifications.php:189
+msgid "Friend"
+msgstr "Amigo"
 
-#: ../../boot.php:1173
-msgid "privacy policy"
-msgstr "política de privacidade"
+#: ../../mod/notifications.php:190
+msgid "Sharer"
+msgstr "Compartilhador"
 
-#: ../../boot.php:1302
-msgid "Requested account is not available."
-msgstr "Conta solicitada não disponível"
+#: ../../mod/notifications.php:190
+msgid "Fan/Admirer"
+msgstr "Fã/Admirador"
 
-#: ../../boot.php:1341 ../../mod/profile.php:21
-msgid "Requested profile is not available."
-msgstr "Perfil solicitado não está disponível."
+#: ../../mod/notifications.php:196
+msgid "Friend/Connect Request"
+msgstr "Solicitação de amizade/conexão"
 
-#: ../../boot.php:1381 ../../boot.php:1485
-msgid "Edit profile"
-msgstr "Editar perfil"
+#: ../../mod/notifications.php:196
+msgid "New Follower"
+msgstr "Novo acompanhante"
 
-#: ../../boot.php:1433 ../../mod/suggest.php:88 ../../mod/match.php:58
-#: ../../include/contact_widgets.php:9
-msgid "Connect"
-msgstr "Conectar"
+#: ../../mod/notifications.php:217
+msgid "No introductions."
+msgstr "Sem apresentações."
 
-#: ../../boot.php:1447
-msgid "Message"
-msgstr "Mensagem"
+#: ../../mod/notifications.php:220 ../../include/nav.php:152
+msgid "Notifications"
+msgstr "Notificações"
 
-#: ../../boot.php:1455 ../../include/nav.php:169
-msgid "Profiles"
-msgstr "Perfis"
+#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
+#: ../../mod/notifications.php:469
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s gostou da publicação de %s"
 
-#: ../../boot.php:1455
-msgid "Manage/edit profiles"
-msgstr "Gerenciar/editar perfis"
+#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
+#: ../../mod/notifications.php:478
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s desgostou da publicação de %s"
 
-#: ../../boot.php:1461 ../../boot.php:1487 ../../mod/profiles.php:726
-msgid "Change profile photo"
-msgstr "Mudar a foto do perfil"
+#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
+#: ../../mod/notifications.php:492
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s agora é amigo de %s"
 
-#: ../../boot.php:1462 ../../mod/profiles.php:727
-msgid "Create New Profile"
-msgstr "Criar um novo perfil"
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
+#, php-format
+msgid "%s created a new post"
+msgstr "%s criou uma nova publicação"
 
-#: ../../boot.php:1472 ../../mod/profiles.php:738
-msgid "Profile Image"
-msgstr "Imagem do perfil"
+#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
+#: ../../mod/notifications.php:501
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s comentou uma publicação de %s"
 
-#: ../../boot.php:1475 ../../mod/profiles.php:740
-msgid "visible to everybody"
-msgstr "visível para todos"
+#: ../../mod/notifications.php:302
+msgid "No more network notifications."
+msgstr "Nenhuma notificação de rede."
 
-#: ../../boot.php:1476 ../../mod/profiles.php:741
-msgid "Edit visibility"
-msgstr "Editar a visibilidade"
+#: ../../mod/notifications.php:306
+msgid "Network Notifications"
+msgstr "Notificações de rede"
 
-#: ../../boot.php:1501 ../../mod/directory.php:134 ../../mod/events.php:471
-#: ../../include/event.php:40 ../../include/bb2diaspora.php:415
-msgid "Location:"
-msgstr "Localização:"
+#: ../../mod/notifications.php:332 ../../mod/notify.php:61
+msgid "No more system notifications."
+msgstr "Não fazer notificações de sistema."
 
-#: ../../boot.php:1503 ../../mod/directory.php:136
-#: ../../include/profile_advanced.php:17
-msgid "Gender:"
-msgstr "Gênero:"
+#: ../../mod/notifications.php:336 ../../mod/notify.php:65
+msgid "System Notifications"
+msgstr "Notificações de sistema"
 
-#: ../../boot.php:1506 ../../mod/directory.php:138
-#: ../../include/profile_advanced.php:37
-msgid "Status:"
-msgstr "Situação:"
+#: ../../mod/notifications.php:427
+msgid "No more personal notifications."
+msgstr "Nenhuma notificação pessoal."
 
-#: ../../boot.php:1508 ../../mod/directory.php:140
-#: ../../include/profile_advanced.php:48
-msgid "Homepage:"
-msgstr "Página web:"
+#: ../../mod/notifications.php:431
+msgid "Personal Notifications"
+msgstr "Notificações pessoais"
 
-#: ../../boot.php:1584 ../../boot.php:1670
-msgid "g A l F d"
-msgstr "G l d F"
+#: ../../mod/notifications.php:508
+msgid "No more home notifications."
+msgstr "Não existe mais nenhuma notificação pessoal."
 
-#: ../../boot.php:1585 ../../boot.php:1671
-msgid "F d"
-msgstr "F d"
+#: ../../mod/notifications.php:512
+msgid "Home Notifications"
+msgstr "Notificações pessoais"
 
-#: ../../boot.php:1630 ../../boot.php:1711
-msgid "[today]"
-msgstr "[hoje]"
+#: ../../mod/like.php:150 ../../mod/tagger.php:62 ../../mod/subthread.php:87
+#: ../../view/theme/diabook/theme.php:471 ../../include/text.php:1955
+#: ../../include/diaspora.php:1908 ../../include/conversation.php:126
+#: ../../include/conversation.php:254
+msgid "photo"
+msgstr "foto"
 
-#: ../../boot.php:1642
-msgid "Birthday Reminders"
-msgstr "Lembretes de aniversário"
+#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/tagger.php:62
+#: ../../mod/subthread.php:87 ../../view/theme/diabook/theme.php:466
+#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:1908
+#: ../../include/conversation.php:121 ../../include/conversation.php:130
+#: ../../include/conversation.php:249 ../../include/conversation.php:258
+msgid "status"
+msgstr "status"
 
-#: ../../boot.php:1643
-msgid "Birthdays this week:"
-msgstr "Aniversários nesta semana:"
+#: ../../mod/like.php:167 ../../view/theme/diabook/theme.php:480
+#: ../../include/diaspora.php:1924 ../../include/conversation.php:137
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s gosta de %3$s de %2$s"
 
-#: ../../boot.php:1704
-msgid "[No description]"
-msgstr "[Sem descrição]"
+#: ../../mod/like.php:169 ../../include/conversation.php:140
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s não gosta de %3$s de %2$s"
 
-#: ../../boot.php:1722
-msgid "Event Reminders"
-msgstr "Lembretes de eventos"
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "Erro no protocolo OpenID. Não foi retornada nenhuma ID."
 
-#: ../../boot.php:1723
-msgid "Events this week:"
-msgstr "Eventos esta semana:"
+#: ../../mod/openid.php:53
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "A conta não foi encontrada e não são permitidos registros via OpenID nesse site."
 
-#: ../../boot.php:1956 ../../include/nav.php:76
-msgid "Status"
-msgstr "Status"
+#: ../../mod/openid.php:93 ../../include/auth.php:112
+#: ../../include/auth.php:175
+msgid "Login failed."
+msgstr "Não foi possível autenticar."
 
-#: ../../boot.php:1959
-msgid "Status Messages and Posts"
-msgstr "Mensagem de Estado (status) e Publicações"
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Texto fonte (bbcode):"
 
-#: ../../boot.php:1966
-msgid "Profile Details"
-msgstr "Detalhe do Perfil"
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Texto fonte (Diaspora) a converter para BBcode:"
 
-#: ../../boot.php:1973 ../../mod/photos.php:51
-msgid "Photo Albums"
-msgstr "Álbuns de fotos"
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "Entrada fonte:"
 
-#: ../../boot.php:1977 ../../boot.php:1980
-msgid "Videos"
-msgstr "Vídeos"
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (HTML puro):"
 
-#: ../../boot.php:1990
-msgid "Events and Calendar"
-msgstr "Eventos e Agenda"
+#: ../../mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html: "
 
-#: ../../boot.php:1994 ../../mod/notes.php:44
-msgid "Personal Notes"
-msgstr "Notas pessoais"
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
 
-#: ../../boot.php:1997
-msgid "Only You Can See This"
-msgstr "Somente Você Pode Ver Isso"
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
 
-#: ../../mod/mood.php:62 ../../include/conversation.php:227
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s atualmente está %2$s"
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
 
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr "Humor"
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr "Defina o seu humor e conte aos seus amigos"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
 
-#: ../../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 "Acesso público negado."
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Fonte de entrada (formato Diaspora):"
 
-#: ../../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 "O item não foi encontrado."
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
 
-#: ../../mod/display.php:99 ../../mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "O acesso a este perfil está restrito."
+#: ../../mod/admin.php:55
+msgid "Theme settings updated."
+msgstr "As configurações do tema foram atualizadas."
 
-#: ../../mod/display.php:239
-msgid "Item has been removed."
-msgstr "O item foi removido."
+#: ../../mod/admin.php:102 ../../mod/admin.php:573
+msgid "Site"
+msgstr "Site"
 
-#: ../../mod/decrypt.php:9 ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Acesso negado."
+#: ../../mod/admin.php:103 ../../mod/admin.php:901 ../../mod/admin.php:916
+msgid "Users"
+msgstr "Usuários"
 
-#: ../../mod/friendica.php:55
-msgid "This is Friendica, version"
-msgstr "Este é o Friendica, versão"
+#: ../../mod/admin.php:104 ../../mod/admin.php:1005 ../../mod/admin.php:1058
+#: ../../mod/settings.php:57
+msgid "Plugins"
+msgstr "Plugins"
 
-#: ../../mod/friendica.php:56
-msgid "running at web location"
-msgstr "sendo executado no endereço web"
+#: ../../mod/admin.php:105 ../../mod/admin.php:1224 ../../mod/admin.php:1258
+msgid "Themes"
+msgstr "Temas"
 
-#: ../../mod/friendica.php:58
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Por favor, visite <a href=\"http://friendica.com\">friendica.com</a> para aprender mais sobre o projeto Friendica."
+#: ../../mod/admin.php:106
+msgid "DB updates"
+msgstr "Atualizações do BD"
 
-#: ../../mod/friendica.php:60
-msgid "Bug reports and issues: please visit"
-msgstr "Relatos e acompanhamentos de erros podem ser encontrados em"
+#: ../../mod/admin.php:121 ../../mod/admin.php:128 ../../mod/admin.php:1345
+msgid "Logs"
+msgstr "Relatórios"
 
-#: ../../mod/friendica.php:61
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com"
+#: ../../mod/admin.php:126 ../../include/nav.php:180
+msgid "Admin"
+msgstr "Admin"
 
-#: ../../mod/friendica.php:75
-msgid "Installed plugins/addons/apps:"
-msgstr "Plugins/complementos/aplicações instaladas:"
+#: ../../mod/admin.php:127
+msgid "Plugin Features"
+msgstr "Recursos do plugin"
 
-#: ../../mod/friendica.php:88
-msgid "No installed plugins/addons/apps"
-msgstr "Nenhum plugin/complemento/aplicativo instalado"
+#: ../../mod/admin.php:129
+msgid "User registrations waiting for confirmation"
+msgstr "Cadastros de novos usuários aguardando confirmação"
 
-#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s dá as boas vinda à %2$s"
+#: ../../mod/admin.php:164 ../../mod/admin.php:955 ../../mod/admin.php:1166
+#: ../../mod/notice.php:15 ../../mod/display.php:51 ../../mod/display.php:270
+#: ../../mod/viewsrc.php:15 ../../include/items.php:4194
+msgid "Item not found."
+msgstr "O item não foi encontrado."
 
-#: ../../mod/register.php:91 ../../mod/admin.php:733 ../../mod/regmod.php:54
-#, php-format
-msgid "Registration details for %s"
-msgstr "Detalhes do registro de %s"
+#: ../../mod/admin.php:188 ../../mod/admin.php:855
+msgid "Normal Account"
+msgstr "Conta normal"
 
-#: ../../mod/register.php:99
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "O registro foi bem sucedido. Por favor, verifique seu e-mail para maiores informações."
+#: ../../mod/admin.php:189 ../../mod/admin.php:856
+msgid "Soapbox Account"
+msgstr "Conta de vitrine"
 
-#: ../../mod/register.php:103
-msgid "Failed to send email message. Here is the message that failed."
-msgstr "Não foi possível enviar a mensagem de e-mail. Aqui está a mensagem que não foi."
+#: ../../mod/admin.php:190 ../../mod/admin.php:857
+msgid "Community/Celebrity Account"
+msgstr "Conta de comunidade/celebridade"
 
-#: ../../mod/register.php:108
-msgid "Your registration can not be processed."
-msgstr "Não foi possível processar o seu registro."
+#: ../../mod/admin.php:191 ../../mod/admin.php:858
+msgid "Automatic Friend Account"
+msgstr "Conta de amigo automático"
 
-#: ../../mod/register.php:145
-#, php-format
-msgid "Registration request at %s"
-msgstr "Solicitação de registro em %s"
+#: ../../mod/admin.php:192
+msgid "Blog Account"
+msgstr "Conta de blog"
 
-#: ../../mod/register.php:154
-msgid "Your registration is pending approval by the site owner."
-msgstr "A aprovação do seu registro está pendente junto ao administrador do site."
+#: ../../mod/admin.php:193
+msgid "Private Forum"
+msgstr "Fórum privado"
 
-#: ../../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 "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã."
+#: ../../mod/admin.php:212
+msgid "Message queues"
+msgstr "Fila de mensagens"
 
-#: ../../mod/register.php:220
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr "Você pode (opcionalmente) preencher este formulário via OpenID, fornecendo seu OpenID e clicando em 'Registrar'."
+#: ../../mod/admin.php:217 ../../mod/admin.php:572 ../../mod/admin.php:900
+#: ../../mod/admin.php:1004 ../../mod/admin.php:1057 ../../mod/admin.php:1223
+#: ../../mod/admin.php:1257 ../../mod/admin.php:1344
+msgid "Administration"
+msgstr "Administração"
 
-#: ../../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 "Se você não está familiarizado com o OpenID, por favor, deixe esse campo em branco e preencha os outros itens."
+#: ../../mod/admin.php:218
+msgid "Summary"
+msgstr "Resumo"
 
-#: ../../mod/register.php:222
-msgid "Your OpenID (optional): "
-msgstr "Seu OpenID (opcional): "
+#: ../../mod/admin.php:220
+msgid "Registered users"
+msgstr "Usuários registrados"
 
-#: ../../mod/register.php:236
-msgid "Include your profile in member directory?"
-msgstr "Incluir o seu perfil no diretório de membros?"
+#: ../../mod/admin.php:222
+msgid "Pending registrations"
+msgstr "Registros pendentes"
 
-#: ../../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 "Sim"
+#: ../../mod/admin.php:223
+msgid "Version"
+msgstr "Versão"
 
-#: ../../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 "Não"
+#: ../../mod/admin.php:225
+msgid "Active plugins"
+msgstr "Plugins ativos"
 
-#: ../../mod/register.php:257
-msgid "Membership on this site is by invitation only."
-msgstr "A associação a este site só pode ser feita mediante convite."
+#: ../../mod/admin.php:248
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "Não foi possível analisar a URL. Ela deve conter pelo menos <scheme>://<domain>"
 
-#: ../../mod/register.php:258
-msgid "Your invitation ID: "
-msgstr "A ID do seu convite: "
+#: ../../mod/admin.php:485
+msgid "Site settings updated."
+msgstr "As configurações do site foram atualizadas."
 
-#: ../../mod/register.php:261 ../../mod/admin.php:570
-msgid "Registration"
-msgstr "Registro"
+#: ../../mod/admin.php:514 ../../mod/settings.php:823
+msgid "No special theme for mobile devices"
+msgstr "Nenhum tema especial para dispositivos móveis"
 
-#: ../../mod/register.php:269
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Seu nome completo (ex: José da Silva): "
+#: ../../mod/admin.php:531 ../../mod/contacts.php:408
+msgid "Never"
+msgstr "Nunca"
 
-#: ../../mod/register.php:270
-msgid "Your Email Address: "
-msgstr "Seu endereço de e-mail: "
+#: ../../mod/admin.php:532
+msgid "At post arrival"
+msgstr "Na chegada da publicação"
 
-#: ../../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 "Selecione uma identificação para o perfil. Ela deve começar com um caractere alfabético. O endereço do seu perfil neste site será '<strong>identificação@$sitename</strong>'"
+#: ../../mod/admin.php:533 ../../include/contact_selectors.php:56
+msgid "Frequently"
+msgstr "Frequentemente"
 
-#: ../../mod/register.php:272
-msgid "Choose a nickname: "
-msgstr "Escolha uma identificação: "
+#: ../../mod/admin.php:534 ../../include/contact_selectors.php:57
+msgid "Hourly"
+msgstr "De hora em hora"
 
-#: ../../mod/register.php:281 ../../mod/uimport.php:64
-msgid "Import"
-msgstr "Importar"
+#: ../../mod/admin.php:535 ../../include/contact_selectors.php:58
+msgid "Twice daily"
+msgstr "Duas vezes ao dia"
 
-#: ../../mod/register.php:282
-msgid "Import your profile to this friendica instance"
-msgstr "Importa seu perfil  desta instância do friendica"
+#: ../../mod/admin.php:536 ../../include/contact_selectors.php:59
+msgid "Daily"
+msgstr "Diariamente"
 
-#: ../../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 "O perfil não foi encontrado."
+#: ../../mod/admin.php:541
+msgid "Multi user instance"
+msgstr "Instância multi usuário"
 
-#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:129
-#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
-msgid "Contact not found."
-msgstr "O contato não foi encontrado."
+#: ../../mod/admin.php:559
+msgid "Closed"
+msgstr "Fechado"
 
-#: ../../mod/dfrn_confirm.php:119
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "Isso pode acontecer eventualmente se o contato foi solicitado por ambas as pessoas e ele já tinha sido aprovado."
+#: ../../mod/admin.php:560
+msgid "Requires approval"
+msgstr "Requer aprovação"
 
-#: ../../mod/dfrn_confirm.php:237
-msgid "Response from remote site was not understood."
-msgstr "A resposta do site remoto não foi compreendida."
+#: ../../mod/admin.php:561
+msgid "Open"
+msgstr "Aberto"
 
-#: ../../mod/dfrn_confirm.php:246
-msgid "Unexpected response from remote site: "
-msgstr "Resposta inesperada do site remoto: "
+#: ../../mod/admin.php:565
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Nenhuma política de SSL, os links irão rastrear o estado SSL da página"
 
-#: ../../mod/dfrn_confirm.php:254
-msgid "Confirmation completed successfully."
-msgstr "A confirmação foi completada com sucesso."
+#: ../../mod/admin.php:566
+msgid "Force all links to use SSL"
+msgstr "Forçar todos os links a utilizar SSL"
 
-#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
-#: ../../mod/dfrn_confirm.php:277
-msgid "Remote site reported: "
-msgstr "O site remoto relatou: "
+#: ../../mod/admin.php:567
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Certificado auto-assinado, usar SSL somente para links locais (não recomendado)"
 
-#: ../../mod/dfrn_confirm.php:268
-msgid "Temporary failure. Please wait and try again."
-msgstr "Falha temporária. Por favor, aguarde e tente novamente."
+#: ../../mod/admin.php:574 ../../mod/admin.php:1059 ../../mod/admin.php:1259
+#: ../../mod/admin.php:1346 ../../mod/settings.php:609
+#: ../../mod/settings.php:719 ../../mod/settings.php:793
+#: ../../mod/settings.php:872 ../../mod/settings.php:1104
+msgid "Save Settings"
+msgstr "Salvar configurações"
 
-#: ../../mod/dfrn_confirm.php:275
-msgid "Introduction failed or was revoked."
-msgstr "Ocorreu uma falha na apresentação ou ela foi revogada."
+#: ../../mod/admin.php:575 ../../mod/register.php:265
+msgid "Registration"
+msgstr "Registro"
 
-#: ../../mod/dfrn_confirm.php:420
-msgid "Unable to set contact photo."
-msgstr "Não foi possível definir a foto do contato."
+#: ../../mod/admin.php:576
+msgid "File upload"
+msgstr "Envio de arquivo"
 
-#: ../../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 agora é amigo de %2$s"
+#: ../../mod/admin.php:577
+msgid "Policies"
+msgstr "Políticas"
 
-#: ../../mod/dfrn_confirm.php:562
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Não foi encontrado nenhum registro de usuário para '%s' "
+#: ../../mod/admin.php:578
+msgid "Advanced"
+msgstr "Avançado"
 
-#: ../../mod/dfrn_confirm.php:572
-msgid "Our site encryption key is apparently messed up."
-msgstr "A chave de criptografia do nosso site está, aparentemente, bagunçada."
+#: ../../mod/admin.php:579
+msgid "Performance"
+msgstr "Performance"
 
-#: ../../mod/dfrn_confirm.php:583
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "Foi fornecida uma URL em branco ou não foi possível descriptografá-la."
+#: ../../mod/admin.php:580
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Relocação - ATENÇÃO: função avançada. Pode tornar esse servidor inacessível."
 
-#: ../../mod/dfrn_confirm.php:604
-msgid "Contact record was not found for you on our site."
-msgstr "O registro do contato não foi encontrado para você em seu site."
+#: ../../mod/admin.php:583
+msgid "Site name"
+msgstr "Nome do site"
 
-#: ../../mod/dfrn_confirm.php:618
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "A chave pública do site não está disponível no registro do contato para a URL %s"
+#: ../../mod/admin.php:584
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: ../../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 "O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve funcionar agora, se você tentar de novo."
+#: ../../mod/admin.php:585
+msgid "Additional Info"
+msgstr "Informação adicional"
 
-#: ../../mod/dfrn_confirm.php:649
-msgid "Unable to set your contact credentials on our system."
-msgstr "Não foi possível definir suas credenciais de contato no nosso sistema."
+#: ../../mod/admin.php:585
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at dir.friendica.com/siteinfo."
+msgstr "Para servidores públicos: você pode adicionar informações aqui que serão listadas em dir.friendica.com/siteinfo."
 
-#: ../../mod/dfrn_confirm.php:716
-msgid "Unable to update your contact profile details on our system"
-msgstr "Não foi possível atualizar os detalhes do seu perfil em nosso sistema."
+#: ../../mod/admin.php:586
+msgid "System language"
+msgstr "Idioma do sistema"
 
-#: ../../mod/dfrn_confirm.php:751
-#, php-format
-msgid "Connection accepted at %s"
-msgstr "Conexão aceita em %s"
+#: ../../mod/admin.php:587
+msgid "System theme"
+msgstr "Tema do sistema"
 
-#: ../../mod/dfrn_confirm.php:800
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s se associou a %2$s"
+#: ../../mod/admin.php:587
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Tema padrão do sistema. Pode ser substituído nos perfis de usuário -  <a href='#' id='cnftheme'>alterar configurações do tema</a>"
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Autorizar a conexão com a aplicação"
+#: ../../mod/admin.php:588
+msgid "Mobile system theme"
+msgstr "Tema do sistema para dispositivos móveis"
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Volte para a sua aplicação e digite este código de segurança:"
+#: ../../mod/admin.php:588
+msgid "Theme for mobile devices"
+msgstr "Tema para dispositivos móveis"
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Por favor, autentique-se para continuar."
+#: ../../mod/admin.php:589
+msgid "SSL link policy"
+msgstr "Política de link SSL"
 
-#: ../../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 "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?"
+#: ../../mod/admin.php:589
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Determina se os links gerados devem ser forçados a utilizar SSL"
 
-#: ../../mod/lostpass.php:17
-msgid "No valid account found."
-msgstr "Não foi encontrada nenhuma conta válida."
+#: ../../mod/admin.php:590
+msgid "Old style 'Share'"
+msgstr "Estilo antigo do 'Compartilhar' "
 
-#: ../../mod/lostpass.php:33
-msgid "Password reset request issued. Check your email."
-msgstr "A solicitação para reiniciar sua senha foi encaminhada. Verifique seu e-mail."
+#: ../../mod/admin.php:590
+msgid "Deactivates the bbcode element 'share' for repeating items."
+msgstr "Desativa o elemento bbcode 'compartilhar' para repetir ítens."
 
-#: ../../mod/lostpass.php:44
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Foi feita uma solicitação de reiniciação da senha em %s"
+#: ../../mod/admin.php:591
+msgid "Hide help entry from navigation menu"
+msgstr "Oculta a entrada 'Ajuda' do menu de navegação"
 
-#: ../../mod/lostpass.php:66
+#: ../../mod/admin.php:591
 msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi reiniciada."
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Oculta a entrada de menu para as páginas de Ajuda do menu de navegação. Ainda será possível acessá-las chamando /help diretamente."
 
-#: ../../mod/lostpass.php:85
-msgid "Your password has been reset as requested."
-msgstr "Sua senha foi reiniciada, conforme solicitado."
+#: ../../mod/admin.php:592
+msgid "Single user instance"
+msgstr "Instância de usuário único"
 
-#: ../../mod/lostpass.php:86
-msgid "Your new password is"
-msgstr "Sua nova senha é"
-
-#: ../../mod/lostpass.php:87
-msgid "Save or copy your new password - and then"
-msgstr "Grave ou copie a sua nova senha e, então"
+#: ../../mod/admin.php:592
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Faça essa instância multiusuário ou usuário único para o usuário em questão"
 
-#: ../../mod/lostpass.php:88
-msgid "click here to login"
-msgstr "clique aqui para entrar"
+#: ../../mod/admin.php:593
+msgid "Maximum image size"
+msgstr "Tamanho máximo da imagem"
 
-#: ../../mod/lostpass.php:89
+#: ../../mod/admin.php:593
 msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Sua senha pode ser alterada na página de <em>Configurações</em> após você entrar em seu perfil."
-
-#: ../../mod/lostpass.php:107
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "Sua senha foi modifica às %s"
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Tamanho máximo, em bytes, das imagens enviadas. O padrão é 0, o que significa sem limites"
 
-#: ../../mod/lostpass.php:122
-msgid "Forgot your Password?"
-msgstr "Esqueceu a sua senha?"
+#: ../../mod/admin.php:594
+msgid "Maximum image length"
+msgstr "Tamanho máximo da imagem"
 
-#: ../../mod/lostpass.php:123
+#: ../../mod/admin.php:594
 msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Digite o seu endereço de e-mail e clique em 'Reiniciar' para prosseguir com a reiniciação da sua senha. Após isso, verifique seu e-mail para mais instruções."
-
-#: ../../mod/lostpass.php:124
-msgid "Nickname or Email: "
-msgstr "Identificação ou e-mail: "
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Tamanho máximo em pixels do lado mais largo das imagens enviadas. O padrão é -1, que significa sem limites."
 
-#: ../../mod/lostpass.php:125
-msgid "Reset"
-msgstr "Reiniciar"
+#: ../../mod/admin.php:595
+msgid "JPEG image quality"
+msgstr "Qualidade da imagem JPEG"
 
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "O número diário de mensagens do mural de %s foi excedido. Não foi possível enviar a mensagem."
+#: ../../mod/admin.php:595
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "Imagens JPEG enviadas serão salvas com essa qualidade [0-100]. O padrão é 100, que significa a melhor qualidade."
 
-#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
-msgid "No recipient selected."
-msgstr "Não foi selecionado nenhum destinatário."
+#: ../../mod/admin.php:597
+msgid "Register policy"
+msgstr "Política de registro"
 
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "Não foi possível verificar a sua localização."
+#: ../../mod/admin.php:598
+msgid "Maximum Daily Registrations"
+msgstr "Registros Diários Máximos"
 
-#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
-msgid "Message could not be sent."
-msgstr "Não foi possível enviar a mensagem."
+#: ../../mod/admin.php:598
+msgid ""
+"If registration is permitted above, this sets the maximum number of new user"
+" registrations to accept per day.  If register is set to closed, this "
+"setting has no effect."
+msgstr "Se o registro é permitido acima, isso configura o número máximo de registros de novos usuários a serem aceitos por dia. Se o registro está configurado para 'fechado/closed' ,  essa configuração não tem efeito."
 
-#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
-msgid "Message collection failure."
-msgstr "Falha na coleta de mensagens."
+#: ../../mod/admin.php:599
+msgid "Register text"
+msgstr "Texto de registro"
 
-#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
-msgid "Message sent."
-msgstr "A mensagem foi enviada."
+#: ../../mod/admin.php:599
+msgid "Will be displayed prominently on the registration page."
+msgstr "Será exibido com destaque na página de registro."
 
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Nenhum destinatário."
+#: ../../mod/admin.php:600
+msgid "Accounts abandoned after x days"
+msgstr "Contas abandonadas após x dias"
 
-#: ../../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 "Por favor, digite uma URL:"
+#: ../../mod/admin.php:600
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Não desperdiçará recursos do sistema captando de sites externos para contas abandonadas. Digite 0 para nenhum limite de tempo."
 
-#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
-msgid "Send Private Message"
-msgstr "Enviar mensagem privada"
+#: ../../mod/admin.php:601
+msgid "Allowed friend domains"
+msgstr "Domínios de amigos permitidos"
 
-#: ../../mod/wallmessage.php:143
-#, php-format
+#: ../../mod/admin.php:601
 msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
-msgstr "Caso você deseje uma resposta de %s, por favor verifique se as configurações de privacidade em seu site permitem o recebimento de mensagens de remetentes desconhecidos."
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Lista dos domínios que têm permissão para estabelecer amizades com esse site, separados por vírgula. Caracteres curinga são aceitos. Deixe em branco para permitir qualquer domínio."
 
-#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
-#: ../../mod/message.php:553
-msgid "To:"
-msgstr "Para:"
+#: ../../mod/admin.php:602
+msgid "Allowed email domains"
+msgstr "Domínios de e-mail permitidos"
 
-#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
-#: ../../mod/message.php:555
-msgid "Subject:"
-msgstr "Assunto:"
+#: ../../mod/admin.php:602
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr "Lista de domínios separados por vírgula, que são permitidos em endereços de e-mail para registro nesse site. Caracteres-curinga são aceitos. Vazio para aceitar qualquer domínio"
 
-#: ../../mod/wallmessage.php:151 ../../mod/message.php:329
-#: ../../mod/message.php:558 ../../mod/invite.php:134
-msgid "Your message:"
-msgstr "Sua mensagem:"
+#: ../../mod/admin.php:603
+msgid "Block public"
+msgstr "Bloquear acesso público"
 
-#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
-#: ../../mod/message.php:332 ../../mod/message.php:562
-#: ../../include/conversation.php:1081
-msgid "Upload photo"
-msgstr "Enviar foto"
+#: ../../mod/admin.php:603
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Marque para bloquear o acesso público a todas as páginas desse site, com exceção das páginas pessoais públicas, a não ser que a pessoa esteja autenticada."
 
-#: ../../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 "Inserir link web"
+#: ../../mod/admin.php:604
+msgid "Force publish"
+msgstr "Forçar a listagem"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Bemvindo ao Friendica"
+#: ../../mod/admin.php:604
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Marque para forçar todos os perfis desse site a serem listados no diretório do site."
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Dicas para os novos membros"
+#: ../../mod/admin.php:605
+msgid "Global directory update URL"
+msgstr "URL de atualização do diretório global"
 
-#: ../../mod/newmember.php:12
+#: ../../mod/admin.php:605
 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 "Gostaríamos de oferecer algumas dicas e links para ajudar a tornar a sua experiência agradável. Clique em qualquer item para visitar a página correspondente. Um link para essa página será visível em sua home page por duas semanas após o seu registro inicial e, então, desaparecerá discretamente."
+"URL to update the global directory. If this is not set, the global directory"
+" is completely unavailable to the application."
+msgstr "URL para atualizar o diretório global. Se isso não for definido, o diretório global não estará disponível neste site."
 
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Do Início"
+#: ../../mod/admin.php:606
+msgid "Allow threaded items"
+msgstr "Habilita itens aninhados"
 
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Passo-a-passo da friendica"
+#: ../../mod/admin.php:606
+msgid "Allow infinite level threading for items on this site."
+msgstr "Habilita nível infinito de aninhamento (threading) para itens."
 
-#: ../../mod/newmember.php:18
+#: ../../mod/admin.php:607
+msgid "Private posts by default for new users"
+msgstr "Publicações privadas por padrão para novos usuários"
+
+#: ../../mod/admin.php:607
 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 "Na sua página <em>Início Rápido</em> - encontre uma introdução rápida ao seu perfil e abas da rede, faça algumas conexões novas, e encontre alguns grupos entrar."
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Define as permissões padrão de publicação de todos os novos membros para o grupo de privacidade padrão, ao invés de torná-las públicas."
 
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Ir para as suas configurações"
+#: ../../mod/admin.php:608
+msgid "Don't include post content in email notifications"
+msgstr "Não incluir o conteúdo da postagem nas notificações de email"
 
-#: ../../mod/newmember.php:26
+#: ../../mod/admin.php:608
 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 "Em sua página  <em>Configurações</em> - mude sua senha inicial. Também tome nota de seu Endereço de Identidade. Isso se parece com um endereço de e-mail - e será útil para se fazer amigos na rede social livre."
+"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 "Não incluir o conteúdo de uma postagem/comentário/mensagem privada/etc. em notificações de email que são enviadas para fora desse sítio, como medida de segurança."
 
-#: ../../mod/newmember.php:28
+#: ../../mod/admin.php:609
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Disabilita acesso público a addons listados no menu de aplicativos."
+
+#: ../../mod/admin.php:609
 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 "Revise as outras configurações, em particular as relacionadas a privacidade. Não estar listado no diretório é o equivalente a não ter o seu número na lista telefônica. Normalmente é interessante você estar listado - a não ser que os seu amigos atuais e potenciais saibam exatamente como encontrar você."
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr "Marcar essa caixa ira restringir os addons listados no menu de aplicativos aos membros somente."
 
-#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
-msgid "Upload Profile Photo"
-msgstr "Enviar foto do perfil"
+#: ../../mod/admin.php:610
+msgid "Don't embed private images in posts"
+msgstr "Não inclua imagens privadas em publicações"
 
-#: ../../mod/newmember.php:36
+#: ../../mod/admin.php:610
 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 "Envie uma foto para o seu perfil, caso ainda não tenha feito isso. Estudos indicam que pessoas que publicam fotos reais delas mesmas têm 10 vezes mais chances de encontrar novos amigos do que as que não o fazem."
+"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 "Não substitue fotos privativas guardadas localmente em publicações por uma cópia inclusa da imagem. Isso significa que os contatos que recebem publicações contendo fotos privadas terão que autenticar e carregar cada imagem, o que pode levar algum tempo."
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Editar seu perfil"
+#: ../../mod/admin.php:611
+msgid "Allow Users to set remote_self"
+msgstr "Permite usuários configurarem remote_self"
 
-#: ../../mod/newmember.php:38
+#: ../../mod/admin.php:611
 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 "Edite o seu perfil <strong>padrão</strong> a seu gosto. Revise as configurações de ocultação da sua lista de amigos e do seu perfil de visitantes desconhecidos."
+"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 "Ao marcar isto, todos os usuários poderão marcar cada contato como um remote_self na opção de reparar contato. Marcar isto para um contato produz espelhamento de toda publicação deste contato no fluxo dos usuários"
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Palavras-chave do perfil"
+#: ../../mod/admin.php:612
+msgid "Block multiple registrations"
+msgstr "Bloquear registros repetidos"
 
-#: ../../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 "Defina algumas palavras-chave públicas para o seu perfil padrão, que descrevam os seus interesses. Nós podemos encontrar outras pessoas com interesses similares e sugerir novas amizades."
+#: ../../mod/admin.php:612
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Desabilitar o registro de contas adicionais para serem usadas como páginas."
 
-#: ../../mod/newmember.php:44
-msgid "Connecting"
-msgstr "Conexões"
+#: ../../mod/admin.php:613
+msgid "OpenID support"
+msgstr "Suporte ao OpenID"
 
-#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-#: ../../include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../mod/admin.php:613
+msgid "OpenID support for registration and logins."
+msgstr "Suporte ao OpenID para registros e autenticações."
 
-#: ../../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 "Autorize o Conector com Facebook, caso você tenha uma conta lá e nós (opcionalmente) importaremos todos os seus amigos e conversas do Facebook."
+#: ../../mod/admin.php:614
+msgid "Fullname check"
+msgstr "Verificar nome completo"
 
-#: ../../mod/newmember.php:51
+#: ../../mod/admin.php:614
 msgid ""
-"<em>If</em> this is your own personal server, installing the Facebook addon "
-"may ease your transition to the free social web."
-msgstr "<em>Se</em> esse é o seu servidor pessoal, instalar o complemento do Facebook talvez facilite a transição para a rede social livre."
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Forçar os usuários a usar um espaço em branco entre o nome e o sobrenome, ao preencherem o nome completo no registro, como uma medida contra o spam"
 
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
-msgstr "Importação de e-mails"
+#: ../../mod/admin.php:615
+msgid "UTF-8 Regular expressions"
+msgstr "Expressões regulares UTF-8"
 
-#: ../../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 "Forneça a informação de acesso ao seu e-mail na sua página de Configuração de Conector se você deseja importar e interagir com amigos ou listas de discussão da sua Caixa de Entrada de e-mail"
+#: ../../mod/admin.php:615
+msgid "Use PHP UTF8 regular expressions"
+msgstr "Use expressões regulares do PHP em UTF8"
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "Ir para a sua página de contatos"
+#: ../../mod/admin.php:616
+msgid "Show Community Page"
+msgstr "Exibir a página da comunidade"
 
-#: ../../mod/newmember.php:58
+#: ../../mod/admin.php:616
 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 "Sua página de contatos é sua rota para o gerenciamento de amizades e conexão com amigos em outras redes. Geralmente você fornece o endereço deles ou a URL do site na janela de diálogo <em>Adicionar Novo Contato</em>."
+"Display a Community page showing all recent public postings on this site."
+msgstr "Exibe uma página da Comunidade, mostrando todas as publicações recentes feitas nesse site."
 
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr "Ir para o diretório do seu site"
+#: ../../mod/admin.php:617
+msgid "Enable OStatus support"
+msgstr "Habilitar suporte ao OStatus"
 
-#: ../../mod/newmember.php:60
+#: ../../mod/admin.php:617
 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 "A página de Diretório permite que você encontre outras pessoas nesta rede ou em outras redes federadas. Procure por um link <em>Conectar</em> ou <em>Seguir</em> no perfil que deseja acompanhar. Forneça o seu Endereço de Identidade próprio, se solicitado."
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "Fornece compatibilidade OStatus (StatusNet, GNU Social, etc.). Todas as comunicações no OStatus são públicas, assim avisos de privacidade serão ocasionalmente mostrados."
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-msgstr "Pesquisar por novas pessoas"
+#: ../../mod/admin.php:618
+msgid "OStatus conversation completion interval"
+msgstr "Intervalo de finalização da conversação OStatus "
 
-#: ../../mod/newmember.php:62
+#: ../../mod/admin.php:618
 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 "No painel lateral da página de Contatos existem várias ferramentas para encontrar novos amigos. Você pode descobrir pessoas com os mesmos interesses, procurar por nomes ou interesses e fornecer sugestões baseadas nos relacionamentos da rede. Em um site completamente novo, as sugestões de amizades geralmente começam a ser populadas dentro de 24 horas."
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr "De quanto em quanto tempo o \"buscador\" (poller) deve checar por novas entradas numa conversação OStatus? Essa pode ser uma tarefa bem demorada."
 
-#: ../../mod/newmember.php:66 ../../include/group.php:270
-msgid "Groups"
-msgstr "Grupos"
+#: ../../mod/admin.php:619
+msgid "Enable Diaspora support"
+msgstr "Habilitar suporte ao Diaspora"
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "Agrupe seus contatos"
+#: ../../mod/admin.php:619
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Fornece compatibilidade nativa com a rede Diaspora."
 
-#: ../../mod/newmember.php:70
+#: ../../mod/admin.php:620
+msgid "Only allow Friendica contacts"
+msgstr "Permitir somente contatos Friendica"
+
+#: ../../mod/admin.php:620
 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 "Após fazer novas amizades, organize-as em grupos de conversa privados, a partir da barra lateral na sua página de Contatos. A partir daí, você poderá interagir com cada grupo privativamente, na sua página de Rede."
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Todos os contatos devem usar protocolos Friendica. Todos os outros protocolos de comunicação embarcados estão desabilitados"
 
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "Por que as minhas publicações não são públicas?"
+#: ../../mod/admin.php:621
+msgid "Verify SSL"
+msgstr "Verificar SSL"
 
-#: ../../mod/newmember.php:73
+#: ../../mod/admin.php:621
 msgid ""
-"Friendica respects your privacy. By default, your posts will only show up to"
-" people you've added as friends. For more information, see the help section "
-"from the link above."
-msgstr "A friendica respeita sua privacidade. Por padrão, suas publicações estarão visíveis apenas para as pessoas que você adicionou como amigos. Para mais informações, veja a página de ajuda, a partir do link acima."
+"If you wish, you can turn on strict certificate checking. This will mean you"
+" cannot connect (at all) to self-signed SSL sites."
+msgstr "Caso deseje, você pode habilitar a restrição de certificações. Isso significa que você não poderá conectar-se a nenhum site que use certificados auto-assinados."
 
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr "Obtendo ajuda"
+#: ../../mod/admin.php:622
+msgid "Proxy user"
+msgstr "Usuário do proxy"
 
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "Ir para a seção de ajuda"
+#: ../../mod/admin.php:623
+msgid "Proxy URL"
+msgstr "URL do proxy"
 
-#: ../../mod/newmember.php:82
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Nossas páginas de <strong>ajuda</strong> podem ser consultadas para mais detalhes sobre características e recursos do programa."
+#: ../../mod/admin.php:624
+msgid "Network timeout"
+msgstr "Limite de tempo da rede"
 
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Você realmente deseja deletar essa sugestão?"
+#: ../../mod/admin.php:624
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Valor em segundos. Defina como 0 para ilimitado (não recomendado)."
 
-#: ../../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 "Cancelar"
+#: ../../mod/admin.php:625
+msgid "Delivery interval"
+msgstr "Intervalo de envio"
 
-#: ../../mod/suggest.php:72
+#: ../../mod/admin.php:625
 msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Não existe nenhuma sugestão disponível. Se este for um site novo, por favor tente novamente em 24 horas."
+"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 "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Recomendado: 4-5 para servidores compartilhados (shared hosts), 2-3 para servidores privados virtuais (VPS). 0-1 para grandes servidores dedicados."
 
-#: ../../mod/suggest.php:90
-msgid "Ignore/Hide"
-msgstr "Ignorar/Ocultar"
+#: ../../mod/admin.php:626
+msgid "Poll interval"
+msgstr "Intervalo da busca (polling)"
 
-#: ../../mod/network.php:179
-msgid "Search Results For:"
-msgstr "Resultados de Busca Por:"
+#: ../../mod/admin.php:626
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Se 0, use intervalo de entrega."
 
-#: ../../mod/network.php:222 ../../mod/_search.php:21 ../../mod/search.php:21
-msgid "Remove term"
-msgstr "Remover o termo"
+#: ../../mod/admin.php:627
+msgid "Maximum Load Average"
+msgstr "Média de Carga Máxima"
 
-#: ../../mod/network.php:231 ../../mod/_search.php:30 ../../mod/search.php:30
-#: ../../include/features.php:41
-msgid "Saved Searches"
-msgstr "Pesquisas salvas"
+#: ../../mod/admin.php:627
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Carga do sistema máxima antes que os processos de entrega e busca sejam postergados - padrão 50."
 
-#: ../../mod/network.php:232 ../../include/group.php:275
-msgid "add"
-msgstr "adicionar"
+#: ../../mod/admin.php:629
+msgid "Use MySQL full text engine"
+msgstr "Use o engine de texto completo (full text) do MySQL"
 
-#: ../../mod/network.php:394
-msgid "Commented Order"
-msgstr "Ordem dos comentários"
+#: ../../mod/admin.php:629
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
+msgstr "Ativa a engine de texto completo (full text). Acelera a busca - mas só pode buscar apenas por 4 ou mais caracteres."
 
-#: ../../mod/network.php:397
-msgid "Sort by Comment Date"
-msgstr "Ordenar pela data do comentário"
+#: ../../mod/admin.php:630
+msgid "Suppress Language"
+msgstr "Retira idioma"
 
-#: ../../mod/network.php:400
-msgid "Posted Order"
-msgstr "Ordem das publicações"
+#: ../../mod/admin.php:630
+msgid "Suppress language information in meta information about a posting."
+msgstr "Retira informações sobre idioma nas meta informações sobre uma publicação."
 
-#: ../../mod/network.php:403
-msgid "Sort by Post Date"
-msgstr "Ordenar pela data de publicação"
+#: ../../mod/admin.php:631
+msgid "Path to item cache"
+msgstr "Diretório do cache de item"
 
-#: ../../mod/network.php:441 ../../mod/notifications.php:88
-msgid "Personal"
-msgstr "Pessoal"
+#: ../../mod/admin.php:632
+msgid "Cache duration in seconds"
+msgstr "Duração do cache em segundos"
 
-#: ../../mod/network.php:444
-msgid "Posts that mention or involve you"
-msgstr "Publicações que mencionem ou envolvam você"
+#: ../../mod/admin.php:632
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day)."
+msgstr "Por quanto tempo o arquivo de caches deve ser guardado? Valor padrão é 86400 segundos (Um dia)."
 
-#: ../../mod/network.php:450
-msgid "New"
-msgstr "Nova"
+#: ../../mod/admin.php:633
+msgid "Path for lock file"
+msgstr "Diretório do arquivo de trava"
 
-#: ../../mod/network.php:453
-msgid "Activity Stream - by date"
-msgstr "Fluxo de atividades - por data"
+#: ../../mod/admin.php:634
+msgid "Temp path"
+msgstr "Diretório Temp"
 
-#: ../../mod/network.php:459
-msgid "Shared Links"
-msgstr "Links compartilhados"
+#: ../../mod/admin.php:635
+msgid "Base path to installation"
+msgstr "Diretório base para instalação"
 
-#: ../../mod/network.php:462
-msgid "Interesting Links"
-msgstr "Links interessantes"
+#: ../../mod/admin.php:637
+msgid "New base url"
+msgstr "Nova URL base"
 
-#: ../../mod/network.php:468
-msgid "Starred"
-msgstr "Destacada"
+#: ../../mod/admin.php:655
+msgid "Update has been marked successful"
+msgstr "A atualização foi marcada como bem sucedida"
 
-#: ../../mod/network.php:471
-msgid "Favourite Posts"
-msgstr "Publicações favoritas"
+#: ../../mod/admin.php:665
+#, php-format
+msgid "Executing %s failed. Check system logs."
+msgstr "Ocorreu um erro na execução de %s. Verifique os relatórios do sistema."
 
-#: ../../mod/network.php:539
+#: ../../mod/admin.php:668
 #, 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] "Aviso: Este grupo contém %s membro de uma rede insegura."
-msgstr[1] "Aviso: Este grupo contém %s membros de uma rede insegura."
+msgid "Update %s was successfully applied."
+msgstr "A atualização %s foi aplicada com sucesso."
 
-#: ../../mod/network.php:542
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "Mensagens privadas para este grupo correm o risco de sofrerem divulgação pública."
+#: ../../mod/admin.php:672
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "Atualizar %s não retornou um status. Desconhecido se ele teve sucesso."
 
-#: ../../mod/network.php:588 ../../mod/content.php:119
-msgid "No such group"
-msgstr "Este grupo não existe"
+#: ../../mod/admin.php:675
+#, php-format
+msgid "Update function %s could not be found."
+msgstr "Não foi possível encontrar a função de atualização %s."
 
-#: ../../mod/network.php:599 ../../mod/content.php:130
-msgid "Group is empty"
-msgstr "O grupo está vazio"
+#: ../../mod/admin.php:690
+msgid "No failed updates."
+msgstr "Nenhuma atualização com falha."
 
-#: ../../mod/network.php:605 ../../mod/content.php:134
-msgid "Group: "
-msgstr "Grupo: "
+#: ../../mod/admin.php:694
+msgid "Failed Updates"
+msgstr "Atualizações com falha"
 
-#: ../../mod/network.php:617
-msgid "Contact: "
-msgstr "Contato: "
+#: ../../mod/admin.php:695
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "Isso não inclue atualizações antes da 1139, as quais não retornavam um status."
 
-#: ../../mod/network.php:619
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação pública."
+#: ../../mod/admin.php:696
+msgid "Mark success (if update was manually applied)"
+msgstr "Marcar como bem sucedida (caso tenham sido aplicadas atualizações manuais)"
 
-#: ../../mod/network.php:624
-msgid "Invalid contact."
-msgstr "Contato inválido."
+#: ../../mod/admin.php:697
+msgid "Attempt to execute this update step automatically"
+msgstr "Tentar executar esse passo da atualização automaticamente"
 
-#: ../../mod/install.php:117
-msgid "Friendica Communications Server - Setup"
-msgstr "Servidor de Comunicações Friendica - Configuração"
+#: ../../mod/admin.php:737 ../../mod/register.php:92 ../../mod/regmod.php:54
+#, php-format
+msgid "Registration details for %s"
+msgstr "Detalhes do registro de %s"
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
-msgstr "Não foi possível conectar ao banco de dados."
+#: ../../mod/admin.php:743
+msgid "Registration successful. Email send to user"
+msgstr "Registro bem sucedido. Email enviado ao usuário."
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "Não foi possível criar tabela."
+#: ../../mod/admin.php:753
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s usuário bloqueado/desbloqueado"
+msgstr[1] "%s usuários bloqueados/desbloqueados"
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
-msgstr "O banco de dados do seu site Friendica foi instalado."
+#: ../../mod/admin.php:760
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s usuário excluído"
+msgstr[1] "%s usuários excluídos"
 
-#: ../../mod/install.php:138
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Você provavelmente precisará importar o arquivo \"database.sql\" manualmente, usando o phpmyadmin ou o mysql."
+#: ../../mod/admin.php:799
+#, php-format
+msgid "User '%s' deleted"
+msgstr "O usuário '%s' foi excluído"
 
-#: ../../mod/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:521
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Por favor, dê uma olhada no arquivo \"INSTALL.TXT\"."
+#: ../../mod/admin.php:807
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "O usuário '%s' foi desbloqueado"
 
-#: ../../mod/install.php:203
-msgid "System check"
-msgstr "Checagem do sistema"
+#: ../../mod/admin.php:807
+#, php-format
+msgid "User '%s' blocked"
+msgstr "O usuário '%s' foi bloqueado"
 
-#: ../../mod/install.php:207 ../../mod/events.php:373
-msgid "Next"
-msgstr "Próximo"
+#: ../../mod/admin.php:902
+msgid "Add User"
+msgstr "Adicionar usuário"
 
-#: ../../mod/install.php:208
-msgid "Check again"
-msgstr "Checar novamente"
+#: ../../mod/admin.php:903
+msgid "select all"
+msgstr "selecionar todos"
 
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "Conexão de banco de dados"
+#: ../../mod/admin.php:904
+msgid "User registrations waiting for confirm"
+msgstr "Registros de usuário aguardando confirmação"
 
-#: ../../mod/install.php:228
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "À fim de instalar o Friendica, você precisa saber como se conectar ao seu banco de dados."
+#: ../../mod/admin.php:905
+msgid "User waiting for permanent deletion"
+msgstr "Usuário aguardando por fim permanente da conta."
 
-#: ../../mod/install.php:229
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a essas configurações."
+#: ../../mod/admin.php:906
+msgid "Request date"
+msgstr "Solicitar data"
 
-#: ../../mod/install.php:230
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "O banco de dados que você especificou abaixo já deve existir. Caso contrário, por favor crie-o antes de continuar."
+#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919
+#: ../../mod/admin.php:932 ../../mod/settings.php:611
+#: ../../mod/settings.php:637 ../../mod/crepair.php:150
+msgid "Name"
+msgstr "Nome"
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
-msgstr "Nome do servidor de banco de dados"
+#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919
+#: ../../mod/admin.php:934 ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:86
+msgid "Email"
+msgstr "E-mail"
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
-msgstr "Nome do usuário do banco de dados"
+#: ../../mod/admin.php:907
+msgid "No registrations."
+msgstr "Nenhum registro."
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
-msgstr "Senha do usuário do banco de dados"
+#: ../../mod/admin.php:909
+msgid "Deny"
+msgstr "Negar"
 
-#: ../../mod/install.php:237
-msgid "Database Name"
-msgstr "Nome do banco de dados"
+#: ../../mod/admin.php:911 ../../mod/contacts.php:431
+#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
+msgid "Block"
+msgstr "Bloquear"
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "Endereço de email do administrador do site"
+#: ../../mod/admin.php:912 ../../mod/contacts.php:431
+#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
+msgid "Unblock"
+msgstr "Desbloquear"
 
-#: ../../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 "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web."
+#: ../../mod/admin.php:913
+msgid "Site admin"
+msgstr "Administração do site"
 
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
-msgstr "Por favor, selecione o fuso horário padrão para o seu site"
+#: ../../mod/admin.php:914
+msgid "Account expired"
+msgstr "Conta expirou"
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "Configurações do site"
+#: ../../mod/admin.php:917
+msgid "New User"
+msgstr "Novo usuário"
 
-#: ../../mod/install.php:321
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu servidor web."
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Register date"
+msgstr "Data de registro"
 
-#: ../../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 "Caso você não tenha uma versão de linha de comando do PHP instalado no seu servidor, você não será capaz de executar a captação em segundo plano. Dê uma olhada em <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Last login"
+msgstr "Última entrada"
 
-#: ../../mod/install.php:326
-msgid "PHP executable path"
-msgstr "Caminho para o executável do PhP"
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Last item"
+msgstr "Último item"
 
-#: ../../mod/install.php:326
+#: ../../mod/admin.php:918
+msgid "Deleted since"
+msgstr "Apagado desde"
+
+#: ../../mod/admin.php:919 ../../mod/settings.php:36
+msgid "Account"
+msgstr "Conta"
+
+#: ../../mod/admin.php:921
 msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação."
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Os usuários selecionados serão excluídos!\\n\\nTudo o que estes usuários publicaram neste site será excluído permanentemente!\\n\\nDeseja continuar?"
 
-#: ../../mod/install.php:331
-msgid "Command line PHP"
-msgstr "PHP em linha de comando"
+#: ../../mod/admin.php:922
+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 "O usuário {0} será excluído!\\n\\nTudo o que este usuário publicou neste site será permanentemente excluído!\\n\\nDeseja continuar?"
 
-#: ../../mod/install.php:340
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "O executável do PHP não é o binário do php cli (could be cgi-fcgi version)"
+#: ../../mod/admin.php:932
+msgid "Name of the new user."
+msgstr "Nome do novo usuários."
 
-#: ../../mod/install.php:341
-msgid "Found PHP version: "
-msgstr "Encontrado PHP versão:"
+#: ../../mod/admin.php:933
+msgid "Nickname"
+msgstr "Apelido"
 
-#: ../../mod/install.php:343
-msgid "PHP cli binary"
-msgstr "Binário cli do PHP"
+#: ../../mod/admin.php:933
+msgid "Nickname of the new user."
+msgstr "Apelido para o novo usuário."
 
-#: ../../mod/install.php:354
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema."
+#: ../../mod/admin.php:934
+msgid "Email address of the new user."
+msgstr "Endereço de e-mail do novo usuário."
 
-#: ../../mod/install.php:355
-msgid "This is required for message delivery to work."
-msgstr "Isto é necessário para o funcionamento do envio de mensagens."
+#: ../../mod/admin.php:967
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "O plugin %s foi desabilitado."
 
-#: ../../mod/install.php:357
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../mod/admin.php:971
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "O plugin %s foi habilitado."
 
-#: ../../mod/install.php:378
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia"
-
-#: ../../mod/install.php:379
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\"."
+#: ../../mod/admin.php:981 ../../mod/admin.php:1195
+msgid "Disable"
+msgstr "Desabilitar"
 
-#: ../../mod/install.php:381
-msgid "Generate encryption keys"
-msgstr "Gerar chaves de encriptação"
+#: ../../mod/admin.php:983 ../../mod/admin.php:1197
+msgid "Enable"
+msgstr "Habilitar"
 
-#: ../../mod/install.php:388
-msgid "libCurl PHP module"
-msgstr "Módulo PHP libCurl"
+#: ../../mod/admin.php:1006 ../../mod/admin.php:1225
+msgid "Toggle"
+msgstr "Alternar"
 
-#: ../../mod/install.php:389
-msgid "GD graphics PHP module"
-msgstr "Módulo PHP GD graphics"
+#: ../../mod/admin.php:1007 ../../mod/admin.php:1226
+#: ../../mod/newmember.php:22 ../../mod/settings.php:85
+#: ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:169
+msgid "Settings"
+msgstr "Configurações"
 
-#: ../../mod/install.php:390
-msgid "OpenSSL PHP module"
-msgstr "Módulo PHP OpenSSL"
+#: ../../mod/admin.php:1014 ../../mod/admin.php:1235
+msgid "Author: "
+msgstr "Autor: "
 
-#: ../../mod/install.php:391
-msgid "mysqli PHP module"
-msgstr "Módulo PHP mysqli"
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1236
+msgid "Maintainer: "
+msgstr "Mantenedor: "
 
-#: ../../mod/install.php:392
-msgid "mb_string PHP module"
-msgstr "Módulo PHP mb_string "
+#: ../../mod/admin.php:1155
+msgid "No themes found."
+msgstr "Nenhum tema encontrado"
 
-#: ../../mod/install.php:397 ../../mod/install.php:399
-msgid "Apache mod_rewrite module"
-msgstr "Módulo mod_rewrite do Apache"
+#: ../../mod/admin.php:1217
+msgid "Screenshot"
+msgstr "Captura de tela"
 
-#: ../../mod/install.php:397
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado."
+#: ../../mod/admin.php:1263
+msgid "[Experimental]"
+msgstr "[Esperimental]"
 
-#: ../../mod/install.php:405
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Erro: o módulo libCURL do PHP é necessário, mas não está instalado."
+#: ../../mod/admin.php:1264
+msgid "[Unsupported]"
+msgstr "[Não suportado]"
 
-#: ../../mod/install.php:409
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado."
+#: ../../mod/admin.php:1291
+msgid "Log settings updated."
+msgstr "As configurações de relatórios foram atualizadas."
 
-#: ../../mod/install.php:413
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Erro: o módulo openssl do PHP é necessário, mas não está instalado."
+#: ../../mod/admin.php:1347
+msgid "Clear"
+msgstr "Limpar"
 
-#: ../../mod/install.php:417
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Erro: o módulo mysqli do PHP é necessário, mas não está instalado."
+#: ../../mod/admin.php:1353
+msgid "Enable Debugging"
+msgstr "Habilitar Debugging"
 
-#: ../../mod/install.php:421
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Erro: o módulo mb_string PHP é necessário, mas não está instalado."
+#: ../../mod/admin.php:1354
+msgid "Log file"
+msgstr "Arquivo do relatório"
 
-#: ../../mod/install.php:438
+#: ../../mod/admin.php:1354
 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 "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo."
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "O servidor web precisa ter permissão de escrita. Relativa ao diretório raiz do seu Friendica."
 
-#: ../../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 "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta."
+#: ../../mod/admin.php:1355
+msgid "Log level"
+msgstr "Nível do relatório"
 
-#: ../../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 "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome. htconfig.php, na pasta raiz da instalação do seu Friendica."
+#: ../../mod/admin.php:1404 ../../mod/contacts.php:487
+msgid "Update now"
+msgstr "Atualizar agora"
 
-#: ../../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 "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"INSTALL.TXT\" para instruções."
+#: ../../mod/admin.php:1405
+msgid "Close"
+msgstr "Fechar"
 
-#: ../../mod/install.php:444
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php tem permissão de escrita"
+#: ../../mod/admin.php:1411
+msgid "FTP Host"
+msgstr "Endereço do FTP"
 
-#: ../../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 "Friendica usa o engine de template Smarty3 para renderizar suas web views. Smarty3 compila templates para PHP para acelerar a renderização."
+#: ../../mod/admin.php:1412
+msgid "FTP Path"
+msgstr "Caminho do FTP"
 
-#: ../../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 "Para guardar os templates compilados, o servidor web necessita de permissão de escrita no diretório view/smarty3/ no diretório raíz do Friendica."
+#: ../../mod/admin.php:1413
+msgid "FTP User"
+msgstr "Usuário do FTP"
 
-#: ../../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 "Favor se certificar que o usuário sob o qual o servidor web roda (ex: www-data) tenha permissão de escrita nesse diretório."
+#: ../../mod/admin.php:1414
+msgid "FTP Password"
+msgstr "Senha do FTP"
 
-#: ../../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 "Nota: como uma medida de segurança, você deve fornecer ao servidor web permissão de escrita em view/smarty3/ somente--não aos arquivos de template (.tpl) que ele contém."
+#: ../../mod/message.php:9 ../../include/nav.php:161
+msgid "New Message"
+msgstr "Nova mensagem"
 
-#: ../../mod/install.php:460
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 tem escrita permitida"
+#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
+msgid "No recipient selected."
+msgstr "Não foi selecionado nenhum destinatário."
 
-#: ../../mod/install.php:472
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "A reescrita de URLs definida no .htaccess não está funcionando. Por favor, verifique as configurações do seu servidor."
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Não foi possível localizar informação do contato."
 
-#: ../../mod/install.php:474
-msgid "Url rewrite is working"
-msgstr "A reescrita de URLs está funcionando"
+#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
+msgid "Message could not be sent."
+msgstr "Não foi possível enviar a mensagem."
 
-#: ../../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 "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web."
+#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
+msgid "Message collection failure."
+msgstr "Falha na coleta de mensagens."
 
-#: ../../mod/install.php:508
-msgid "Errors encountered creating database tables."
-msgstr "Foram encontrados erros durante a criação das tabelas do banco de dados."
+#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
+msgid "Message sent."
+msgstr "A mensagem foi enviada."
 
-#: ../../mod/install.php:519
-msgid "<h1>What next</h1>"
-msgstr "<h1>A seguir</h1>"
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Você realmente deseja deletar essa mensagem?"
 
-#: ../../mod/install.php:520
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o captador."
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "A mensagem foi excluída."
 
-#: ../../mod/admin.php:55
-msgid "Theme settings updated."
-msgstr "As configurações do tema foram atualizadas."
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "A conversa foi removida."
 
-#: ../../mod/admin.php:101 ../../mod/admin.php:568
-msgid "Site"
-msgstr "Site"
+#: ../../mod/message.php:283 ../../mod/message.php:291
+#: ../../mod/message.php:466 ../../mod/message.php:474
+#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
+#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
+msgid "Please enter a link URL:"
+msgstr "Por favor, digite uma URL:"
 
-#: ../../mod/admin.php:102 ../../mod/admin.php:893 ../../mod/admin.php:908
-msgid "Users"
-msgstr "Usuários"
+#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
+msgid "Send Private Message"
+msgstr "Enviar mensagem privada"
 
-#: ../../mod/admin.php:103 ../../mod/admin.php:997 ../../mod/admin.php:1039
-msgid "Plugins"
-msgstr "Plugins"
+#: ../../mod/message.php:320 ../../mod/message.php:553
+#: ../../mod/wallmessage.php:144
+msgid "To:"
+msgstr "Para:"
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:1205 ../../mod/admin.php:1239
-msgid "Themes"
-msgstr "Temas"
+#: ../../mod/message.php:325 ../../mod/message.php:555
+#: ../../mod/wallmessage.php:145
+msgid "Subject:"
+msgstr "Assunto:"
 
-#: ../../mod/admin.php:105
-msgid "DB updates"
-msgstr "Atualizações do BD"
+#: ../../mod/message.php:329 ../../mod/message.php:558
+#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
+msgid "Your message:"
+msgstr "Sua mensagem:"
 
-#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1326
-msgid "Logs"
-msgstr "Relatórios"
+#: ../../mod/message.php:332 ../../mod/message.php:562
+#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154
+#: ../../include/conversation.php:1089
+msgid "Upload photo"
+msgstr "Enviar foto"
 
-#: ../../mod/admin.php:125 ../../include/nav.php:178
-msgid "Admin"
-msgstr "Admin"
+#: ../../mod/message.php:333 ../../mod/message.php:563
+#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155
+#: ../../include/conversation.php:1093
+msgid "Insert web link"
+msgstr "Inserir link web"
 
-#: ../../mod/admin.php:126
-msgid "Plugin Features"
-msgstr "Recursos do plugin"
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Nenhuma mensagem."
 
-#: ../../mod/admin.php:128
-msgid "User registrations waiting for confirmation"
-msgstr "Cadastros de novos usuários aguardando confirmação"
+#: ../../mod/message.php:378
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "Remetente desconhecido - %s"
 
-#: ../../mod/admin.php:187 ../../mod/admin.php:848
-msgid "Normal Account"
-msgstr "Conta normal"
+#: ../../mod/message.php:381
+#, php-format
+msgid "You and %s"
+msgstr "Você e %s"
 
-#: ../../mod/admin.php:188 ../../mod/admin.php:849
-msgid "Soapbox Account"
-msgstr "Conta de vitrine"
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s e você"
 
-#: ../../mod/admin.php:189 ../../mod/admin.php:850
-msgid "Community/Celebrity Account"
-msgstr "Conta de comunidade/celebridade"
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Excluir conversa"
 
-#: ../../mod/admin.php:190 ../../mod/admin.php:851
-msgid "Automatic Friend Account"
-msgstr "Conta de amigo automático"
-
-#: ../../mod/admin.php:191
-msgid "Blog Account"
-msgstr "Conta de blog"
-
-#: ../../mod/admin.php:192
-msgid "Private Forum"
-msgstr "Fórum privado"
-
-#: ../../mod/admin.php:211
-msgid "Message queues"
-msgstr "Fila de mensagens"
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D, d M Y - g:i A"
 
-#: ../../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 "Administração"
+#: ../../mod/message.php:411
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d mensagem"
+msgstr[1] "%d mensagens"
 
-#: ../../mod/admin.php:217
-msgid "Summary"
-msgstr "Resumo"
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "A mensagem não está disponível."
 
-#: ../../mod/admin.php:219
-msgid "Registered users"
-msgstr "Usuários registrados"
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Excluir a mensagem"
 
-#: ../../mod/admin.php:221
-msgid "Pending registrations"
-msgstr "Registros pendentes"
+#: ../../mod/message.php:548
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Não foi encontrada nenhuma comunicação segura. Você <strong>pode</strong> ser capaz de responder a partir da página de perfil do remetente."
 
-#: ../../mod/admin.php:222
-msgid "Version"
-msgstr "Versão"
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Enviar resposta"
 
-#: ../../mod/admin.php:224
-msgid "Active plugins"
-msgstr "Plugins ativos"
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "O item não foi encontrado"
 
-#: ../../mod/admin.php:247
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr "Não foi possível analisar a URL. Ela deve conter pelo menos <scheme>://<domain>"
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Editar a publicação"
 
-#: ../../mod/admin.php:481
-msgid "Site settings updated."
-msgstr "As configurações do site foram atualizadas."
+#: ../../mod/editpost.php:111 ../../include/conversation.php:1090
+msgid "upload photo"
+msgstr "upload de foto"
 
-#: ../../mod/admin.php:510 ../../mod/settings.php:806
-msgid "No special theme for mobile devices"
-msgstr "Nenhum tema especial para dispositivos móveis"
+#: ../../mod/editpost.php:112 ../../include/conversation.php:1091
+msgid "Attach file"
+msgstr "Anexar arquivo"
 
-#: ../../mod/admin.php:527 ../../mod/contacts.php:330
-msgid "Never"
-msgstr "Nunca"
+#: ../../mod/editpost.php:113 ../../include/conversation.php:1092
+msgid "attach file"
+msgstr "anexar arquivo"
 
-#: ../../mod/admin.php:528 ../../include/contact_selectors.php:56
-msgid "Frequently"
-msgstr "Frequentemente"
+#: ../../mod/editpost.php:115 ../../include/conversation.php:1094
+msgid "web link"
+msgstr "link web"
 
-#: ../../mod/admin.php:529 ../../include/contact_selectors.php:57
-msgid "Hourly"
-msgstr "De hora em hora"
+#: ../../mod/editpost.php:116 ../../include/conversation.php:1095
+msgid "Insert video link"
+msgstr "Inserir link de vídeo"
 
-#: ../../mod/admin.php:530 ../../include/contact_selectors.php:58
-msgid "Twice daily"
-msgstr "Duas vezes ao dia"
+#: ../../mod/editpost.php:117 ../../include/conversation.php:1096
+msgid "video link"
+msgstr "link de vídeo"
 
-#: ../../mod/admin.php:531 ../../include/contact_selectors.php:59
-msgid "Daily"
-msgstr "Diariamente"
+#: ../../mod/editpost.php:118 ../../include/conversation.php:1097
+msgid "Insert audio link"
+msgstr "Inserir link de áudio"
 
-#: ../../mod/admin.php:536
-msgid "Multi user instance"
-msgstr "Instância multi usuário"
+#: ../../mod/editpost.php:119 ../../include/conversation.php:1098
+msgid "audio link"
+msgstr "link de áudio"
 
-#: ../../mod/admin.php:554
-msgid "Closed"
-msgstr "Fechado"
+#: ../../mod/editpost.php:120 ../../include/conversation.php:1099
+msgid "Set your location"
+msgstr "Definir sua localização"
 
-#: ../../mod/admin.php:555
-msgid "Requires approval"
-msgstr "Requer aprovação"
+#: ../../mod/editpost.php:121 ../../include/conversation.php:1100
+msgid "set location"
+msgstr "configure localização"
 
-#: ../../mod/admin.php:556
-msgid "Open"
-msgstr "Aberto"
+#: ../../mod/editpost.php:122 ../../include/conversation.php:1101
+msgid "Clear browser location"
+msgstr "Limpar a localização do navegador"
 
-#: ../../mod/admin.php:560
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Nenhuma política de SSL, os links irão rastrear o estado SSL da página"
+#: ../../mod/editpost.php:123 ../../include/conversation.php:1102
+msgid "clear location"
+msgstr "apague localização"
 
-#: ../../mod/admin.php:561
-msgid "Force all links to use SSL"
-msgstr "Forçar todos os links a utilizar SSL"
+#: ../../mod/editpost.php:125 ../../include/conversation.php:1108
+msgid "Permission settings"
+msgstr "Configurações de permissão"
 
-#: ../../mod/admin.php:562
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Certificado auto-assinado, usar SSL somente para links locais (não recomendado)"
+#: ../../mod/editpost.php:133 ../../include/conversation.php:1117
+msgid "CC: email addresses"
+msgstr "CC: endereço de e-mail"
 
-#: ../../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 "Salvar configurações"
+#: ../../mod/editpost.php:134 ../../include/conversation.php:1118
+msgid "Public post"
+msgstr "Publicação pública"
 
-#: ../../mod/admin.php:571
-msgid "File upload"
-msgstr "Envio de arquivo"
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1104
+msgid "Set title"
+msgstr "Definir o título"
 
-#: ../../mod/admin.php:572
-msgid "Policies"
-msgstr "Políticas"
+#: ../../mod/editpost.php:139 ../../include/conversation.php:1106
+msgid "Categories (comma-separated list)"
+msgstr "Categorias (lista separada por vírgulas)"
 
-#: ../../mod/admin.php:573
-msgid "Advanced"
-msgstr "Avançado"
+#: ../../mod/editpost.php:140 ../../include/conversation.php:1120
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Por exemplo: joao@exemplo.com, maria@exemplo.com"
 
-#: ../../mod/admin.php:574
-msgid "Performance"
-msgstr "Performance"
+#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18
+#: ../../mod/profiles.php:133 ../../mod/profiles.php:160
+#: ../../mod/profiles.php:587
+msgid "Profile not found."
+msgstr "O perfil não foi encontrado."
 
-#: ../../mod/admin.php:575
+#: ../../mod/dfrn_confirm.php:119
 msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Relocação - ATENÇÃO: função avançada. Pode tornar esse servidor inacessível."
-
-#: ../../mod/admin.php:579
-msgid "Site name"
-msgstr "Nome do site"
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "Isso pode acontecer eventualmente se o contato foi solicitado por ambas as pessoas e ele já tinha sido aprovado."
 
-#: ../../mod/admin.php:580
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: ../../mod/dfrn_confirm.php:237
+msgid "Response from remote site was not understood."
+msgstr "A resposta do site remoto não foi compreendida."
 
-#: ../../mod/admin.php:581
-msgid "Additional Info"
-msgstr "Informação adicional"
+#: ../../mod/dfrn_confirm.php:246
+msgid "Unexpected response from remote site: "
+msgstr "Resposta inesperada do site remoto: "
 
-#: ../../mod/admin.php:581
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at dir.friendica.com/siteinfo."
-msgstr "Para servidores públicos: você pode adicionar informações aqui que serão listadas em dir.friendica.com/siteinfo."
+#: ../../mod/dfrn_confirm.php:254
+msgid "Confirmation completed successfully."
+msgstr "A confirmação foi completada com sucesso."
 
-#: ../../mod/admin.php:582
-msgid "System language"
-msgstr "Idioma do sistema"
+#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
+#: ../../mod/dfrn_confirm.php:277
+msgid "Remote site reported: "
+msgstr "O site remoto relatou: "
 
-#: ../../mod/admin.php:583
-msgid "System theme"
-msgstr "Tema do sistema"
+#: ../../mod/dfrn_confirm.php:268
+msgid "Temporary failure. Please wait and try again."
+msgstr "Falha temporária. Por favor, aguarde e tente novamente."
 
-#: ../../mod/admin.php:583
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Tema padrão do sistema. Pode ser substituído nos perfis de usuário -  <a href='#' id='cnftheme'>alterar configurações do tema</a>"
+#: ../../mod/dfrn_confirm.php:275
+msgid "Introduction failed or was revoked."
+msgstr "Ocorreu uma falha na apresentação ou ela foi revogada."
 
-#: ../../mod/admin.php:584
-msgid "Mobile system theme"
-msgstr "Tema do sistema para dispositivos móveis"
+#: ../../mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
+msgstr "Não foi possível definir a foto do contato."
 
-#: ../../mod/admin.php:584
-msgid "Theme for mobile devices"
-msgstr "Tema para dispositivos móveis"
+#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:620
+#: ../../include/conversation.php:172
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s agora é amigo de %2$s"
 
-#: ../../mod/admin.php:585
-msgid "SSL link policy"
-msgstr "Política de link SSL"
+#: ../../mod/dfrn_confirm.php:562
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Não foi encontrado nenhum registro de usuário para '%s' "
 
-#: ../../mod/admin.php:585
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Determina se os links gerados devem ser forçados a utilizar SSL"
+#: ../../mod/dfrn_confirm.php:572
+msgid "Our site encryption key is apparently messed up."
+msgstr "A chave de criptografia do nosso site está, aparentemente, bagunçada."
 
-#: ../../mod/admin.php:586
-msgid "Old style 'Share'"
-msgstr "Estilo antigo do 'Compartilhar' "
+#: ../../mod/dfrn_confirm.php:583
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "Foi fornecida uma URL em branco ou não foi possível descriptografá-la."
 
-#: ../../mod/admin.php:586
-msgid "Deactivates the bbcode element 'share' for repeating items."
-msgstr "Desativa o elemento bbcode 'compartilhar' para repetir ítens."
+#: ../../mod/dfrn_confirm.php:604
+msgid "Contact record was not found for you on our site."
+msgstr "O registro do contato não foi encontrado para você em seu site."
 
-#: ../../mod/admin.php:587
-msgid "Hide help entry from navigation menu"
-msgstr "Oculta a entrada 'Ajuda' do menu de navegação"
+#: ../../mod/dfrn_confirm.php:618
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "A chave pública do site não está disponível no registro do contato para a URL %s"
 
-#: ../../mod/admin.php:587
+#: ../../mod/dfrn_confirm.php:638
 msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
-msgstr "Oculta a entrada de menu para as páginas de Ajuda do menu de navegação. Ainda será possível acessá-las chamando /help diretamente."
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve funcionar agora, se você tentar de novo."
 
-#: ../../mod/admin.php:588
-msgid "Single user instance"
-msgstr "Instância de usuário único"
+#: ../../mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
+msgstr "Não foi possível definir suas credenciais de contato no nosso sistema."
 
-#: ../../mod/admin.php:588
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr "Faça essa instância multiusuário ou usuário único para o usuário em questão"
+#: ../../mod/dfrn_confirm.php:716
+msgid "Unable to update your contact profile details on our system"
+msgstr "Não foi possível atualizar os detalhes do seu perfil em nosso sistema."
 
-#: ../../mod/admin.php:589
-msgid "Maximum image size"
-msgstr "Tamanho máximo da imagem"
+#: ../../mod/dfrn_confirm.php:751
+#, php-format
+msgid "Connection accepted at %s"
+msgstr "Conexão aceita em %s"
 
-#: ../../mod/admin.php:589
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Tamanho máximo, em bytes, das imagens enviadas. O padrão é 0, o que significa sem limites"
+#: ../../mod/dfrn_confirm.php:800
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s se associou a %2$s"
 
-#: ../../mod/admin.php:590
-msgid "Maximum image length"
-msgstr "Tamanho máximo da imagem"
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
+msgstr "O título do evento e a hora de início são obrigatórios."
 
-#: ../../mod/admin.php:590
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "Tamanho máximo em pixels do lado mais largo das imagens enviadas. O padrão é -1, que significa sem limites."
+#: ../../mod/events.php:291
+msgid "l, F j"
+msgstr "l, F j"
 
-#: ../../mod/admin.php:591
-msgid "JPEG image quality"
-msgstr "Qualidade da imagem JPEG"
+#: ../../mod/events.php:313
+msgid "Edit event"
+msgstr "Editar o evento"
 
-#: ../../mod/admin.php:591
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr "Imagens JPEG enviadas serão salvas com essa qualidade [0-100]. O padrão é 100, que significa a melhor qualidade."
+#: ../../mod/events.php:335 ../../include/text.php:1633
+#: ../../include/text.php:1644
+msgid "link to source"
+msgstr "exibir a origem"
 
-#: ../../mod/admin.php:593
-msgid "Register policy"
-msgstr "Política de registro"
+#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:127
+#: ../../boot.php:2003 ../../include/nav.php:79
+msgid "Events"
+msgstr "Eventos"
 
-#: ../../mod/admin.php:594
-msgid "Maximum Daily Registrations"
-msgstr "Registros Diários Máximos"
+#: ../../mod/events.php:371
+msgid "Create New Event"
+msgstr "Criar um novo evento"
 
-#: ../../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 "Se o registro é permitido acima, isso configura o número máximo de registros de novos usuários a serem aceitos por dia. Se o registro está configurado para 'fechado/closed' ,  essa configuração não tem efeito."
+#: ../../mod/events.php:372
+msgid "Previous"
+msgstr "Anterior"
 
-#: ../../mod/admin.php:595
-msgid "Register text"
-msgstr "Texto de registro"
+#: ../../mod/events.php:373 ../../mod/install.php:207
+msgid "Next"
+msgstr "Próximo"
 
-#: ../../mod/admin.php:595
-msgid "Will be displayed prominently on the registration page."
-msgstr "Será exibido com destaque na página de registro."
+#: ../../mod/events.php:446
+msgid "hour:minute"
+msgstr "hora:minuto"
 
-#: ../../mod/admin.php:596
-msgid "Accounts abandoned after x days"
-msgstr "Contas abandonadas após x dias"
+#: ../../mod/events.php:456
+msgid "Event details"
+msgstr "Detalhes do evento"
 
-#: ../../mod/admin.php:596
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Não desperdiçará recursos do sistema captando de sites externos para contas abandonadas. Digite 0 para nenhum limite de tempo."
+#: ../../mod/events.php:457
+#, php-format
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "O formato é %s %s. O título e a data de início são obrigatórios."
 
-#: ../../mod/admin.php:597
-msgid "Allowed friend domains"
-msgstr "Domínios de amigos permitidos"
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr "Início do evento:"
 
-#: ../../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 dos domínios que têm permissão para estabelecer amizades com esse site, separados por vírgula. Caracteres curinga são aceitos. Deixe em branco para permitir qualquer domínio."
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "Obrigatório"
 
-#: ../../mod/admin.php:598
-msgid "Allowed email domains"
-msgstr "Domínios de e-mail permitidos"
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
+msgstr "A data/hora de término não é conhecida ou não é relevante"
 
-#: ../../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 "Lista de domínios separados por vírgula, que são permitidos em endereços de e-mail para registro nesse site. Caracteres-curinga são aceitos. Vazio para aceitar qualquer domínio"
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
+msgstr "Término do evento:"
 
-#: ../../mod/admin.php:599
-msgid "Block public"
-msgstr "Bloquear acesso público"
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
+msgstr "Ajustar para o fuso horário do visualizador"
 
-#: ../../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 "Marque para bloquear o acesso público a todas as páginas desse site, com exceção das páginas pessoais públicas, a não ser que a pessoa esteja autenticada."
+#: ../../mod/events.php:469
+msgid "Description:"
+msgstr "Descrição:"
 
-#: ../../mod/admin.php:600
-msgid "Force publish"
-msgstr "Forçar a listagem"
+#: ../../mod/events.php:471 ../../mod/directory.php:134 ../../boot.php:1513
+#: ../../include/event.php:40 ../../include/bb2diaspora.php:155
+msgid "Location:"
+msgstr "Localização:"
 
-#: ../../mod/admin.php:600
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Marque para forçar todos os perfis desse site a serem listados no diretório do site."
+#: ../../mod/events.php:473
+msgid "Title:"
+msgstr "Título:"
 
-#: ../../mod/admin.php:601
-msgid "Global directory update URL"
-msgstr "URL de atualização do diretório global"
+#: ../../mod/events.php:475
+msgid "Share this event"
+msgstr "Compartilhar este evento"
 
-#: ../../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 "URL para atualizar o diretório global. Se isso não for definido, o diretório global não estará disponível neste site."
+#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:126
+#: ../../boot.php:1986 ../../include/nav.php:78
+msgid "Photos"
+msgstr "Fotos"
 
-#: ../../mod/admin.php:602
-msgid "Allow threaded items"
-msgstr "Habilita itens aninhados"
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "Arquivos"
 
-#: ../../mod/admin.php:602
-msgid "Allow infinite level threading for items on this site."
-msgstr "Habilita nível infinito de aninhamento (threading) para itens."
+#: ../../mod/home.php:34
+#, php-format
+msgid "Welcome to %s"
+msgstr "Bem-vindo(a) a %s"
 
-#: ../../mod/admin.php:603
-msgid "Private posts by default for new users"
-msgstr "Publicações privadas por padrão para novos usuários"
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Não existe informação disponível sobre a privacidade remota."
 
-#: ../../mod/admin.php:603
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "Define as permissões padrão de publicação de todos os novos membros para o grupo de privacidade padrão, ao invés de torná-las públicas."
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
+msgstr "Visível para:"
 
-#: ../../mod/admin.php:604
-msgid "Don't include post content in email notifications"
-msgstr "Não incluir o conteúdo da postagem nas notificações de email"
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "O número diário de mensagens do mural de %s foi excedido. Não foi possível enviar a mensagem."
 
-#: ../../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 "Não incluir o conteúdo de uma postagem/comentário/mensagem privada/etc. em notificações de email que são enviadas para fora desse sítio, como medida de segurança."
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Não foi possível verificar a sua localização."
 
-#: ../../mod/admin.php:605
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Disabilita acesso público a addons listados no menu de aplicativos."
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Nenhum destinatário."
 
-#: ../../mod/admin.php:605
+#: ../../mod/wallmessage.php:143
+#, php-format
 msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr "Marcar essa caixa ira restringir os addons listados no menu de aplicativos aos membros somente."
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "Caso você deseje uma resposta de %s, por favor verifique se as configurações de privacidade em seu site permitem o recebimento de mensagens de remetentes desconhecidos."
 
-#: ../../mod/admin.php:606
-msgid "Don't embed private images in posts"
-msgstr "Não inclua imagens privadas em publicações"
+#: ../../mod/nogroup.php:40 ../../mod/contacts.php:473
+#: ../../mod/contacts.php:665 ../../mod/viewcontacts.php:62
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Visitar o perfil de %s [%s]"
 
-#: ../../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 "Não substitue fotos privativas guardadas localmente em publicações por uma cópia inclusa da imagem. Isso significa que os contatos que recebem publicações contendo fotos privadas terão que autenticar e carregar cada imagem, o que pode levar algum tempo."
+#: ../../mod/nogroup.php:41 ../../mod/contacts.php:666
+msgid "Edit contact"
+msgstr "Editar o contato"
 
-#: ../../mod/admin.php:608
-msgid "Block multiple registrations"
-msgstr "Bloquear registros repetidos"
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Contatos que não são membros de um grupo"
 
-#: ../../mod/admin.php:608
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Desabilitar o registro de contas adicionais para serem usadas como páginas."
+#: ../../mod/friendica.php:58
+msgid "This is Friendica, version"
+msgstr "Este é o Friendica, versão"
 
-#: ../../mod/admin.php:609
-msgid "OpenID support"
-msgstr "Suporte ao OpenID"
+#: ../../mod/friendica.php:59
+msgid "running at web location"
+msgstr "sendo executado no endereço web"
 
-#: ../../mod/admin.php:609
-msgid "OpenID support for registration and logins."
-msgstr "Suporte ao OpenID para registros e autenticações."
+#: ../../mod/friendica.php:61
+msgid ""
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Por favor, visite <a href=\"http://friendica.com\">friendica.com</a> para aprender mais sobre o projeto Friendica."
 
-#: ../../mod/admin.php:610
-msgid "Fullname check"
-msgstr "Verificar nome completo"
+#: ../../mod/friendica.php:63
+msgid "Bug reports and issues: please visit"
+msgstr "Relatos e acompanhamentos de erros podem ser encontrados em"
 
-#: ../../mod/admin.php:610
+#: ../../mod/friendica.php:64
 msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr "Forçar os usuários a usar um espaço em branco entre o nome e o sobrenome, ao preencherem o nome completo no registro, como uma medida contra o spam"
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com"
 
-#: ../../mod/admin.php:611
-msgid "UTF-8 Regular expressions"
-msgstr "Expressões regulares UTF-8"
+#: ../../mod/friendica.php:78
+msgid "Installed plugins/addons/apps:"
+msgstr "Plugins/complementos/aplicações instaladas:"
 
-#: ../../mod/admin.php:611
-msgid "Use PHP UTF8 regular expressions"
-msgstr "Use expressões regulares do PHP em UTF8"
+#: ../../mod/friendica.php:91
+msgid "No installed plugins/addons/apps"
+msgstr "Nenhum plugin/complemento/aplicativo instalado"
 
-#: ../../mod/admin.php:612
-msgid "Show Community Page"
-msgstr "Exibir a página da comunidade"
+#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
+msgid "Remove My Account"
+msgstr "Remover minha conta"
 
-#: ../../mod/admin.php:612
+#: ../../mod/removeme.php:47
 msgid ""
-"Display a Community page showing all recent public postings on this site."
-msgstr "Exibe uma página da Comunidade, mostrando todas as publicações recentes feitas nesse site."
-
-#: ../../mod/admin.php:613
-msgid "Enable OStatus support"
-msgstr "Habilitar suporte ao OStatus"
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la."
 
-#: ../../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 "Fornece compatibilidade nativa ao OStatus (identi,.ca, status.net, etc.). Todas as comunicações via OStatus são públicas, por isso avisos de privacidade serão exibidos ocasionalmente."
+#: ../../mod/removeme.php:48
+msgid "Please enter your password for verification:"
+msgstr "Por favor, digite a sua senha para verificação:"
 
-#: ../../mod/admin.php:614
-msgid "OStatus conversation completion interval"
-msgstr "Intervalo de finalização da conversação OStatus "
+#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr "A imagem excede o limite de tamanho de %d"
 
-#: ../../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 "De quanto em quanto tempo o \"buscador\" (poller) deve checar por novas entradas numa conversação OStatus? Essa pode ser uma tarefa bem demorada."
+#: ../../mod/wall_upload.php:112 ../../mod/photos.php:805
+#: ../../mod/profile_photo.php:153
+msgid "Unable to process image."
+msgstr "Não foi possível processar a imagem."
 
-#: ../../mod/admin.php:615
-msgid "Enable Diaspora support"
-msgstr "Habilitar suporte ao Diaspora"
+#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
+#: ../../mod/wall_upload.php:151 ../../mod/item.php:455
+#: ../../include/message.php:144
+msgid "Wall Photos"
+msgstr "Fotos do mural"
 
-#: ../../mod/admin.php:615
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Fornece compatibilidade nativa com a rede Diaspora."
+#: ../../mod/wall_upload.php:138 ../../mod/photos.php:832
+#: ../../mod/profile_photo.php:301
+msgid "Image upload failed."
+msgstr "Não foi possível enviar a imagem."
 
-#: ../../mod/admin.php:616
-msgid "Only allow Friendica contacts"
-msgstr "Permitir somente contatos Friendica"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Autorizar a conexão com a aplicação"
 
-#: ../../mod/admin.php:616
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "Todos os contatos devem usar protocolos Friendica. Todos os outros protocolos de comunicação embarcados estão desabilitados"
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Volte para a sua aplicação e digite este código de segurança:"
 
-#: ../../mod/admin.php:617
-msgid "Verify SSL"
-msgstr "Verificar SSL"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Por favor, autentique-se para continuar."
 
-#: ../../mod/admin.php:617
+#: ../../mod/api.php:104
 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 "Caso deseje, você pode habilitar a restrição de certificações. Isso significa que você não poderá conectar-se a nenhum site que use certificados auto-assinados."
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?"
 
-#: ../../mod/admin.php:618
-msgid "Proxy user"
-msgstr "Usuário do proxy"
+#: ../../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 etiquetou %3$s de %2$s com %4$s"
 
-#: ../../mod/admin.php:619
-msgid "Proxy URL"
-msgstr "URL do proxy"
+#: ../../mod/photos.php:52 ../../boot.php:1989
+msgid "Photo Albums"
+msgstr "Álbuns de fotos"
 
-#: ../../mod/admin.php:620
-msgid "Network timeout"
-msgstr "Limite de tempo da rede"
+#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1062
+#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
+#: ../../mod/photos.php:1756 ../../mod/photos.php:1768
+#: ../../view/theme/diabook/theme.php:499
+msgid "Contact Photos"
+msgstr "Fotos dos contatos"
 
-#: ../../mod/admin.php:620
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Valor em segundos. Defina como 0 para ilimitado (não recomendado)."
+#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815
+msgid "Upload New Photos"
+msgstr "Enviar novas fotos"
 
-#: ../../mod/admin.php:621
-msgid "Delivery interval"
-msgstr "Intervalo de envio"
+#: ../../mod/photos.php:80 ../../mod/settings.php:29
+msgid "everybody"
+msgstr "todos"
 
-#: ../../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 "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Recomendado: 4-5 para servidores compartilhados (shared hosts), 2-3 para servidores privados virtuais (VPS). 0-1 para grandes servidores dedicados."
+#: ../../mod/photos.php:144
+msgid "Contact information unavailable"
+msgstr "A informação de contato não está disponível"
 
-#: ../../mod/admin.php:622
-msgid "Poll interval"
-msgstr "Intervalo da busca (polling)"
+#: ../../mod/photos.php:155 ../../mod/photos.php:729 ../../mod/photos.php:1187
+#: ../../mod/photos.php:1210 ../../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:500
+#: ../../include/user.php:334 ../../include/user.php:341
+#: ../../include/user.php:348
+msgid "Profile Photos"
+msgstr "Fotos do perfil"
 
-#: ../../mod/admin.php:622
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Se 0, use intervalo de entrega."
+#: ../../mod/photos.php:165
+msgid "Album not found."
+msgstr "O álbum não foi encontrado."
 
-#: ../../mod/admin.php:623
-msgid "Maximum Load Average"
-msgstr "Média de Carga Máxima"
+#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
+msgid "Delete Album"
+msgstr "Excluir o álbum"
 
-#: ../../mod/admin.php:623
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Carga do sistema máxima antes que os processos de entrega e busca sejam postergados - padrão 50."
+#: ../../mod/photos.php:198
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?"
 
-#: ../../mod/admin.php:625
-msgid "Use MySQL full text engine"
-msgstr "Use o engine de texto completo (full text) do MySQL"
+#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511
+msgid "Delete Photo"
+msgstr "Excluir a foto"
 
-#: ../../mod/admin.php:625
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
-msgstr "Ativa a engine de texto completo (full text). Acelera a busca - mas só pode buscar apenas por 4 ou mais caracteres."
+#: ../../mod/photos.php:287
+msgid "Do you really want to delete this photo?"
+msgstr "Você realmente deseja deletar essa foto?"
 
-#: ../../mod/admin.php:626
-msgid "Suppress Language"
-msgstr "Retira idioma"
+#: ../../mod/photos.php:660
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s foi marcado em %2$s por %3$s"
 
-#: ../../mod/admin.php:626
-msgid "Suppress language information in meta information about a posting."
-msgstr "Retira informações sobre idioma nas meta informações sobre uma publicação."
+#: ../../mod/photos.php:660
+msgid "a photo"
+msgstr "uma foto"
 
-#: ../../mod/admin.php:627
-msgid "Path to item cache"
-msgstr "Diretório do cache de item"
+#: ../../mod/photos.php:765
+msgid "Image exceeds size limit of "
+msgstr "A imagem excede o tamanho máximo de "
 
-#: ../../mod/admin.php:628
-msgid "Cache duration in seconds"
-msgstr "Duração do cache em segundos"
+#: ../../mod/photos.php:773
+msgid "Image file is empty."
+msgstr "O arquivo de imagem está vazio."
 
-#: ../../mod/admin.php:628
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One"
-" day)."
-msgstr "Por quanto tempo o arquivo de caches deve ser guardado? Valor padrão é 86400 segundos (Um dia)."
+#: ../../mod/photos.php:928
+msgid "No photos selected"
+msgstr "Não foi selecionada nenhuma foto"
 
-#: ../../mod/admin.php:629
-msgid "Path for lock file"
-msgstr "Diretório do arquivo de trava"
+#: ../../mod/photos.php:1029 ../../mod/videos.php:226
+msgid "Access to this item is restricted."
+msgstr "O acesso a este item é restrito."
 
-#: ../../mod/admin.php:630
-msgid "Temp path"
-msgstr "Diretório Temp"
+#: ../../mod/photos.php:1092
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Você está usando %1$.2f Mbytes dos %2$.2f Mbytes liberados para armazenamento de fotos."
 
-#: ../../mod/admin.php:631
-msgid "Base path to installation"
-msgstr "Diretório base para instalação"
+#: ../../mod/photos.php:1127
+msgid "Upload Photos"
+msgstr "Enviar fotos"
 
-#: ../../mod/admin.php:633
-msgid "New base url"
-msgstr "Nova URL base"
+#: ../../mod/photos.php:1131 ../../mod/photos.php:1199
+msgid "New album name: "
+msgstr "Nome do novo álbum: "
 
-#: ../../mod/admin.php:651
-msgid "Update has been marked successful"
-msgstr "A atualização foi marcada como bem sucedida"
+#: ../../mod/photos.php:1132
+msgid "or existing album name: "
+msgstr "ou o nome de um álbum já existente: "
 
-#: ../../mod/admin.php:661
-#, php-format
-msgid "Executing %s failed. Check system logs."
-msgstr "Ocorreu um erro na execução de %s. Verifique os relatórios do sistema."
+#: ../../mod/photos.php:1133
+msgid "Do not show a status post for this upload"
+msgstr "Não exiba uma publicação de status para este envio"
 
-#: ../../mod/admin.php:664
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "A atualização %s foi aplicada com sucesso."
+#: ../../mod/photos.php:1135 ../../mod/photos.php:1506
+msgid "Permissions"
+msgstr "Permissões"
 
-#: ../../mod/admin.php:668
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "Atualizar %s não retornou um status. Desconhecido se ele teve sucesso."
+#: ../../mod/photos.php:1144 ../../mod/photos.php:1515
+#: ../../mod/settings.php:1139
+msgid "Show to Groups"
+msgstr "Mostre para Grupos"
 
-#: ../../mod/admin.php:671
-#, php-format
-msgid "Update function %s could not be found."
-msgstr "Não foi possível encontrar a função de atualização %s."
+#: ../../mod/photos.php:1145 ../../mod/photos.php:1516
+#: ../../mod/settings.php:1140
+msgid "Show to Contacts"
+msgstr "Mostre para Contatos"
 
-#: ../../mod/admin.php:686
-msgid "No failed updates."
-msgstr "Nenhuma atualização com falha."
+#: ../../mod/photos.php:1146
+msgid "Private Photo"
+msgstr "Foto Privada"
 
-#: ../../mod/admin.php:690
-msgid "Failed Updates"
-msgstr "Atualizações com falha"
+#: ../../mod/photos.php:1147
+msgid "Public Photo"
+msgstr "Foto Pública"
 
-#: ../../mod/admin.php:691
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr "Isso não inclue atualizações antes da 1139, as quais não retornavam um status."
+#: ../../mod/photos.php:1214
+msgid "Edit Album"
+msgstr "Editar o álbum"
 
-#: ../../mod/admin.php:692
-msgid "Mark success (if update was manually applied)"
-msgstr "Marcar como bem sucedida (caso tenham sido aplicadas atualizações manuais)"
+#: ../../mod/photos.php:1220
+msgid "Show Newest First"
+msgstr "Exibir as mais recentes primeiro"
 
-#: ../../mod/admin.php:693
-msgid "Attempt to execute this update step automatically"
-msgstr "Tentar executar esse passo da atualização automaticamente"
+#: ../../mod/photos.php:1222
+msgid "Show Oldest First"
+msgstr "Exibir as mais antigas primeiro"
 
-#: ../../mod/admin.php:739
-msgid "Registration successful. Email send to user"
-msgstr "Registro bem sucedido. Email enviado ao usuário."
+#: ../../mod/photos.php:1255 ../../mod/photos.php:1798
+msgid "View Photo"
+msgstr "Ver a foto"
 
-#: ../../mod/admin.php:749
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s usuário bloqueado/desbloqueado"
-msgstr[1] "%s usuários bloqueados/desbloqueados"
+#: ../../mod/photos.php:1290
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Permissão negada. O acesso a este item pode estar restrito."
 
-#: ../../mod/admin.php:756
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s usuário excluído"
-msgstr[1] "%s usuários excluídos"
+#: ../../mod/photos.php:1292
+msgid "Photo not available"
+msgstr "A foto não está disponível"
 
-#: ../../mod/admin.php:795
-#, php-format
-msgid "User '%s' deleted"
-msgstr "O usuário '%s' foi excluído"
+#: ../../mod/photos.php:1348
+msgid "View photo"
+msgstr "Ver a imagem"
 
-#: ../../mod/admin.php:803
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "O usuário '%s' foi desbloqueado"
+#: ../../mod/photos.php:1348
+msgid "Edit photo"
+msgstr "Editar a foto"
 
-#: ../../mod/admin.php:803
-#, php-format
-msgid "User '%s' blocked"
-msgstr "O usuário '%s' foi bloqueado"
+#: ../../mod/photos.php:1349
+msgid "Use as profile photo"
+msgstr "Usar como uma foto de perfil"
 
-#: ../../mod/admin.php:894
-msgid "Add User"
-msgstr "Adicionar usuário"
+#: ../../mod/photos.php:1374
+msgid "View Full Size"
+msgstr "Ver no tamanho real"
 
-#: ../../mod/admin.php:895
-msgid "select all"
-msgstr "selecionar todos"
+#: ../../mod/photos.php:1453
+msgid "Tags: "
+msgstr "Etiquetas: "
 
-#: ../../mod/admin.php:896
-msgid "User registrations waiting for confirm"
-msgstr "Registros de usuário aguardando confirmação"
+#: ../../mod/photos.php:1456
+msgid "[Remove any tag]"
+msgstr "[Remover qualquer etiqueta]"
 
-#: ../../mod/admin.php:897
-msgid "User waiting for permanent deletion"
-msgstr "Usuário aguardando por fim permanente da conta."
+#: ../../mod/photos.php:1496
+msgid "Rotate CW (right)"
+msgstr "Rotacionar para direita"
 
-#: ../../mod/admin.php:898
-msgid "Request date"
-msgstr "Solicitar data"
+#: ../../mod/photos.php:1497
+msgid "Rotate CCW (left)"
+msgstr "Rotacionar para esquerda"
 
-#: ../../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 "Nome"
+#: ../../mod/photos.php:1499
+msgid "New album name"
+msgstr "Novo nome para o álbum"
 
-#: ../../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/photos.php:1502
+msgid "Caption"
+msgstr "Legenda"
 
-#: ../../mod/admin.php:899
-msgid "No registrations."
-msgstr "Nenhum registro."
+#: ../../mod/photos.php:1504
+msgid "Add a Tag"
+msgstr "Adicionar uma etiqueta"
 
-#: ../../mod/admin.php:900 ../../mod/notifications.php:161
-#: ../../mod/notifications.php:208
-msgid "Approve"
-msgstr "Aprovar"
+#: ../../mod/photos.php:1508
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento"
 
-#: ../../mod/admin.php:901
-msgid "Deny"
-msgstr "Negar"
+#: ../../mod/photos.php:1517
+msgid "Private photo"
+msgstr "Foto privada"
 
-#: ../../mod/admin.php:903 ../../mod/contacts.php:353
-#: ../../mod/contacts.php:412
-msgid "Block"
-msgstr "Bloquear"
+#: ../../mod/photos.php:1518
+msgid "Public photo"
+msgstr "Foto pública"
 
-#: ../../mod/admin.php:904 ../../mod/contacts.php:353
-#: ../../mod/contacts.php:412
-msgid "Unblock"
-msgstr "Desbloquear"
+#: ../../mod/photos.php:1540 ../../include/conversation.php:1088
+msgid "Share"
+msgstr "Compartilhar"
 
-#: ../../mod/admin.php:905
-msgid "Site admin"
-msgstr "Administração do site"
+#: ../../mod/photos.php:1804 ../../mod/videos.php:308
+msgid "View Album"
+msgstr "Ver álbum"
 
-#: ../../mod/admin.php:906
-msgid "Account expired"
-msgstr "Conta expirou"
+#: ../../mod/photos.php:1813
+msgid "Recent Photos"
+msgstr "Fotos recentes"
 
-#: ../../mod/admin.php:909
-msgid "New User"
-msgstr "Novo usuário"
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Nenhum perfil"
 
-#: ../../mod/admin.php:910 ../../mod/admin.php:911
-msgid "Register date"
-msgstr "Data de registro"
+#: ../../mod/register.php:100
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "O registro foi bem sucedido. Por favor, verifique seu e-mail para maiores informações."
 
-#: ../../mod/admin.php:910 ../../mod/admin.php:911
-msgid "Last login"
-msgstr "Última entrada"
+#: ../../mod/register.php:104
+msgid "Failed to send email message. Here is the message that failed."
+msgstr "Não foi possível enviar a mensagem de e-mail. Aqui está a mensagem que não foi."
 
-#: ../../mod/admin.php:910 ../../mod/admin.php:911
-msgid "Last item"
-msgstr "Último item"
+#: ../../mod/register.php:109
+msgid "Your registration can not be processed."
+msgstr "Não foi possível processar o seu registro."
 
-#: ../../mod/admin.php:910
-msgid "Deleted since"
-msgstr "Apagado desde"
+#: ../../mod/register.php:149
+#, php-format
+msgid "Registration request at %s"
+msgstr "Solicitação de registro em %s"
 
-#: ../../mod/admin.php:911
-msgid "Account"
-msgstr "Conta"
+#: ../../mod/register.php:158
+msgid "Your registration is pending approval by the site owner."
+msgstr "A aprovação do seu registro está pendente junto ao administrador do site."
 
-#: ../../mod/admin.php:913
+#: ../../mod/register.php:196 ../../mod/uimport.php:50
 msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Os usuários selecionados serão excluídos!\\n\\nTudo o que estes usuários publicaram neste site será excluído permanentemente!\\n\\nDeseja continuar?"
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã."
 
-#: ../../mod/admin.php:914
+#: ../../mod/register.php:224
 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 "O usuário {0} será excluído!\\n\\nTudo o que este usuário publicou neste site será permanentemente excluído!\\n\\nDeseja continuar?"
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "Você pode (opcionalmente) preencher este formulário via OpenID, fornecendo seu OpenID e clicando em 'Registrar'."
 
-#: ../../mod/admin.php:924
-msgid "Name of the new user."
-msgstr "Nome do novo usuários."
+#: ../../mod/register.php:225
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "Se você não está familiarizado com o OpenID, por favor, deixe esse campo em branco e preencha os outros itens."
 
-#: ../../mod/admin.php:925
-msgid "Nickname"
-msgstr "Apelido"
+#: ../../mod/register.php:226
+msgid "Your OpenID (optional): "
+msgstr "Seu OpenID (opcional): "
 
-#: ../../mod/admin.php:925
-msgid "Nickname of the new user."
-msgstr "Apelido para o novo usuário."
+#: ../../mod/register.php:240
+msgid "Include your profile in member directory?"
+msgstr "Incluir o seu perfil no diretório de membros?"
 
-#: ../../mod/admin.php:926
-msgid "Email address of the new user."
-msgstr "Endereço de e-mail do novo usuário."
+#: ../../mod/register.php:261
+msgid "Membership on this site is by invitation only."
+msgstr "A associação a este site só pode ser feita mediante convite."
 
-#: ../../mod/admin.php:959
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "O plugin %s foi desabilitado."
+#: ../../mod/register.php:262
+msgid "Your invitation ID: "
+msgstr "A ID do seu convite: "
 
-#: ../../mod/admin.php:963
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "O plugin %s foi habilitado."
+#: ../../mod/register.php:273
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "Seu nome completo (ex: José da Silva): "
 
-#: ../../mod/admin.php:973 ../../mod/admin.php:1176
-msgid "Disable"
-msgstr "Desabilitar"
+#: ../../mod/register.php:274
+msgid "Your Email Address: "
+msgstr "Seu endereço de e-mail: "
 
-#: ../../mod/admin.php:975 ../../mod/admin.php:1178
-msgid "Enable"
-msgstr "Habilitar"
+#: ../../mod/register.php:275
+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 "Selecione uma identificação para o perfil. Ela deve começar com um caractere alfabético. O endereço do seu perfil neste site será '<strong>identificação@$sitename</strong>'"
 
-#: ../../mod/admin.php:998 ../../mod/admin.php:1206
-msgid "Toggle"
-msgstr "Alternar"
+#: ../../mod/register.php:276
+msgid "Choose a nickname: "
+msgstr "Escolha uma identificação: "
 
-#: ../../mod/admin.php:1006 ../../mod/admin.php:1216
-msgid "Author: "
-msgstr "Autor: "
+#: ../../mod/register.php:279 ../../boot.php:1136 ../../include/nav.php:108
+msgid "Register"
+msgstr "Registrar"
 
-#: ../../mod/admin.php:1007 ../../mod/admin.php:1217
-msgid "Maintainer: "
-msgstr "Mantenedor: "
+#: ../../mod/register.php:285 ../../mod/uimport.php:64
+msgid "Import"
+msgstr "Importar"
 
-#: ../../mod/admin.php:1136
-msgid "No themes found."
-msgstr "Nenhum tema encontrado"
+#: ../../mod/register.php:286
+msgid "Import your profile to this friendica instance"
+msgstr "Importa seu perfil  desta instância do friendica"
 
-#: ../../mod/admin.php:1198
-msgid "Screenshot"
-msgstr "Captura de tela"
+#: ../../mod/lostpass.php:17
+msgid "No valid account found."
+msgstr "Não foi encontrada nenhuma conta válida."
 
-#: ../../mod/admin.php:1244
-msgid "[Experimental]"
-msgstr "[Esperimental]"
+#: ../../mod/lostpass.php:33
+msgid "Password reset request issued. Check your email."
+msgstr "A solicitação para reiniciar sua senha foi encaminhada. Verifique seu e-mail."
 
-#: ../../mod/admin.php:1245
-msgid "[Unsupported]"
-msgstr "[Não suportado]"
+#: ../../mod/lostpass.php:44
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Foi feita uma solicitação de reiniciação da senha em %s"
 
-#: ../../mod/admin.php:1272
-msgid "Log settings updated."
-msgstr "As configurações de relatórios foram atualizadas."
+#: ../../mod/lostpass.php:66
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi reiniciada."
 
-#: ../../mod/admin.php:1328
-msgid "Clear"
-msgstr "Limpar"
+#: ../../mod/lostpass.php:84 ../../boot.php:1175
+msgid "Password Reset"
+msgstr "Reiniciar a senha"
 
-#: ../../mod/admin.php:1334
-msgid "Enable Debugging"
-msgstr "Habilitar Debugging"
+#: ../../mod/lostpass.php:85
+msgid "Your password has been reset as requested."
+msgstr "Sua senha foi reiniciada, conforme solicitado."
 
-#: ../../mod/admin.php:1335
-msgid "Log file"
-msgstr "Arquivo do relatório"
+#: ../../mod/lostpass.php:86
+msgid "Your new password is"
+msgstr "Sua nova senha é"
 
-#: ../../mod/admin.php:1335
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "O servidor web precisa ter permissão de escrita. Relativa ao diretório raiz do seu Friendica."
+#: ../../mod/lostpass.php:87
+msgid "Save or copy your new password - and then"
+msgstr "Grave ou copie a sua nova senha e, então"
 
-#: ../../mod/admin.php:1336
-msgid "Log level"
-msgstr "Nível do relatório"
+#: ../../mod/lostpass.php:88
+msgid "click here to login"
+msgstr "clique aqui para entrar"
 
-#: ../../mod/admin.php:1385 ../../mod/contacts.php:409
-msgid "Update now"
-msgstr "Atualizar agora"
+#: ../../mod/lostpass.php:89
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Sua senha pode ser alterada na página de <em>Configurações</em> após você entrar em seu perfil."
 
-#: ../../mod/admin.php:1386
-msgid "Close"
-msgstr "Fechar"
+#: ../../mod/lostpass.php:107
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Sua senha foi modifica às %s"
 
-#: ../../mod/admin.php:1392
-msgid "FTP Host"
-msgstr "Endereço do FTP"
-
-#: ../../mod/admin.php:1393
-msgid "FTP Path"
-msgstr "Caminho do FTP"
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
+msgstr "Esqueceu a sua senha?"
 
-#: ../../mod/admin.php:1394
-msgid "FTP User"
-msgstr "Usuário do FTP"
+#: ../../mod/lostpass.php:123
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Digite o seu endereço de e-mail e clique em 'Reiniciar' para prosseguir com a reiniciação da sua senha. Após isso, verifique seu e-mail para mais instruções."
 
-#: ../../mod/admin.php:1395
-msgid "FTP Password"
-msgstr "Senha do FTP"
+#: ../../mod/lostpass.php:124
+msgid "Nickname or Email: "
+msgstr "Identificação ou e-mail: "
 
-#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:927
-#: ../../include/text.php:928 ../../include/nav.php:118
-msgid "Search"
-msgstr "Pesquisar"
+#: ../../mod/lostpass.php:125
+msgid "Reset"
+msgstr "Reiniciar"
 
-#: ../../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 "Nenhum resultado."
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
+msgstr "Sistema em manutenção"
 
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Dicas para novos membros"
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "O item não está disponível."
 
-#: ../../mod/share.php:44
-msgid "link"
-msgstr "ligação"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "O item não foi encontrado."
 
-#: ../../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 etiquetou %3$s de %2$s com %4$s"
+#: ../../mod/apps.php:11
+msgid "Applications"
+msgstr "Aplicativos"
 
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "O item não foi encontrado"
+#: ../../mod/apps.php:14
+msgid "No installed applications."
+msgstr "Nenhum aplicativo instalado"
 
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "Editar a publicação"
+#: ../../mod/help.php:79
+msgid "Help:"
+msgstr "Ajuda:"
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1082
-msgid "upload photo"
-msgstr "upload de foto"
+#: ../../mod/help.php:84 ../../include/nav.php:113
+msgid "Help"
+msgstr "Ajuda"
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1083
-msgid "Attach file"
-msgstr "Anexar arquivo"
+#: ../../mod/contacts.php:104
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited"
+msgstr[0] "%d contato editado"
+msgstr[1] "%d contatos editados"
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1084
-msgid "attach file"
-msgstr "anexar arquivo"
+#: ../../mod/contacts.php:135 ../../mod/contacts.php:264
+msgid "Could not access contact record."
+msgstr "Não foi possível acessar o registro do contato."
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1086
-msgid "web link"
-msgstr "link web"
+#: ../../mod/contacts.php:149
+msgid "Could not locate selected profile."
+msgstr "Não foi possível localizar o perfil selecionado."
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:1087
-msgid "Insert video link"
-msgstr "Inserir link de vídeo"
+#: ../../mod/contacts.php:178
+msgid "Contact updated."
+msgstr "O contato foi atualizado."
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:1088
-msgid "video link"
-msgstr "link de vídeo"
+#: ../../mod/contacts.php:278
+msgid "Contact has been blocked"
+msgstr "O contato foi bloqueado"
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1089
-msgid "Insert audio link"
-msgstr "Inserir link de áudio"
+#: ../../mod/contacts.php:278
+msgid "Contact has been unblocked"
+msgstr "O contato foi desbloqueado"
 
-#: ../../mod/editpost.php:119 ../../include/conversation.php:1090
-msgid "audio link"
-msgstr "link de áudio"
+#: ../../mod/contacts.php:288
+msgid "Contact has been ignored"
+msgstr "O contato foi ignorado"
 
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1091
-msgid "Set your location"
-msgstr "Definir sua localização"
+#: ../../mod/contacts.php:288
+msgid "Contact has been unignored"
+msgstr "O contato deixou de ser ignorado"
 
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1092
-msgid "set location"
-msgstr "configure localização"
+#: ../../mod/contacts.php:299
+msgid "Contact has been archived"
+msgstr "O contato foi arquivado"
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1093
-msgid "Clear browser location"
-msgstr "Limpar a localização do navegador"
+#: ../../mod/contacts.php:299
+msgid "Contact has been unarchived"
+msgstr "O contato foi desarquivado"
 
-#: ../../mod/editpost.php:123 ../../include/conversation.php:1094
-msgid "clear location"
-msgstr "apague localização"
+#: ../../mod/contacts.php:324 ../../mod/contacts.php:697
+msgid "Do you really want to delete this contact?"
+msgstr "Você realmente deseja deletar esse contato?"
 
-#: ../../mod/editpost.php:125 ../../include/conversation.php:1100
-msgid "Permission settings"
-msgstr "Configurações de permissão"
+#: ../../mod/contacts.php:341
+msgid "Contact has been removed."
+msgstr "O contato foi removido."
 
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1109
-msgid "CC: email addresses"
-msgstr "CC: endereço de e-mail"
+#: ../../mod/contacts.php:379
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Você possui uma amizade mútua com %s"
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1110
-msgid "Public post"
-msgstr "Publicação pública"
+#: ../../mod/contacts.php:383
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Você está compartilhando com %s"
 
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1096
-msgid "Set title"
-msgstr "Definir o título"
+#: ../../mod/contacts.php:388
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s está compartilhando com você"
 
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1098
-msgid "Categories (comma-separated list)"
-msgstr "Categorias (lista separada por vírgulas)"
+#: ../../mod/contacts.php:405
+msgid "Private communications are not available for this contact."
+msgstr "As comunicações privadas não estão disponíveis para este contato."
 
-#: ../../mod/editpost.php:140 ../../include/conversation.php:1112
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Por exemplo: joao@exemplo.com, maria@exemplo.com"
+#: ../../mod/contacts.php:412
+msgid "(Update was successful)"
+msgstr "(A atualização foi bem sucedida)"
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "O item não está disponível."
+#: ../../mod/contacts.php:412
+msgid "(Update was not successful)"
+msgstr "(A atualização não foi bem sucedida)"
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "O item não foi encontrado."
+#: ../../mod/contacts.php:414
+msgid "Suggest friends"
+msgstr "Sugerir amigos"
 
-#: ../../mod/regmod.php:63
-msgid "Account approved."
-msgstr "A conta foi aprovada."
+#: ../../mod/contacts.php:418
+#, php-format
+msgid "Network type: %s"
+msgstr "Tipo de rede: %s"
 
-#: ../../mod/regmod.php:100
+#: ../../mod/contacts.php:421 ../../include/contact_widgets.php:199
 #, php-format
-msgid "Registration revoked for %s"
-msgstr "O registro de %s foi revogado"
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d contato em comum"
+msgstr[1] "%d contatos em comum"
 
-#: ../../mod/regmod.php:112
-msgid "Please login."
-msgstr "Por favor, autentique-se."
+#: ../../mod/contacts.php:426
+msgid "View all contacts"
+msgstr "Ver todos os contatos"
 
-#: ../../mod/directory.php:57
-msgid "Find on this site"
-msgstr "Pesquisar neste site"
+#: ../../mod/contacts.php:434
+msgid "Toggle Blocked status"
+msgstr "Alternar o status de bloqueio"
 
-#: ../../mod/directory.php:59 ../../mod/contacts.php:612
-msgid "Finding: "
-msgstr "Pesquisando: "
+#: ../../mod/contacts.php:437 ../../mod/contacts.php:491
+#: ../../mod/contacts.php:701
+msgid "Unignore"
+msgstr "Deixar de ignorar"
 
-#: ../../mod/directory.php:60
-msgid "Site Directory"
-msgstr "Diretório do site"
+#: ../../mod/contacts.php:440
+msgid "Toggle Ignored status"
+msgstr "Alternar o status de ignorado"
 
-#: ../../mod/directory.php:61 ../../mod/contacts.php:613
-#: ../../include/contact_widgets.php:33
-msgid "Find"
-msgstr "Pesquisar"
+#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
+msgid "Unarchive"
+msgstr "Desarquivar"
 
-#: ../../mod/directory.php:111 ../../mod/profiles.php:686
-msgid "Age: "
-msgstr "Idade: "
+#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
+msgid "Archive"
+msgstr "Arquivar"
 
-#: ../../mod/directory.php:114
-msgid "Gender: "
-msgstr "Gênero: "
+#: ../../mod/contacts.php:447
+msgid "Toggle Archive status"
+msgstr "Alternar o status de arquivamento"
 
-#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
-msgid "About:"
-msgstr "Sobre:"
+#: ../../mod/contacts.php:450
+msgid "Repair"
+msgstr "Reparar"
 
-#: ../../mod/directory.php:187
-msgid "No entries (some entries may be hidden)."
-msgstr "Nenhuma entrada (algumas entradas podem estar ocultas)."
+#: ../../mod/contacts.php:453
+msgid "Advanced Contact Settings"
+msgstr "Configurações avançadas do contato"
 
-#: ../../mod/crepair.php:102
-msgid "Contact settings applied."
-msgstr "As configurações do contato foram aplicadas."
+#: ../../mod/contacts.php:459
+msgid "Communications lost with this contact!"
+msgstr "As comunicações com esse contato foram perdidas!"
 
-#: ../../mod/crepair.php:104
-msgid "Contact update failed."
-msgstr "Não foi possível atualizar o contato."
+#: ../../mod/contacts.php:462
+msgid "Contact Editor"
+msgstr "Editor de contatos"
 
-#: ../../mod/crepair.php:135
-msgid "Repair Contact Settings"
-msgstr "Corrigir configurações do contato"
+#: ../../mod/contacts.php:465
+msgid "Profile Visibility"
+msgstr "Visibilidade do perfil"
 
-#: ../../mod/crepair.php:137
+#: ../../mod/contacts.php:466
+#, php-format
 msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>ATENÇÃO: Isso é muito avançado</strong>, se você digitar informações incorretas, suas comunicações com esse contato pode parar de funcionar."
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro."
 
-#: ../../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 "Por favor, use o botão 'Voltar' do seu navegador <strong>agora</strong>, caso você não tenha certeza do que está fazendo."
+#: ../../mod/contacts.php:467
+msgid "Contact Information / Notes"
+msgstr "Informações sobre o contato / Anotações"
 
-#: ../../mod/crepair.php:144
-msgid "Return to contact editor"
-msgstr "Voltar ao editor de contatos"
+#: ../../mod/contacts.php:468
+msgid "Edit contact notes"
+msgstr "Editar as anotações do contato"
 
-#: ../../mod/crepair.php:149
-msgid "Account Nickname"
-msgstr "Identificação da conta"
+#: ../../mod/contacts.php:474
+msgid "Block/Unblock contact"
+msgstr "Bloquear/desbloquear o contato"
 
-#: ../../mod/crepair.php:150
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Tagname - sobrescreve Nome/Identificação"
+#: ../../mod/contacts.php:475
+msgid "Ignore contact"
+msgstr "Ignorar o contato"
 
-#: ../../mod/crepair.php:151
-msgid "Account URL"
-msgstr "URL da conta"
+#: ../../mod/contacts.php:476
+msgid "Repair URL settings"
+msgstr "Reparar as definições de URL"
 
-#: ../../mod/crepair.php:152
-msgid "Friend Request URL"
-msgstr "URL da requisição de amizade"
+#: ../../mod/contacts.php:477
+msgid "View conversations"
+msgstr "Ver as conversas"
 
-#: ../../mod/crepair.php:153
-msgid "Friend Confirm URL"
-msgstr "URL da confirmação de amizade"
+#: ../../mod/contacts.php:479
+msgid "Delete contact"
+msgstr "Excluir o contato"
 
-#: ../../mod/crepair.php:154
-msgid "Notification Endpoint URL"
-msgstr "URL do ponto final da notificação"
+#: ../../mod/contacts.php:483
+msgid "Last update:"
+msgstr "Última atualização:"
 
-#: ../../mod/crepair.php:155
-msgid "Poll/Feed URL"
-msgstr "URL do captador/fonte de notícias"
+#: ../../mod/contacts.php:485
+msgid "Update public posts"
+msgstr "Atualizar publicações públicas"
 
-#: ../../mod/crepair.php:156
-msgid "New photo from this URL"
-msgstr "Nova imagem desta URL"
+#: ../../mod/contacts.php:494
+msgid "Currently blocked"
+msgstr "Atualmente bloqueado"
+
+#: ../../mod/contacts.php:495
+msgid "Currently ignored"
+msgstr "Atualmente ignorado"
+
+#: ../../mod/contacts.php:496
+msgid "Currently archived"
+msgstr "Atualmente arquivado"
+
+#: ../../mod/contacts.php:497
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Respostas/gostadas associados às suas publicações <strong>ainda podem</strong> estar visíveis"
+
+#: ../../mod/contacts.php:498
+msgid "Notification for new posts"
+msgstr "Notificações para novas publicações"
+
+#: ../../mod/contacts.php:498
+msgid "Send a notification of every new post of this contact"
+msgstr "Envie uma notificação para todos as novas publicações deste contato"
+
+#: ../../mod/contacts.php:499
+msgid "Fetch further information for feeds"
+msgstr "Pega mais informações para feeds"
+
+#: ../../mod/contacts.php:550
+msgid "Suggestions"
+msgstr "Sugestões"
+
+#: ../../mod/contacts.php:553
+msgid "Suggest potential friends"
+msgstr "Sugerir amigos em potencial"
+
+#: ../../mod/contacts.php:556 ../../mod/group.php:194
+msgid "All Contacts"
+msgstr "Todos os contatos"
+
+#: ../../mod/contacts.php:559
+msgid "Show all contacts"
+msgstr "Exibe todos os contatos"
+
+#: ../../mod/contacts.php:562
+msgid "Unblocked"
+msgstr "Desbloquear"
+
+#: ../../mod/contacts.php:565
+msgid "Only show unblocked contacts"
+msgstr "Exibe somente contatos desbloqueados"
+
+#: ../../mod/contacts.php:569
+msgid "Blocked"
+msgstr "Bloqueado"
+
+#: ../../mod/contacts.php:572
+msgid "Only show blocked contacts"
+msgstr "Exibe somente contatos bloqueados"
+
+#: ../../mod/contacts.php:576
+msgid "Ignored"
+msgstr "Ignorados"
+
+#: ../../mod/contacts.php:579
+msgid "Only show ignored contacts"
+msgstr "Exibe somente contatos ignorados"
+
+#: ../../mod/contacts.php:583
+msgid "Archived"
+msgstr "Arquivados"
+
+#: ../../mod/contacts.php:586
+msgid "Only show archived contacts"
+msgstr "Exibe somente contatos arquivados"
+
+#: ../../mod/contacts.php:590
+msgid "Hidden"
+msgstr "Ocultos"
+
+#: ../../mod/contacts.php:593
+msgid "Only show hidden contacts"
+msgstr "Exibe somente contatos ocultos"
+
+#: ../../mod/contacts.php:641
+msgid "Mutual Friendship"
+msgstr "Amizade mútua"
+
+#: ../../mod/contacts.php:645
+msgid "is a fan of yours"
+msgstr "é um fã seu"
+
+#: ../../mod/contacts.php:649
+msgid "you are a fan of"
+msgstr "você é um fã de"
+
+#: ../../mod/contacts.php:688 ../../view/theme/diabook/theme.php:125
+#: ../../include/nav.php:173
+msgid "Contacts"
+msgstr "Contatos"
+
+#: ../../mod/contacts.php:692
+msgid "Search your contacts"
+msgstr "Pesquisar seus contatos"
+
+#: ../../mod/contacts.php:693 ../../mod/directory.php:59
+msgid "Finding: "
+msgstr "Pesquisando: "
+
+#: ../../mod/contacts.php:694 ../../mod/directory.php:61
+#: ../../include/contact_widgets.php:33
+msgid "Find"
+msgstr "Pesquisar"
+
+#: ../../mod/contacts.php:699 ../../mod/settings.php:132
+#: ../../mod/settings.php:635
+msgid "Update"
+msgstr "Atualizar"
+
+#: ../../mod/videos.php:125
+msgid "No videos selected"
+msgstr "Nenhum vídeo selecionado"
+
+#: ../../mod/videos.php:317
+msgid "Recent Videos"
+msgstr "Vídeos Recentes"
+
+#: ../../mod/videos.php:319
+msgid "Upload New Videos"
+msgstr "Envie Novos Vídeos"
+
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "Amigos em Comum"
+
+#: ../../mod/common.php:78
+msgid "No contacts in common."
+msgstr "Nenhum contato em comum."
+
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr "O contato foi adicionado"
 
 #: ../../mod/uimport.php:66
 msgid "Move account"
@@ -3029,1407 +3049,1935 @@ msgid ""
 "select \"Export account\""
 msgstr "Para exportar a sua conta, entre em \"Configurações->Exportar dados pessoais\" e selecione \"Exportar conta\""
 
-#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Não existe informação disponível sobre a privacidade remota."
+#: ../../mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s está seguindo %2$s's %3$s"
 
-#: ../../mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Visível para:"
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "Amigos de %s"
 
-#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:930
-msgid "Save"
-msgstr "Salvar"
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Nenhum amigo para exibir."
 
-#: ../../mod/help.php:79
-msgid "Help:"
-msgstr "Ajuda:"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "A etiqueta foi removida"
 
-#: ../../mod/help.php:84 ../../include/nav.php:113
-msgid "Help"
-msgstr "Ajuda"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Remover a etiqueta do item"
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Nenhum perfil"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Selecione uma etiqueta para remover: "
 
-#: ../../mod/dfrn_request.php:93
-msgid "This introduction has already been accepted."
-msgstr "Esta apresentação já foi aceita."
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133
+msgid "Remove"
+msgstr "Remover"
 
-#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "A localização do perfil não é válida ou não contém uma informação de perfil."
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Bemvindo ao Friendica"
 
-#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Aviso: a localização do perfil não possui nenhum nome identificável do seu dono."
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Dicas para os novos membros"
 
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
-msgid "Warning: profile location has no profile photo."
-msgstr "Aviso: a localização do perfil não possui nenhuma foto do perfil."
+#: ../../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 "Gostaríamos de oferecer algumas dicas e links para ajudar a tornar a sua experiência agradável. Clique em qualquer item para visitar a página correspondente. Um link para essa página será visível em sua home page por duas semanas após o seu registro inicial e, então, desaparecerá discretamente."
 
-#: ../../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] "O parâmetro requerido %d não foi encontrado na localização fornecida"
-msgstr[1] "Os parâmetros requeridos %d não foram encontrados na localização fornecida"
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Do Início"
 
-#: ../../mod/dfrn_request.php:170
-msgid "Introduction complete."
-msgstr "A apresentação foi finalizada."
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Passo-a-passo da friendica"
 
-#: ../../mod/dfrn_request.php:209
-msgid "Unrecoverable protocol error."
-msgstr "Ocorreu um erro irrecuperável de protocolo."
+#: ../../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 "Na sua página <em>Início Rápido</em> - encontre uma introdução rápida ao seu perfil e abas da rede, faça algumas conexões novas, e encontre alguns grupos entrar."
 
-#: ../../mod/dfrn_request.php:237
-msgid "Profile unavailable."
-msgstr "O perfil não está disponível."
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Ir para as suas configurações"
 
-#: ../../mod/dfrn_request.php:262
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s recebeu solicitações de conexão em excesso hoje."
+#: ../../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 "Em sua página  <em>Configurações</em> - mude sua senha inicial. Também tome nota de seu Endereço de Identidade. Isso se parece com um endereço de e-mail - e será útil para se fazer amigos na rede social livre."
 
-#: ../../mod/dfrn_request.php:263
-msgid "Spam protection measures have been invoked."
-msgstr "As medidas de proteção contra spam foram ativadas."
+#: ../../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 "Revise as outras configurações, em particular as relacionadas a privacidade. Não estar listado no diretório é o equivalente a não ter o seu número na lista telefônica. Normalmente é interessante você estar listado - a não ser que os seu amigos atuais e potenciais saibam exatamente como encontrar você."
 
-#: ../../mod/dfrn_request.php:264
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Os amigos foram notificados para tentar novamente em 24 horas."
+#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
+#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979
+#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
+#: ../../include/nav.php:77
+msgid "Profile"
+msgstr "Perfil "
 
-#: ../../mod/dfrn_request.php:326
-msgid "Invalid locator"
-msgstr "Localizador inválido"
+#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
+msgstr "Enviar foto do perfil"
 
-#: ../../mod/dfrn_request.php:335
-msgid "Invalid email address."
-msgstr "Endereço de e-mail inválido."
+#: ../../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 "Envie uma foto para o seu perfil, caso ainda não tenha feito isso. Estudos indicam que pessoas que publicam fotos reais delas mesmas têm 10 vezes mais chances de encontrar novos amigos do que as que não o fazem."
 
-#: ../../mod/dfrn_request.php:362
-msgid "This account has not been configured for email. Request failed."
-msgstr "Essa conta não foi configurada para e-mails. Não foi possível atender à solicitação."
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Editar seu perfil"
 
-#: ../../mod/dfrn_request.php:458
-msgid "Unable to resolve your name at the provided location."
-msgstr "Não foi possível encontrar a sua identificação no endereço indicado."
+#: ../../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 "Edite o seu perfil <strong>padrão</strong> a seu gosto. Revise as configurações de ocultação da sua lista de amigos e do seu perfil de visitantes desconhecidos."
 
-#: ../../mod/dfrn_request.php:471
-msgid "You have already introduced yourself here."
-msgstr "Você já fez a sua apresentação aqui."
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Palavras-chave do perfil"
 
-#: ../../mod/dfrn_request.php:475
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Aparentemente você já é amigo de %s."
+#: ../../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 "Defina algumas palavras-chave públicas para o seu perfil padrão, que descrevam os seus interesses. Nós podemos encontrar outras pessoas com interesses similares e sugerir novas amizades."
 
-#: ../../mod/dfrn_request.php:496
-msgid "Invalid profile URL."
-msgstr "URL de perfil inválida."
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Conexões"
 
-#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
-msgid "Disallowed profile URL."
-msgstr "URL de perfil não permitida."
+#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
+#: ../../include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:124
-msgid "Failed to update contact record."
-msgstr "Não foi possível atualizar o registro do contato."
+#: ../../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 "Autorize o Conector com Facebook, caso você tenha uma conta lá e nós (opcionalmente) importaremos todos os seus amigos e conversas do Facebook."
 
-#: ../../mod/dfrn_request.php:592
-msgid "Your introduction has been sent."
-msgstr "A sua apresentação foi enviada."
+#: ../../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 "<em>Se</em> esse é o seu servidor pessoal, instalar o complemento do Facebook talvez facilite a transição para a rede social livre."
 
-#: ../../mod/dfrn_request.php:645
-msgid "Please login to confirm introduction."
-msgstr "Por favor, autentique-se para confirmar a apresentação."
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "Importação de e-mails"
 
-#: ../../mod/dfrn_request.php:659
+#: ../../mod/newmember.php:56
 msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "A identidade autenticada está incorreta. Por favor, entre como <strong>este</strong> perfil."
+"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 "Forneça a informação de acesso ao seu e-mail na sua página de Configuração de Conector se você deseja importar e interagir com amigos ou listas de discussão da sua Caixa de Entrada de e-mail"
 
-#: ../../mod/dfrn_request.php:670
-msgid "Hide this contact"
-msgstr "Ocultar este contato"
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Ir para a sua página de contatos"
 
-#: ../../mod/dfrn_request.php:673
-#, php-format
-msgid "Welcome home %s."
-msgstr "Bem-vindo(a) à sua página pessoal %s."
+#: ../../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 "Sua página de contatos é sua rota para o gerenciamento de amizades e conexão com amigos em outras redes. Geralmente você fornece o endereço deles ou a URL do site na janela de diálogo <em>Adicionar Novo Contato</em>."
 
-#: ../../mod/dfrn_request.php:674
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Por favor, confirme sua solicitação de apresentação/conexão para %s."
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Ir para o diretório do seu site"
 
-#: ../../mod/dfrn_request.php:675
-msgid "Confirm"
-msgstr "Confirmar"
+#: ../../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 "A página de Diretório permite que você encontre outras pessoas nesta rede ou em outras redes federadas. Procure por um link <em>Conectar</em> ou <em>Seguir</em> no perfil que deseja acompanhar. Forneça o seu Endereço de Identidade próprio, se solicitado."
 
-#: ../../mod/dfrn_request.php:716 ../../include/items.php:3504
-msgid "[Name Withheld]"
-msgstr "[Nome não revelado]"
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Pesquisar por novas pessoas"
 
-#: ../../mod/dfrn_request.php:811
+#: ../../mod/newmember.php:62
 msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Por favor, digite seu 'Endereço de Identificação' a partir de uma das seguintes redes de comunicação suportadas:"
+"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 "No painel lateral da página de Contatos existem várias ferramentas para encontrar novos amigos. Você pode descobrir pessoas com os mesmos interesses, procurar por nomes ou interesses e fornecer sugestões baseadas nos relacionamentos da rede. Em um site completamente novo, as sugestões de amizades geralmente começam a ser populadas dentro de 24 horas."
 
-#: ../../mod/dfrn_request.php:827
-msgid "<strike>Connect as an email follower</strike> (Coming soon)"
-msgstr "<strike>Conectar como um acompanhante por e-mail</strike> (Em breve)"
+#: ../../mod/newmember.php:66 ../../include/group.php:270
+msgid "Groups"
+msgstr "Grupos"
 
-#: ../../mod/dfrn_request.php:829
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Agrupe seus contatos"
+
+#: ../../mod/newmember.php:70
 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 "Caso você ainda não seja membro da rede social livre, <a href=\"http://dir.friendica.com/siteinfo\">clique aqui para encontrar um site Friendica público e junte-se à nós</a>."
+"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 "Após fazer novas amizades, organize-as em grupos de conversa privados, a partir da barra lateral na sua página de Contatos. A partir daí, você poderá interagir com cada grupo privativamente, na sua página de Rede."
 
-#: ../../mod/dfrn_request.php:832
-msgid "Friend/Connection Request"
-msgstr "Solicitação de amizade/conexão"
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Por que as minhas publicações não são públicas?"
 
-#: ../../mod/dfrn_request.php:833
+#: ../../mod/newmember.php:73
 msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Examplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+"Friendica respects your privacy. By default, your posts will only show up to"
+" people you've added as friends. For more information, see the help section "
+"from the link above."
+msgstr "A friendica respeita sua privacidade. Por padrão, suas publicações estarão visíveis apenas para as pessoas que você adicionou como amigos. Para mais informações, veja a página de ajuda, a partir do link acima."
 
-#: ../../mod/dfrn_request.php:834
-msgid "Please answer the following:"
-msgstr "Por favor, entre com as informações solicitadas:"
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Obtendo ajuda"
 
-#: ../../mod/dfrn_request.php:835
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Ir para a seção de ajuda"
+
+#: ../../mod/newmember.php:82
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Nossas páginas de <strong>ajuda</strong> podem ser consultadas para mais detalhes sobre características e recursos do programa."
+
+#: ../../mod/search.php:21 ../../mod/network.php:179
+msgid "Remove term"
+msgstr "Remover o termo"
+
+#: ../../mod/search.php:30 ../../mod/network.php:188
+#: ../../include/features.php:42
+msgid "Saved Searches"
+msgstr "Pesquisas salvas"
+
+#: ../../mod/search.php:99 ../../include/text.php:951
+#: ../../include/text.php:952 ../../include/nav.php:118
+msgid "Search"
+msgstr "Pesquisar"
+
+#: ../../mod/search.php:170 ../../mod/search.php:196
+#: ../../mod/community.php:62 ../../mod/community.php:89
+msgid "No results."
+msgstr "Nenhum resultado."
+
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "Limite de convites totais excedido."
+
+#: ../../mod/invite.php:49
 #, php-format
-msgid "Does %s know you?"
-msgstr "%s conhece você?"
+msgid "%s : Not a valid email address."
+msgstr "%s : Não é um endereço de e-mail válido."
 
-#: ../../mod/dfrn_request.php:838
-msgid "Add a personal note:"
-msgstr "Adicione uma anotação pessoal:"
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Por favor, junte-se à nós na Friendica"
 
-#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limite de convites ultrapassado. Favor contactar o administrador do sítio."
 
-#: ../../mod/dfrn_request.php:841
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
+#: ../../mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : Não foi possível enviar a mensagem."
 
-#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:718
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
-msgstr "Diaspora"
+#: ../../mod/invite.php:93
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d mensagem enviada."
+msgstr[1] "%d mensagens enviadas."
+
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Você não possui mais convites disponíveis"
+
+#: ../../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 "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais."
+
+#: ../../mod/invite.php:122
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público."
+
+#: ../../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 "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar."
+
+#: ../../mod/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros."
+
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Enviar convites."
+
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "Digite os endereços de e-mail, um por linha:"
+
+#: ../../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 "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web."
+
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Você preciso informar este código de convite: $invite_code"
+
+#: ../../mod/invite.php:137
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:"
+
+#: ../../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 "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com."
+
+#: ../../mod/settings.php:41
+msgid "Additional features"
+msgstr "Funcionalidades adicionais"
+
+#: ../../mod/settings.php:46
+msgid "Display"
+msgstr "Tela"
+
+#: ../../mod/settings.php:52 ../../mod/settings.php:775
+msgid "Social Networks"
+msgstr "Redes Sociais"
+
+#: ../../mod/settings.php:62 ../../include/nav.php:167
+msgid "Delegations"
+msgstr "Delegações"
+
+#: ../../mod/settings.php:67
+msgid "Connected apps"
+msgstr "Aplicações conectadas"
+
+#: ../../mod/settings.php:72 ../../mod/uexport.php:85
+msgid "Export personal data"
+msgstr "Exportar dados pessoais"
+
+#: ../../mod/settings.php:77
+msgid "Remove account"
+msgstr "Remover a conta"
+
+#: ../../mod/settings.php:129
+msgid "Missing some important data!"
+msgstr "Está faltando algum dado importante!"
+
+#: ../../mod/settings.php:238
+msgid "Failed to connect with email account using the settings provided."
+msgstr "Não foi possível conectar à conta de e-mail com as configurações fornecidas."
+
+#: ../../mod/settings.php:243
+msgid "Email settings updated."
+msgstr "As configurações de e-mail foram atualizadas."
+
+#: ../../mod/settings.php:258
+msgid "Features updated"
+msgstr "Funcionalidades atualizadas"
+
+#: ../../mod/settings.php:319
+msgid "Relocate message has been send to your contacts"
+msgstr "A mensagem de relocação foi enviada para seus contatos"
+
+#: ../../mod/settings.php:333
+msgid "Passwords do not match. Password unchanged."
+msgstr "As senhas não correspondem. A senha não foi modificada."
+
+#: ../../mod/settings.php:338
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Não é permitido uma senha em branco. A senha não foi modificada."
+
+#: ../../mod/settings.php:346
+msgid "Wrong password."
+msgstr "Senha errada."
+
+#: ../../mod/settings.php:357
+msgid "Password changed."
+msgstr "A senha foi modificada."
+
+#: ../../mod/settings.php:359
+msgid "Password update failed. Please try again."
+msgstr "Não foi possível atualizar a senha. Por favor, tente novamente."
+
+#: ../../mod/settings.php:424
+msgid " Please use a shorter name."
+msgstr " Por favor, use um nome mais curto."
+
+#: ../../mod/settings.php:426
+msgid " Name too short."
+msgstr " O nome é muito curto."
+
+#: ../../mod/settings.php:435
+msgid "Wrong Password"
+msgstr "Senha Errada"
+
+#: ../../mod/settings.php:440
+msgid " Not valid email."
+msgstr " Não é um e-mail válido."
+
+#: ../../mod/settings.php:446
+msgid " Cannot change to that email."
+msgstr " Não foi possível alterar para esse e-mail."
+
+#: ../../mod/settings.php:501
+msgid "Private forum has no privacy permissions. Using default privacy group."
+msgstr "O fórum privado não possui permissões de privacidade. Utilizando o grupo de privacidade padrão."
+
+#: ../../mod/settings.php:505
+msgid "Private forum has no privacy permissions and no default privacy group."
+msgstr "O fórum privado não possui permissões de privacidade e nenhum grupo de privacidade padrão."
+
+#: ../../mod/settings.php:535
+msgid "Settings updated."
+msgstr "As configurações foram atualizadas."
+
+#: ../../mod/settings.php:608 ../../mod/settings.php:634
+#: ../../mod/settings.php:670
+msgid "Add application"
+msgstr "Adicionar aplicação"
+
+#: ../../mod/settings.php:612 ../../mod/settings.php:638
+msgid "Consumer Key"
+msgstr "Chave do consumidor"
+
+#: ../../mod/settings.php:613 ../../mod/settings.php:639
+msgid "Consumer Secret"
+msgstr "Segredo do consumidor"
+
+#: ../../mod/settings.php:614 ../../mod/settings.php:640
+msgid "Redirect"
+msgstr "Redirecionar"
+
+#: ../../mod/settings.php:615 ../../mod/settings.php:641
+msgid "Icon url"
+msgstr "URL do ícone"
+
+#: ../../mod/settings.php:626
+msgid "You can't edit this application."
+msgstr "Você não pode editar esta aplicação."
+
+#: ../../mod/settings.php:669
+msgid "Connected Apps"
+msgstr "Aplicações conectadas"
+
+#: ../../mod/settings.php:673
+msgid "Client key starts with"
+msgstr "A chave do cliente inicia com"
+
+#: ../../mod/settings.php:674
+msgid "No name"
+msgstr "Sem nome"
+
+#: ../../mod/settings.php:675
+msgid "Remove authorization"
+msgstr "Remover autorização"
+
+#: ../../mod/settings.php:687
+msgid "No Plugin settings configured"
+msgstr "Não foi definida nenhuma configuração de plugin"
+
+#: ../../mod/settings.php:695
+msgid "Plugin Settings"
+msgstr "Configurações do plugin"
+
+#: ../../mod/settings.php:709
+msgid "Off"
+msgstr "Off"
+
+#: ../../mod/settings.php:709
+msgid "On"
+msgstr "On"
+
+#: ../../mod/settings.php:717
+msgid "Additional Features"
+msgstr "Funcionalidades Adicionais"
+
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
+msgstr "O suporte interno para conectividade de %s está %s"
+
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
+msgid "enabled"
+msgstr "habilitado"
+
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
+msgid "disabled"
+msgstr "desabilitado"
+
+#: ../../mod/settings.php:732
+msgid "StatusNet"
+msgstr "StatusNet"
+
+#: ../../mod/settings.php:768
+msgid "Email access is disabled on this site."
+msgstr "O acesso ao e-mail está desabilitado neste site."
+
+#: ../../mod/settings.php:780
+msgid "Email/Mailbox Setup"
+msgstr "Configurações do e-mail/caixa postal"
+
+#: ../../mod/settings.php:781
+msgid ""
+"If you wish to communicate with email contacts using this service "
+"(optional), please specify how to connect to your mailbox."
+msgstr "Caso você deseje se comunicar com contatos de e-mail usando este serviço (opcional), por favor especifique como se conectar à sua caixa postal."
+
+#: ../../mod/settings.php:782
+msgid "Last successful email check:"
+msgstr "Última checagem bem sucedida de e-mail:"
+
+#: ../../mod/settings.php:784
+msgid "IMAP server name:"
+msgstr "Nome do servidor IMAP:"
+
+#: ../../mod/settings.php:785
+msgid "IMAP port:"
+msgstr "Porta do IMAP:"
+
+#: ../../mod/settings.php:786
+msgid "Security:"
+msgstr "Segurança:"
+
+#: ../../mod/settings.php:786 ../../mod/settings.php:791
+msgid "None"
+msgstr "Nenhuma"
+
+#: ../../mod/settings.php:787
+msgid "Email login name:"
+msgstr "Nome de usuário do e-mail:"
+
+#: ../../mod/settings.php:788
+msgid "Email password:"
+msgstr "Senha do e-mail:"
+
+#: ../../mod/settings.php:789
+msgid "Reply-to address:"
+msgstr "Endereço de resposta (Reply-to):"
+
+#: ../../mod/settings.php:790
+msgid "Send public posts to all email contacts:"
+msgstr "Enviar publicações públicas para todos os contatos de e-mail:"
+
+#: ../../mod/settings.php:791
+msgid "Action after import:"
+msgstr "Ação após a importação:"
+
+#: ../../mod/settings.php:791
+msgid "Mark as seen"
+msgstr "Marcar como visto"
+
+#: ../../mod/settings.php:791
+msgid "Move to folder"
+msgstr "Mover para pasta"
+
+#: ../../mod/settings.php:792
+msgid "Move to folder:"
+msgstr "Mover para pasta:"
+
+#: ../../mod/settings.php:870
+msgid "Display Settings"
+msgstr "Configurações de exibição"
+
+#: ../../mod/settings.php:876 ../../mod/settings.php:890
+msgid "Display Theme:"
+msgstr "Tema do perfil:"
+
+#: ../../mod/settings.php:877
+msgid "Mobile Theme:"
+msgstr "Tema para dispositivos móveis:"
+
+#: ../../mod/settings.php:878
+msgid "Update browser every xx seconds"
+msgstr "Atualizar o navegador a cada xx segundos"
+
+#: ../../mod/settings.php:878
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Mínimo de 10 segundos, não possui máximo"
+
+#: ../../mod/settings.php:879
+msgid "Number of items to display per page:"
+msgstr "Número de itens a serem exibidos por página:"
+
+#: ../../mod/settings.php:879 ../../mod/settings.php:880
+msgid "Maximum of 100 items"
+msgstr "Máximo de 100 itens"
+
+#: ../../mod/settings.php:880
+msgid "Number of items to display per page when viewed from mobile device:"
+msgstr "Número de itens a serem exibidos por página quando visualizando em um dispositivo móvel:"
+
+#: ../../mod/settings.php:881
+msgid "Don't show emoticons"
+msgstr "Não exibir emoticons"
+
+#: ../../mod/settings.php:882
+msgid "Don't show notices"
+msgstr "Não mostra avisos"
+
+#: ../../mod/settings.php:883
+msgid "Infinite scroll"
+msgstr "rolamento infinito"
+
+#: ../../mod/settings.php:960
+msgid "User Types"
+msgstr "Tipos de Usuários"
+
+#: ../../mod/settings.php:961
+msgid "Community Types"
+msgstr "Tipos de Comunidades"
+
+#: ../../mod/settings.php:962
+msgid "Normal Account Page"
+msgstr "Página de conta normal"
+
+#: ../../mod/settings.php:963
+msgid "This account is a normal personal profile"
+msgstr "Essa conta é um perfil pessoal normal"
+
+#: ../../mod/settings.php:966
+msgid "Soapbox Page"
+msgstr "Página de vitrine"
+
+#: ../../mod/settings.php:967
+msgid "Automatically approve all connection/friend requests as read-only fans"
+msgstr "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão somente de leitura"
 
-#: ../../mod/dfrn_request.php:843
-#, php-format
+#: ../../mod/settings.php:970
+msgid "Community Forum/Celebrity Account"
+msgstr "Conta de fórum de comunidade/celebridade"
+
+#: ../../mod/settings.php:971
 msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - Por favor, não utilize esse formulário.  Ao invés disso, digite %s na sua barra de pesquisa do Diaspora."
+"Automatically approve all connection/friend requests as read-write fans"
+msgstr "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão de leitura e escrita"
 
-#: ../../mod/dfrn_request.php:844
-msgid "Your Identity Address:"
-msgstr "Seu endereço de identificação:"
+#: ../../mod/settings.php:974
+msgid "Automatic Friend Page"
+msgstr "Página de amigo automático"
 
-#: ../../mod/dfrn_request.php:847
-msgid "Submit Request"
-msgstr "Enviar solicitação"
+#: ../../mod/settings.php:975
+msgid "Automatically approve all connection/friend requests as friends"
+msgstr "Aprovar automaticamente todas as solicitações de conexão/amizade como amigos"
 
-#: ../../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 "[Conteúdo incorporado - recarregue a página para ver]"
+#: ../../mod/settings.php:978
+msgid "Private Forum [Experimental]"
+msgstr "Fórum privado [Experimental]"
 
-#: ../../mod/content.php:496 ../../include/conversation.php:686
-msgid "View in context"
-msgstr "Ver no contexto"
+#: ../../mod/settings.php:979
+msgid "Private forum - approved members only"
+msgstr "Fórum privado - somente membros aprovados"
 
-#: ../../mod/contacts.php:85 ../../mod/contacts.php:165
-msgid "Could not access contact record."
-msgstr "Não foi possível acessar o registro do contato."
+#: ../../mod/settings.php:991
+msgid "OpenID:"
+msgstr "OpenID:"
 
-#: ../../mod/contacts.php:99
-msgid "Could not locate selected profile."
-msgstr "Não foi possível localizar o perfil selecionado."
+#: ../../mod/settings.php:991
+msgid "(Optional) Allow this OpenID to login to this account."
+msgstr "(Opcional) Permitir o uso deste OpenID para entrar nesta conta"
 
-#: ../../mod/contacts.php:122
-msgid "Contact updated."
-msgstr "O contato foi atualizado."
+#: ../../mod/settings.php:1001
+msgid "Publish your default profile in your local site directory?"
+msgstr "Publicar o seu perfil padrão no diretório local do seu site?"
 
-#: ../../mod/contacts.php:187
-msgid "Contact has been blocked"
-msgstr "O contato foi bloqueado"
+#: ../../mod/settings.php:1007
+msgid "Publish your default profile in the global social directory?"
+msgstr "Publicar o seu perfil padrão no diretório social global?"
 
-#: ../../mod/contacts.php:187
-msgid "Contact has been unblocked"
-msgstr "O contato foi desbloqueado"
+#: ../../mod/settings.php:1015
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr "Ocultar visualização da sua lista de contatos/amigos no seu perfil padrão? "
 
-#: ../../mod/contacts.php:201
-msgid "Contact has been ignored"
-msgstr "O contato foi ignorado"
+#: ../../mod/settings.php:1019 ../../include/conversation.php:1055
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Ocultar os detalhes do seu perfil para pessoas desconhecidas?"
 
-#: ../../mod/contacts.php:201
-msgid "Contact has been unignored"
-msgstr "O contato deixou de ser ignorado"
+#: ../../mod/settings.php:1024
+msgid "Allow friends to post to your profile page?"
+msgstr "Permitir aos amigos publicarem na sua página de perfil?"
 
-#: ../../mod/contacts.php:220
-msgid "Contact has been archived"
-msgstr "O contato foi arquivado"
+#: ../../mod/settings.php:1030
+msgid "Allow friends to tag your posts?"
+msgstr "Permitir aos amigos etiquetarem suas publicações?"
 
-#: ../../mod/contacts.php:220
-msgid "Contact has been unarchived"
-msgstr "O contato foi desarquivado"
+#: ../../mod/settings.php:1036
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Permitir que você seja sugerido como amigo em potencial para novos membros?"
 
-#: ../../mod/contacts.php:244
-msgid "Do you really want to delete this contact?"
-msgstr "Você realmente deseja deletar esse contato?"
+#: ../../mod/settings.php:1042
+msgid "Permit unknown people to send you private mail?"
+msgstr "Permitir que pessoas desconhecidas lhe enviem mensagens privadas?"
 
-#: ../../mod/contacts.php:263
-msgid "Contact has been removed."
-msgstr "O contato foi removido."
+#: ../../mod/settings.php:1050
+msgid "Profile is <strong>not published</strong>."
+msgstr "O perfil <strong>não está publicado</strong>."
 
-#: ../../mod/contacts.php:301
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Você possui uma amizade mútua com %s"
+#: ../../mod/settings.php:1053 ../../mod/profile_photo.php:248
+msgid "or"
+msgstr "ou"
 
-#: ../../mod/contacts.php:305
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Você está compartilhando com %s"
+#: ../../mod/settings.php:1058
+msgid "Your Identity Address is"
+msgstr "O endereço da sua identidade é"
 
-#: ../../mod/contacts.php:310
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s está compartilhando com você"
+#: ../../mod/settings.php:1069
+msgid "Automatically expire posts after this many days:"
+msgstr "Expirar automaticamente publicações após tantos dias:"
 
-#: ../../mod/contacts.php:327
-msgid "Private communications are not available for this contact."
-msgstr "As comunicações privadas não estão disponíveis para este contato."
+#: ../../mod/settings.php:1069
+msgid "If empty, posts will not expire. Expired posts will be deleted"
+msgstr "Se deixado em branco, as publicações não irão expirar. Publicações expiradas serão excluídas."
 
-#: ../../mod/contacts.php:334
-msgid "(Update was successful)"
-msgstr "(A atualização foi bem sucedida)"
+#: ../../mod/settings.php:1070
+msgid "Advanced expiration settings"
+msgstr "Configurações avançadas de expiração"
 
-#: ../../mod/contacts.php:334
-msgid "(Update was not successful)"
-msgstr "(A atualização não foi bem sucedida)"
+#: ../../mod/settings.php:1071
+msgid "Advanced Expiration"
+msgstr "Expiração avançada"
 
-#: ../../mod/contacts.php:336
-msgid "Suggest friends"
-msgstr "Sugerir amigos"
+#: ../../mod/settings.php:1072
+msgid "Expire posts:"
+msgstr "Expirar publicações:"
 
-#: ../../mod/contacts.php:340
-#, php-format
-msgid "Network type: %s"
-msgstr "Tipo de rede: %s"
+#: ../../mod/settings.php:1073
+msgid "Expire personal notes:"
+msgstr "Expirar notas pessoais:"
 
-#: ../../mod/contacts.php:343 ../../include/contact_widgets.php:199
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d contato em comum"
-msgstr[1] "%d contatos em comum"
+#: ../../mod/settings.php:1074
+msgid "Expire starred posts:"
+msgstr "Expirar publicações destacadas:"
 
-#: ../../mod/contacts.php:348
-msgid "View all contacts"
-msgstr "Ver todos os contatos"
+#: ../../mod/settings.php:1075
+msgid "Expire photos:"
+msgstr "Expirar fotos:"
 
-#: ../../mod/contacts.php:356
-msgid "Toggle Blocked status"
-msgstr "Alternar o status de bloqueio"
+#: ../../mod/settings.php:1076
+msgid "Only expire posts by others:"
+msgstr "Expirar somente as publicações de outras pessoas:"
 
-#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
-msgid "Unignore"
-msgstr "Deixar de ignorar"
+#: ../../mod/settings.php:1102
+msgid "Account Settings"
+msgstr "Configurações da conta"
 
-#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
-#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
-#: ../../mod/notifications.php:210
-msgid "Ignore"
-msgstr "Ignorar"
+#: ../../mod/settings.php:1110
+msgid "Password Settings"
+msgstr "Configurações da senha"
 
-#: ../../mod/contacts.php:362
-msgid "Toggle Ignored status"
-msgstr "Alternar o status de ignorado"
+#: ../../mod/settings.php:1111
+msgid "New Password:"
+msgstr "Nova senha:"
 
-#: ../../mod/contacts.php:366
-msgid "Unarchive"
-msgstr "Desarquivar"
+#: ../../mod/settings.php:1112
+msgid "Confirm:"
+msgstr "Confirme:"
 
-#: ../../mod/contacts.php:366
-msgid "Archive"
-msgstr "Arquivar"
+#: ../../mod/settings.php:1112
+msgid "Leave password fields blank unless changing"
+msgstr "Deixe os campos de senha em branco, a não ser que você queira alterá-la"
 
-#: ../../mod/contacts.php:369
-msgid "Toggle Archive status"
-msgstr "Alternar o status de arquivamento"
+#: ../../mod/settings.php:1113
+msgid "Current Password:"
+msgstr "Senha Atual:"
 
-#: ../../mod/contacts.php:372
-msgid "Repair"
-msgstr "Reparar"
+#: ../../mod/settings.php:1113 ../../mod/settings.php:1114
+msgid "Your current password to confirm the changes"
+msgstr "Sua senha atual para confirmar as mudanças"
 
-#: ../../mod/contacts.php:375
-msgid "Advanced Contact Settings"
-msgstr "Configurações avançadas do contato"
+#: ../../mod/settings.php:1114
+msgid "Password:"
+msgstr "Senha:"
 
-#: ../../mod/contacts.php:381
-msgid "Communications lost with this contact!"
-msgstr "As comunicações com esse contato foram perdidas!"
+#: ../../mod/settings.php:1118
+msgid "Basic Settings"
+msgstr "Configurações básicas"
 
-#: ../../mod/contacts.php:384
-msgid "Contact Editor"
-msgstr "Editor de contatos"
+#: ../../mod/settings.php:1119 ../../include/profile_advanced.php:15
+msgid "Full Name:"
+msgstr "Nome completo:"
 
-#: ../../mod/contacts.php:387
-msgid "Profile Visibility"
-msgstr "Visibilidade do perfil"
+#: ../../mod/settings.php:1120
+msgid "Email Address:"
+msgstr "Endereço de e-mail:"
 
-#: ../../mod/contacts.php:388
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro."
+#: ../../mod/settings.php:1121
+msgid "Your Timezone:"
+msgstr "Seu fuso horário:"
 
-#: ../../mod/contacts.php:389
-msgid "Contact Information / Notes"
-msgstr "Informações sobre o contato / Anotações"
+#: ../../mod/settings.php:1122
+msgid "Default Post Location:"
+msgstr "Localização padrão de suas publicações:"
 
-#: ../../mod/contacts.php:390
-msgid "Edit contact notes"
-msgstr "Editar as anotações do contato"
+#: ../../mod/settings.php:1123
+msgid "Use Browser Location:"
+msgstr "Usar localizador do navegador:"
 
-#: ../../mod/contacts.php:395 ../../mod/contacts.php:585
-#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Visitar o perfil de %s [%s]"
+#: ../../mod/settings.php:1126
+msgid "Security and Privacy Settings"
+msgstr "Configurações de segurança e privacidade"
 
-#: ../../mod/contacts.php:396
-msgid "Block/Unblock contact"
-msgstr "Bloquear/desbloquear o contato"
+#: ../../mod/settings.php:1128
+msgid "Maximum Friend Requests/Day:"
+msgstr "Número máximo de requisições de amizade por dia:"
 
-#: ../../mod/contacts.php:397
-msgid "Ignore contact"
-msgstr "Ignorar o contato"
+#: ../../mod/settings.php:1128 ../../mod/settings.php:1158
+msgid "(to prevent spam abuse)"
+msgstr "(para prevenir abuso de spammers)"
 
-#: ../../mod/contacts.php:398
-msgid "Repair URL settings"
-msgstr "Reparar as definições de URL"
+#: ../../mod/settings.php:1129
+msgid "Default Post Permissions"
+msgstr "Permissões padrão de publicação"
 
-#: ../../mod/contacts.php:399
-msgid "View conversations"
-msgstr "Ver as conversas"
+#: ../../mod/settings.php:1130
+msgid "(click to open/close)"
+msgstr "(clique para abrir/fechar)"
 
-#: ../../mod/contacts.php:401
-msgid "Delete contact"
-msgstr "Excluir o contato"
+#: ../../mod/settings.php:1141
+msgid "Default Private Post"
+msgstr "Publicação Privada Padrão"
 
-#: ../../mod/contacts.php:405
-msgid "Last update:"
-msgstr "Última atualização:"
+#: ../../mod/settings.php:1142
+msgid "Default Public Post"
+msgstr "Publicação Pública Padrão"
 
-#: ../../mod/contacts.php:407
-msgid "Update public posts"
-msgstr "Atualizar publicações públicas"
+#: ../../mod/settings.php:1146
+msgid "Default Permissions for New Posts"
+msgstr "Permissões Padrão para Publicações Novas"
 
-#: ../../mod/contacts.php:416
-msgid "Currently blocked"
-msgstr "Atualmente bloqueado"
+#: ../../mod/settings.php:1158
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Número máximo de mensagens privadas de pessoas desconhecidas, por dia:"
 
-#: ../../mod/contacts.php:417
-msgid "Currently ignored"
-msgstr "Atualmente ignorado"
+#: ../../mod/settings.php:1161
+msgid "Notification Settings"
+msgstr "Configurações de notificação"
 
-#: ../../mod/contacts.php:418
-msgid "Currently archived"
-msgstr "Atualmente arquivado"
+#: ../../mod/settings.php:1162
+msgid "By default post a status message when:"
+msgstr "Por padrão, publicar uma mensagem de status quando:"
 
-#: ../../mod/contacts.php:419 ../../mod/notifications.php:157
-#: ../../mod/notifications.php:204
-msgid "Hide this contact from others"
-msgstr "Ocultar este contato dos outros"
+#: ../../mod/settings.php:1163
+msgid "accepting a friend request"
+msgstr "aceitar uma requisição de amizade"
 
-#: ../../mod/contacts.php:419
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Respostas/gostadas associados às suas publicações <strong>ainda podem</strong> estar visíveis"
+#: ../../mod/settings.php:1164
+msgid "joining a forum/community"
+msgstr "associar-se a um fórum/comunidade"
+
+#: ../../mod/settings.php:1165
+msgid "making an <em>interesting</em> profile change"
+msgstr "fazer uma modificação <em>interessante</em> em seu perfil"
+
+#: ../../mod/settings.php:1166
+msgid "Send a notification email when:"
+msgstr "Enviar um e-mail de notificação sempre que:"
 
-#: ../../mod/contacts.php:470
-msgid "Suggestions"
-msgstr "Sugestões"
+#: ../../mod/settings.php:1167
+msgid "You receive an introduction"
+msgstr "Você recebeu uma apresentação"
 
-#: ../../mod/contacts.php:473
-msgid "Suggest potential friends"
-msgstr "Sugerir amigos em potencial"
+#: ../../mod/settings.php:1168
+msgid "Your introductions are confirmed"
+msgstr "Suas apresentações forem confirmadas"
 
-#: ../../mod/contacts.php:476 ../../mod/group.php:194
-msgid "All Contacts"
-msgstr "Todos os contatos"
+#: ../../mod/settings.php:1169
+msgid "Someone writes on your profile wall"
+msgstr "Alguém escrever no mural do seu perfil"
 
-#: ../../mod/contacts.php:479
-msgid "Show all contacts"
-msgstr "Exibe todos os contatos"
+#: ../../mod/settings.php:1170
+msgid "Someone writes a followup comment"
+msgstr "Alguém comentar a sua mensagem"
 
-#: ../../mod/contacts.php:482
-msgid "Unblocked"
-msgstr "Desbloquear"
+#: ../../mod/settings.php:1171
+msgid "You receive a private message"
+msgstr "Você recebeu uma mensagem privada"
 
-#: ../../mod/contacts.php:485
-msgid "Only show unblocked contacts"
-msgstr "Exibe somente contatos desbloqueados"
+#: ../../mod/settings.php:1172
+msgid "You receive a friend suggestion"
+msgstr "Você recebe uma suggestão de amigo"
 
-#: ../../mod/contacts.php:489
-msgid "Blocked"
-msgstr "Bloqueado"
+#: ../../mod/settings.php:1173
+msgid "You are tagged in a post"
+msgstr "Você foi etiquetado em uma publicação"
 
-#: ../../mod/contacts.php:492
-msgid "Only show blocked contacts"
-msgstr "Exibe somente contatos bloqueados"
+#: ../../mod/settings.php:1174
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Você está cutucado/incitado/etc. em uma publicação"
 
-#: ../../mod/contacts.php:496
-msgid "Ignored"
-msgstr "Ignorados"
+#: ../../mod/settings.php:1177
+msgid "Advanced Account/Page Type Settings"
+msgstr "Conta avançada/Configurações do tipo de página"
 
-#: ../../mod/contacts.php:499
-msgid "Only show ignored contacts"
-msgstr "Exibe somente contatos ignorados"
+#: ../../mod/settings.php:1178
+msgid "Change the behaviour of this account for special situations"
+msgstr "Modificar o comportamento desta conta em situações especiais"
 
-#: ../../mod/contacts.php:503
-msgid "Archived"
-msgstr "Arquivados"
+#: ../../mod/settings.php:1181
+msgid "Relocate"
+msgstr "Relocação"
 
-#: ../../mod/contacts.php:506
-msgid "Only show archived contacts"
-msgstr "Exibe somente contatos arquivados"
+#: ../../mod/settings.php:1182
+msgid ""
+"If you have moved this profile from another server, and some of your "
+"contacts don't receive your updates, try pushing this button."
+msgstr "Se você moveu esse perfil de outro servidor e algum dos seus contatos não recebe atualizações, pressione esse botão."
 
-#: ../../mod/contacts.php:510
-msgid "Hidden"
-msgstr "Ocultos"
+#: ../../mod/settings.php:1183
+msgid "Resend relocate message to contacts"
+msgstr "Reenviar mensagem de relocação para os contatos"
 
-#: ../../mod/contacts.php:513
-msgid "Only show hidden contacts"
-msgstr "Exibe somente contatos ocultos"
+#: ../../mod/display.php:263
+msgid "Item has been removed."
+msgstr "O item foi removido."
 
-#: ../../mod/contacts.php:561
-msgid "Mutual Friendship"
-msgstr "Amizade mútua"
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Pesquisar pessoas"
 
-#: ../../mod/contacts.php:565
-msgid "is a fan of yours"
-msgstr "é um fã seu"
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "Nenhuma correspondência"
 
-#: ../../mod/contacts.php:569
-msgid "you are a fan of"
-msgstr "você é um fã de"
+#: ../../mod/profiles.php:37
+msgid "Profile deleted."
+msgstr "O perfil foi excluído."
 
-#: ../../mod/contacts.php:586 ../../mod/nogroup.php:41
-msgid "Edit contact"
-msgstr "Editar o contato"
+#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+msgid "Profile-"
+msgstr "Perfil-"
 
-#: ../../mod/contacts.php:611
-msgid "Search your contacts"
-msgstr "Pesquisar seus contatos"
+#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
+msgid "New profile created."
+msgstr "O novo perfil foi criado."
 
-#: ../../mod/settings.php:28 ../../mod/photos.php:79
-msgid "everybody"
-msgstr "todos"
+#: ../../mod/profiles.php:95
+msgid "Profile unavailable to clone."
+msgstr "O perfil não está disponível para clonagem."
 
-#: ../../mod/settings.php:35 ../../mod/uexport.php:9 ../../include/nav.php:167
-msgid "Account settings"
-msgstr "Configurações da conta"
+#: ../../mod/profiles.php:170
+msgid "Profile Name is required."
+msgstr "É necessário informar o nome do perfil."
 
-#: ../../mod/settings.php:40
-msgid "Additional features"
-msgstr "Funcionalidades adicionais"
+#: ../../mod/profiles.php:321
+msgid "Marital Status"
+msgstr "Situação amorosa"
 
-#: ../../mod/settings.php:45 ../../mod/uexport.php:14
-msgid "Display settings"
-msgstr "Configurações de exibição"
+#: ../../mod/profiles.php:325
+msgid "Romantic Partner"
+msgstr "Parceiro romântico"
 
-#: ../../mod/settings.php:51 ../../mod/uexport.php:20
-msgid "Connector settings"
-msgstr "Configurações do conector"
+#: ../../mod/profiles.php:329
+msgid "Likes"
+msgstr "Gosta de"
 
-#: ../../mod/settings.php:56 ../../mod/uexport.php:25
-msgid "Plugin settings"
-msgstr "Configurações dos plugins"
+#: ../../mod/profiles.php:333
+msgid "Dislikes"
+msgstr "Não gosta de"
 
-#: ../../mod/settings.php:61 ../../mod/uexport.php:30
-msgid "Connected apps"
-msgstr "Aplicações conectadas"
+#: ../../mod/profiles.php:337
+msgid "Work/Employment"
+msgstr "Trabalho/emprego"
 
-#: ../../mod/settings.php:66 ../../mod/uexport.php:35 ../../mod/uexport.php:80
-msgid "Export personal data"
-msgstr "Exportar dados pessoais"
+#: ../../mod/profiles.php:340
+msgid "Religion"
+msgstr "Religião"
 
-#: ../../mod/settings.php:71 ../../mod/uexport.php:40
-msgid "Remove account"
-msgstr "Remover a conta"
+#: ../../mod/profiles.php:344
+msgid "Political Views"
+msgstr "Posicionamento político"
 
-#: ../../mod/settings.php:123
-msgid "Missing some important data!"
-msgstr "Está faltando algum dado importante!"
+#: ../../mod/profiles.php:348
+msgid "Gender"
+msgstr "Gênero"
 
-#: ../../mod/settings.php:126 ../../mod/settings.php:623
-msgid "Update"
-msgstr "Atualizar"
+#: ../../mod/profiles.php:352
+msgid "Sexual Preference"
+msgstr "Preferência sexual"
 
-#: ../../mod/settings.php:232
-msgid "Failed to connect with email account using the settings provided."
-msgstr "Não foi possível conectar à conta de e-mail com as configurações fornecidas."
+#: ../../mod/profiles.php:356
+msgid "Homepage"
+msgstr "Página Principal"
 
-#: ../../mod/settings.php:237
-msgid "Email settings updated."
-msgstr "As configurações de e-mail foram atualizadas."
+#: ../../mod/profiles.php:360
+msgid "Interests"
+msgstr "Interesses"
 
-#: ../../mod/settings.php:252
-msgid "Features updated"
-msgstr "Funcionalidades atualizadas"
+#: ../../mod/profiles.php:364
+msgid "Address"
+msgstr "Endereço"
 
-#: ../../mod/settings.php:311
-msgid "Relocate message has been send to your contacts"
-msgstr "A mensagem de relocação foi enviada para seus contatos"
+#: ../../mod/profiles.php:371
+msgid "Location"
+msgstr "Localização"
 
-#: ../../mod/settings.php:325
-msgid "Passwords do not match. Password unchanged."
-msgstr "As senhas não correspondem. A senha não foi modificada."
+#: ../../mod/profiles.php:454
+msgid "Profile updated."
+msgstr "O perfil foi atualizado."
 
-#: ../../mod/settings.php:330
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Não é permitido uma senha em branco. A senha não foi modificada."
+#: ../../mod/profiles.php:525
+msgid " and "
+msgstr " e "
 
-#: ../../mod/settings.php:338
-msgid "Wrong password."
-msgstr "Senha errada."
+#: ../../mod/profiles.php:533
+msgid "public profile"
+msgstr "perfil público"
 
-#: ../../mod/settings.php:349
-msgid "Password changed."
-msgstr "A senha foi modificada."
+#: ../../mod/profiles.php:536
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s mudou %2$s para &ldquo;%3$s&rdquo;"
 
-#: ../../mod/settings.php:351
-msgid "Password update failed. Please try again."
-msgstr "Não foi possível atualizar a senha. Por favor, tente novamente."
+#: ../../mod/profiles.php:537
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr " - Visite %2$s de %1$s"
 
-#: ../../mod/settings.php:416
-msgid " Please use a shorter name."
-msgstr " Por favor, use um nome mais curto."
+#: ../../mod/profiles.php:540
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s foi atualizado %2$s, mudando %3$s."
 
-#: ../../mod/settings.php:418
-msgid " Name too short."
-msgstr " O nome é muito curto."
+#: ../../mod/profiles.php:613
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Ocultar sua lista de contatos/amigos dos visitantes no seu perfil?"
 
-#: ../../mod/settings.php:427
-msgid "Wrong Password"
-msgstr "Senha Errada"
+#: ../../mod/profiles.php:633
+msgid "Edit Profile Details"
+msgstr "Editar os detalhes do perfil"
 
-#: ../../mod/settings.php:432
-msgid " Not valid email."
-msgstr " Não é um e-mail válido."
+#: ../../mod/profiles.php:635
+msgid "Change Profile Photo"
+msgstr "Mudar Foto do Perfil"
 
-#: ../../mod/settings.php:435
-msgid " Cannot change to that email."
-msgstr " Não foi possível alterar para esse e-mail."
+#: ../../mod/profiles.php:636
+msgid "View this profile"
+msgstr "Ver este perfil"
 
-#: ../../mod/settings.php:489
-msgid "Private forum has no privacy permissions. Using default privacy group."
-msgstr "O fórum privado não possui permissões de privacidade. Utilizando o grupo de privacidade padrão."
+#: ../../mod/profiles.php:637
+msgid "Create a new profile using these settings"
+msgstr "Criar um novo perfil usando estas configurações"
 
-#: ../../mod/settings.php:493
-msgid "Private forum has no privacy permissions and no default privacy group."
-msgstr "O fórum privado não possui permissões de privacidade e nenhum grupo de privacidade padrão."
+#: ../../mod/profiles.php:638
+msgid "Clone this profile"
+msgstr "Clonar este perfil"
 
-#: ../../mod/settings.php:523
-msgid "Settings updated."
-msgstr "As configurações foram atualizadas."
+#: ../../mod/profiles.php:639
+msgid "Delete this profile"
+msgstr "Excluir este perfil"
 
-#: ../../mod/settings.php:596 ../../mod/settings.php:622
-#: ../../mod/settings.php:658
-msgid "Add application"
-msgstr "Adicionar aplicação"
+#: ../../mod/profiles.php:640
+msgid "Profile Name:"
+msgstr "Nome do perfil:"
 
-#: ../../mod/settings.php:600 ../../mod/settings.php:626
-msgid "Consumer Key"
-msgstr "Chave do consumidor"
+#: ../../mod/profiles.php:641
+msgid "Your Full Name:"
+msgstr "Seu nome completo:"
 
-#: ../../mod/settings.php:601 ../../mod/settings.php:627
-msgid "Consumer Secret"
-msgstr "Segredo do consumidor"
+#: ../../mod/profiles.php:642
+msgid "Title/Description:"
+msgstr "Título/Descrição:"
 
-#: ../../mod/settings.php:602 ../../mod/settings.php:628
-msgid "Redirect"
-msgstr "Redirecionar"
+#: ../../mod/profiles.php:643
+msgid "Your Gender:"
+msgstr "Seu gênero:"
 
-#: ../../mod/settings.php:603 ../../mod/settings.php:629
-msgid "Icon url"
-msgstr "URL do ícone"
+#: ../../mod/profiles.php:644
+#, php-format
+msgid "Birthday (%s):"
+msgstr "Aniversário (%s):"
 
-#: ../../mod/settings.php:614
-msgid "You can't edit this application."
-msgstr "Você não pode editar esta aplicação."
+#: ../../mod/profiles.php:645
+msgid "Street Address:"
+msgstr "Endereço:"
 
-#: ../../mod/settings.php:657
-msgid "Connected Apps"
-msgstr "Aplicações conectadas"
+#: ../../mod/profiles.php:646
+msgid "Locality/City:"
+msgstr "Localidade/Cidade:"
 
-#: ../../mod/settings.php:661
-msgid "Client key starts with"
-msgstr "A chave do cliente inicia com"
+#: ../../mod/profiles.php:647
+msgid "Postal/Zip Code:"
+msgstr "CEP:"
 
-#: ../../mod/settings.php:662
-msgid "No name"
-msgstr "Sem nome"
+#: ../../mod/profiles.php:648
+msgid "Country:"
+msgstr "País:"
 
-#: ../../mod/settings.php:663
-msgid "Remove authorization"
-msgstr "Remover autorização"
+#: ../../mod/profiles.php:649
+msgid "Region/State:"
+msgstr "Região/Estado:"
 
-#: ../../mod/settings.php:675
-msgid "No Plugin settings configured"
-msgstr "Não foi definida nenhuma configuração de plugin"
+#: ../../mod/profiles.php:650
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Situação amorosa:"
 
-#: ../../mod/settings.php:683
-msgid "Plugin Settings"
-msgstr "Configurações do plugin"
+#: ../../mod/profiles.php:651
+msgid "Who: (if applicable)"
+msgstr "Quem: (se pertinente)"
 
-#: ../../mod/settings.php:697
-msgid "Off"
-msgstr "Off"
+#: ../../mod/profiles.php:652
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com"
 
-#: ../../mod/settings.php:697
-msgid "On"
-msgstr "On"
+#: ../../mod/profiles.php:653
+msgid "Since [date]:"
+msgstr "Desde [data]:"
 
-#: ../../mod/settings.php:705
-msgid "Additional Features"
-msgstr "Funcionalidades Adicionais"
+#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:46
+msgid "Sexual Preference:"
+msgstr "Preferência sexual:"
 
-#: ../../mod/settings.php:718 ../../mod/settings.php:719
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr "O suporte interno para conectividade de %s está %s"
+#: ../../mod/profiles.php:655
+msgid "Homepage URL:"
+msgstr "Endereço do site web:"
 
-#: ../../mod/settings.php:718 ../../mod/settings.php:719
-msgid "enabled"
-msgstr "habilitado"
+#: ../../mod/profiles.php:656 ../../include/profile_advanced.php:50
+msgid "Hometown:"
+msgstr "Cidade:"
 
-#: ../../mod/settings.php:718 ../../mod/settings.php:719
-msgid "disabled"
-msgstr "desabilitado"
+#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:54
+msgid "Political Views:"
+msgstr "Posição política:"
 
-#: ../../mod/settings.php:719
-msgid "StatusNet"
-msgstr "StatusNet"
+#: ../../mod/profiles.php:658
+msgid "Religious Views:"
+msgstr "Orientação religiosa:"
 
-#: ../../mod/settings.php:751
-msgid "Email access is disabled on this site."
-msgstr "O acesso ao e-mail está desabilitado neste site."
+#: ../../mod/profiles.php:659
+msgid "Public Keywords:"
+msgstr "Palavras-chave públicas:"
 
-#: ../../mod/settings.php:758
-msgid "Connector Settings"
-msgstr "Configurações do conector"
+#: ../../mod/profiles.php:660
+msgid "Private Keywords:"
+msgstr "Palavras-chave privadas:"
 
-#: ../../mod/settings.php:763
-msgid "Email/Mailbox Setup"
-msgstr "Configurações do e-mail/caixa postal"
+#: ../../mod/profiles.php:661 ../../include/profile_advanced.php:62
+msgid "Likes:"
+msgstr "Gosta de:"
 
-#: ../../mod/settings.php:764
-msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
-msgstr "Caso você deseje se comunicar com contatos de e-mail usando este serviço (opcional), por favor especifique como se conectar à sua caixa postal."
+#: ../../mod/profiles.php:662 ../../include/profile_advanced.php:64
+msgid "Dislikes:"
+msgstr "Não gosta de:"
 
-#: ../../mod/settings.php:765
-msgid "Last successful email check:"
-msgstr "Última checagem bem sucedida de e-mail:"
+#: ../../mod/profiles.php:663
+msgid "Example: fishing photography software"
+msgstr "Exemplo: pesca fotografia software"
 
-#: ../../mod/settings.php:767
-msgid "IMAP server name:"
-msgstr "Nome do servidor IMAP:"
+#: ../../mod/profiles.php:664
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Usado para sugerir amigos em potencial, pode ser visto pelos outros)"
 
-#: ../../mod/settings.php:768
-msgid "IMAP port:"
-msgstr "Porta do IMAP:"
+#: ../../mod/profiles.php:665
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Usado na pesquisa de perfis, nunca é exibido para os outros)"
 
-#: ../../mod/settings.php:769
-msgid "Security:"
-msgstr "Segurança:"
+#: ../../mod/profiles.php:666
+msgid "Tell us about yourself..."
+msgstr "Fale um pouco sobre você..."
 
-#: ../../mod/settings.php:769 ../../mod/settings.php:774
-msgid "None"
-msgstr "Nenhuma"
+#: ../../mod/profiles.php:667
+msgid "Hobbies/Interests"
+msgstr "Passatempos/Interesses"
 
-#: ../../mod/settings.php:770
-msgid "Email login name:"
-msgstr "Nome de usuário do e-mail:"
+#: ../../mod/profiles.php:668
+msgid "Contact information and Social Networks"
+msgstr "Informações de contato e redes sociais"
 
-#: ../../mod/settings.php:771
-msgid "Email password:"
-msgstr "Senha do e-mail:"
+#: ../../mod/profiles.php:669
+msgid "Musical interests"
+msgstr "Preferências musicais"
 
-#: ../../mod/settings.php:772
-msgid "Reply-to address:"
-msgstr "Endereço de resposta (Reply-to):"
+#: ../../mod/profiles.php:670
+msgid "Books, literature"
+msgstr "Livros, literatura"
 
-#: ../../mod/settings.php:773
-msgid "Send public posts to all email contacts:"
-msgstr "Enviar publicações públicas para todos os contatos de e-mail:"
+#: ../../mod/profiles.php:671
+msgid "Television"
+msgstr "Televisão"
 
-#: ../../mod/settings.php:774
-msgid "Action after import:"
-msgstr "Ação após a importação:"
+#: ../../mod/profiles.php:672
+msgid "Film/dance/culture/entertainment"
+msgstr "Filme/dança/cultura/entretenimento"
 
-#: ../../mod/settings.php:774
-msgid "Mark as seen"
-msgstr "Marcar como visto"
+#: ../../mod/profiles.php:673
+msgid "Love/romance"
+msgstr "Amor/romance"
 
-#: ../../mod/settings.php:774
-msgid "Move to folder"
-msgstr "Mover para pasta"
+#: ../../mod/profiles.php:674
+msgid "Work/employment"
+msgstr "Trabalho/emprego"
 
-#: ../../mod/settings.php:775
-msgid "Move to folder:"
-msgstr "Mover para pasta:"
+#: ../../mod/profiles.php:675
+msgid "School/education"
+msgstr "Escola/educação"
 
-#: ../../mod/settings.php:850
-msgid "Display Settings"
-msgstr "Configurações de exibição"
+#: ../../mod/profiles.php:680
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Este é o seu perfil <strong>público</strong>.<br />Ele <strong>pode</strong> estar visível para qualquer um que acesse a Internet."
 
-#: ../../mod/settings.php:856 ../../mod/settings.php:869
-msgid "Display Theme:"
-msgstr "Tema do perfil:"
+#: ../../mod/profiles.php:690 ../../mod/directory.php:111
+msgid "Age: "
+msgstr "Idade: "
 
-#: ../../mod/settings.php:857
-msgid "Mobile Theme:"
-msgstr "Tema para dispositivos móveis:"
+#: ../../mod/profiles.php:729
+msgid "Edit/Manage Profiles"
+msgstr "Editar/Gerenciar perfis"
 
-#: ../../mod/settings.php:858
-msgid "Update browser every xx seconds"
-msgstr "Atualizar o navegador a cada xx segundos"
+#: ../../mod/profiles.php:730 ../../boot.php:1473 ../../boot.php:1499
+msgid "Change profile photo"
+msgstr "Mudar a foto do perfil"
 
-#: ../../mod/settings.php:858
-msgid "Minimum of 10 seconds, no maximum"
-msgstr "Mínimo de 10 segundos, não possui máximo"
+#: ../../mod/profiles.php:731 ../../boot.php:1474
+msgid "Create New Profile"
+msgstr "Criar um novo perfil"
 
-#: ../../mod/settings.php:859
-msgid "Number of items to display per page:"
-msgstr "Número de itens a serem exibidos por página:"
+#: ../../mod/profiles.php:742 ../../boot.php:1484
+msgid "Profile Image"
+msgstr "Imagem do perfil"
 
-#: ../../mod/settings.php:859 ../../mod/settings.php:860
-msgid "Maximum of 100 items"
-msgstr "Máximo de 100 itens"
+#: ../../mod/profiles.php:744 ../../boot.php:1487
+msgid "visible to everybody"
+msgstr "visível para todos"
 
-#: ../../mod/settings.php:860
-msgid "Number of items to display per page when viewed from mobile device:"
-msgstr "Número de itens a serem exibidos por página quando visualizando em um dispositivo móvel:"
+#: ../../mod/profiles.php:745 ../../boot.php:1488
+msgid "Edit visibility"
+msgstr "Editar a visibilidade"
 
-#: ../../mod/settings.php:861
-msgid "Don't show emoticons"
-msgstr "Não exibir emoticons"
+#: ../../mod/share.php:44
+msgid "link"
+msgstr "ligação"
 
-#: ../../mod/settings.php:862
-msgid "Infinite scroll"
-msgstr "rolamento infinito"
+#: ../../mod/uexport.php:77
+msgid "Export account"
+msgstr "Exportar conta"
 
-#: ../../mod/settings.php:938
-msgid "Normal Account Page"
-msgstr "Página de conta normal"
+#: ../../mod/uexport.php:77
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr "Exporta suas informações de conta e contatos. Use para fazer uma cópia de segurança de sua conta e/ou para movê-la para outro servidor."
 
-#: ../../mod/settings.php:939
-msgid "This account is a normal personal profile"
-msgstr "Essa conta é um perfil pessoal normal"
+#: ../../mod/uexport.php:78
+msgid "Export all"
+msgstr "Exportar tudo"
 
-#: ../../mod/settings.php:942
-msgid "Soapbox Page"
-msgstr "Página de vitrine"
+#: ../../mod/uexport.php:78
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
+msgstr "Exportar as informações de sua conta, contatos e todos os seus items como JSON. Pode ser um arquivo muito grande, e pode levar bastante tempo. Use isto para fazer uma cópia de segurança completa da sua conta (fotos não são exportadas)"
 
-#: ../../mod/settings.php:943
-msgid "Automatically approve all connection/friend requests as read-only fans"
-msgstr "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão somente de leitura"
+#: ../../mod/ping.php:238
+msgid "{0} wants to be your friend"
+msgstr "{0} deseja ser seu amigo"
 
-#: ../../mod/settings.php:946
-msgid "Community Forum/Celebrity Account"
-msgstr "Conta de fórum de comunidade/celebridade"
+#: ../../mod/ping.php:243
+msgid "{0} sent you a message"
+msgstr "{0} lhe enviou uma mensagem"
 
-#: ../../mod/settings.php:947
-msgid ""
-"Automatically approve all connection/friend requests as read-write fans"
-msgstr "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão de leitura e escrita"
+#: ../../mod/ping.php:248
+msgid "{0} requested registration"
+msgstr "{0} solicitou registro"
 
-#: ../../mod/settings.php:950
-msgid "Automatic Friend Page"
-msgstr "Página de amigo automático"
+#: ../../mod/ping.php:254
+#, php-format
+msgid "{0} commented %s's post"
+msgstr "{0} comentou a publicação de %s"
 
-#: ../../mod/settings.php:951
-msgid "Automatically approve all connection/friend requests as friends"
-msgstr "Aprovar automaticamente todas as solicitações de conexão/amizade como amigos"
+#: ../../mod/ping.php:259
+#, php-format
+msgid "{0} liked %s's post"
+msgstr "{0} gostou da publicação de %s"
 
-#: ../../mod/settings.php:954
-msgid "Private Forum [Experimental]"
-msgstr "Fórum privado [Experimental]"
+#: ../../mod/ping.php:264
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "{0} desgostou da publicação de %s"
 
-#: ../../mod/settings.php:955
-msgid "Private forum - approved members only"
-msgstr "Fórum privado - somente membros aprovados"
+#: ../../mod/ping.php:269
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0} agora é amigo de %s"
 
-#: ../../mod/settings.php:967
-msgid "OpenID:"
-msgstr "OpenID:"
+#: ../../mod/ping.php:274
+msgid "{0} posted"
+msgstr "{0} publicou"
 
-#: ../../mod/settings.php:967
-msgid "(Optional) Allow this OpenID to login to this account."
-msgstr "(Opcional) Permitir o uso deste OpenID para entrar nesta conta"
+#: ../../mod/ping.php:279
+#, php-format
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0} etiquetou a publicação de %s com #%s"
 
-#: ../../mod/settings.php:977
-msgid "Publish your default profile in your local site directory?"
-msgstr "Publicar o seu perfil padrão no diretório local do seu site?"
+#: ../../mod/ping.php:285
+msgid "{0} mentioned you in a post"
+msgstr "{0} mencionou você em uma publicação"
 
-#: ../../mod/settings.php:983
-msgid "Publish your default profile in the global social directory?"
-msgstr "Publicar o seu perfil padrão no diretório social global?"
+#: ../../mod/navigation.php:20 ../../include/nav.php:34
+msgid "Nothing new here"
+msgstr "Nada de novo aqui"
 
-#: ../../mod/settings.php:991
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr "Ocultar visualização da sua lista de contatos/amigos no seu perfil padrão? "
+#: ../../mod/navigation.php:24 ../../include/nav.php:38
+msgid "Clear notifications"
+msgstr "Descartar notificações"
 
-#: ../../mod/settings.php:995
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Ocultar os detalhes do seu perfil para pessoas desconhecidas?"
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "Não disponível."
 
-#: ../../mod/settings.php:1000
-msgid "Allow friends to post to your profile page?"
-msgstr "Permitir aos amigos publicarem na sua página de perfil?"
+#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:129
+#: ../../include/nav.php:128
+msgid "Community"
+msgstr "Comunidade"
 
-#: ../../mod/settings.php:1006
-msgid "Allow friends to tag your posts?"
-msgstr "Permitir aos amigos etiquetarem suas publicações?"
+#: ../../mod/filer.php:30 ../../include/conversation.php:1004
+#: ../../include/conversation.php:1022
+msgid "Save to Folder:"
+msgstr "Salvar na pasta:"
 
-#: ../../mod/settings.php:1012
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "Permitir que você seja sugerido como amigo em potencial para novos membros?"
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "-selecione-"
 
-#: ../../mod/settings.php:1018
-msgid "Permit unknown people to send you private mail?"
-msgstr "Permitir que pessoas desconhecidas lhe enviem mensagens privadas?"
+#: ../../mod/filer.php:31 ../../mod/notes.php:63 ../../include/text.php:954
+msgid "Save"
+msgstr "Salvar"
 
-#: ../../mod/settings.php:1026
-msgid "Profile is <strong>not published</strong>."
-msgstr "O perfil <strong>não está publicado</strong>."
+#: ../../mod/wall_attach.php:75
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Lamento, talvez seu envio seja maior do que as configurações do PHP permitem"
 
-#: ../../mod/settings.php:1029 ../../mod/profile_photo.php:248
-msgid "or"
-msgstr "ou"
+#: ../../mod/wall_attach.php:75
+msgid "Or - did you try to upload an empty file?"
+msgstr "Ou - você tentou enviar um arquivo vazio?"
 
-#: ../../mod/settings.php:1034
-msgid "Your Identity Address is"
-msgstr "O endereço da sua identidade é"
+#: ../../mod/wall_attach.php:81
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "O arquivo excedeu o tamanho limite de %d"
 
-#: ../../mod/settings.php:1045
-msgid "Automatically expire posts after this many days:"
-msgstr "Expirar automaticamente publicações após tantos dias:"
+#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
+msgid "File upload failed."
+msgstr "Não foi possível enviar o arquivo."
 
-#: ../../mod/settings.php:1045
-msgid "If empty, posts will not expire. Expired posts will be deleted"
-msgstr "Se deixado em branco, as publicações não irão expirar. Publicações expiradas serão excluídas."
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Identificador de perfil inválido."
 
-#: ../../mod/settings.php:1046
-msgid "Advanced expiration settings"
-msgstr "Configurações avançadas de expiração"
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr "Editor de visibilidade do perfil"
 
-#: ../../mod/settings.php:1047
-msgid "Advanced Expiration"
-msgstr "Expiração avançada"
+#: ../../mod/profperm.php:105 ../../mod/group.php:224
+msgid "Click on a contact to add or remove."
+msgstr "Clique em um contato para adicionar ou remover."
 
-#: ../../mod/settings.php:1048
-msgid "Expire posts:"
-msgstr "Expirar publicações:"
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Visível para"
 
-#: ../../mod/settings.php:1049
-msgid "Expire personal notes:"
-msgstr "Expirar notas pessoais:"
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Todos os contatos (com acesso a perfil seguro)"
 
-#: ../../mod/settings.php:1050
-msgid "Expire starred posts:"
-msgstr "Expirar publicações destacadas:"
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Você realmente deseja deletar essa sugestão?"
 
-#: ../../mod/settings.php:1051
-msgid "Expire photos:"
-msgstr "Expirar fotos:"
+#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:527
+#: ../../include/contact_widgets.php:34
+msgid "Friend Suggestions"
+msgstr "Sugestões de amigos"
 
-#: ../../mod/settings.php:1052
-msgid "Only expire posts by others:"
-msgstr "Expirar somente as publicações de outras pessoas:"
+#: ../../mod/suggest.php:72
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Não existe nenhuma sugestão disponível. Se este for um site novo, por favor tente novamente em 24 horas."
 
-#: ../../mod/settings.php:1078
-msgid "Account Settings"
-msgstr "Configurações da conta"
+#: ../../mod/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1445
+#: ../../include/contact_widgets.php:9
+msgid "Connect"
+msgstr "Conectar"
 
-#: ../../mod/settings.php:1086
-msgid "Password Settings"
-msgstr "Configurações da senha"
+#: ../../mod/suggest.php:90
+msgid "Ignore/Hide"
+msgstr "Ignorar/Ocultar"
 
-#: ../../mod/settings.php:1087
-msgid "New Password:"
-msgstr "Nova senha:"
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Acesso negado."
 
-#: ../../mod/settings.php:1088
-msgid "Confirm:"
-msgstr "Confirme:"
+#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s dá as boas vinda à %2$s"
 
-#: ../../mod/settings.php:1088
-msgid "Leave password fields blank unless changing"
-msgstr "Deixe os campos de senha em branco, a não ser que você queira alterá-la"
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Gerenciar identidades e/ou páginas"
 
-#: ../../mod/settings.php:1089
-msgid "Current Password:"
-msgstr "Senha Atual:"
+#: ../../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 "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\""
 
-#: ../../mod/settings.php:1089 ../../mod/settings.php:1090
-msgid "Your current password to confirm the changes"
-msgstr "Sua senha atual para confirmar as mudanças"
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Selecione uma identidade para gerenciar: "
 
-#: ../../mod/settings.php:1090
-msgid "Password:"
-msgstr "Senha:"
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr "Nenhuma página delegada potencial localizada."
 
-#: ../../mod/settings.php:1094
-msgid "Basic Settings"
-msgstr "Configurações básicas"
+#: ../../mod/delegate.php:124 ../../include/nav.php:167
+msgid "Delegate Page Management"
+msgstr "Delegar Administração de Página"
 
-#: ../../mod/settings.php:1095 ../../include/profile_advanced.php:15
-msgid "Full Name:"
-msgstr "Nome completo:"
+#: ../../mod/delegate.php:126
+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 "Delegados podem administrar todos os aspectos dessa página/conta exceto por configurações básicas da conta.\nFavor não delegar sua conta pessoal para ninguém que você não confie inteiramente."
 
-#: ../../mod/settings.php:1096
-msgid "Email Address:"
-msgstr "Endereço de e-mail:"
+#: ../../mod/delegate.php:127
+msgid "Existing Page Managers"
+msgstr "Administradores de Páginas Existentes"
 
-#: ../../mod/settings.php:1097
-msgid "Your Timezone:"
-msgstr "Seu fuso horário:"
+#: ../../mod/delegate.php:129
+msgid "Existing Page Delegates"
+msgstr "Delegados de Páginas Existentes"
 
-#: ../../mod/settings.php:1098
-msgid "Default Post Location:"
-msgstr "Localização padrão de suas publicações:"
+#: ../../mod/delegate.php:131
+msgid "Potential Delegates"
+msgstr "Delegados Potenciais"
 
-#: ../../mod/settings.php:1099
-msgid "Use Browser Location:"
-msgstr "Usar localizador do navegador:"
+#: ../../mod/delegate.php:134
+msgid "Add"
+msgstr "Adicionar"
 
-#: ../../mod/settings.php:1102
-msgid "Security and Privacy Settings"
-msgstr "Configurações de segurança e privacidade"
+#: ../../mod/delegate.php:135
+msgid "No entries."
+msgstr "Sem entradas."
 
-#: ../../mod/settings.php:1104
-msgid "Maximum Friend Requests/Day:"
-msgstr "Número máximo de requisições de amizade por dia:"
+#: ../../mod/viewcontacts.php:39
+msgid "No contacts."
+msgstr "Nenhum contato."
 
-#: ../../mod/settings.php:1104 ../../mod/settings.php:1134
-msgid "(to prevent spam abuse)"
-msgstr "(para prevenir abuso de spammers)"
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:874
+msgid "View Contacts"
+msgstr "Ver contatos"
 
-#: ../../mod/settings.php:1105
-msgid "Default Post Permissions"
-msgstr "Permissões padrão de publicação"
+#: ../../mod/notes.php:44 ../../boot.php:2010
+msgid "Personal Notes"
+msgstr "Notas pessoais"
 
-#: ../../mod/settings.php:1106
-msgid "(click to open/close)"
-msgstr "(clique para abrir/fechar)"
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Cutucar/Incitar"
 
-#: ../../mod/settings.php:1115 ../../mod/photos.php:1140
-#: ../../mod/photos.php:1506
-msgid "Show to Groups"
-msgstr "Mostre para Grupos"
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "Cutuca, incita ou faz outras coisas com alguém"
 
-#: ../../mod/settings.php:1116 ../../mod/photos.php:1141
-#: ../../mod/photos.php:1507
-msgid "Show to Contacts"
-msgstr "Mostre para Contatos"
+#: ../../mod/poke.php:194
+msgid "Recipient"
+msgstr "Destinatário"
 
-#: ../../mod/settings.php:1117
-msgid "Default Private Post"
-msgstr "Publicação Privada Padrão"
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Selecione o que você deseja fazer com o destinatário"
 
-#: ../../mod/settings.php:1118
-msgid "Default Public Post"
-msgstr "Publicação Pública Padrão"
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr "Fazer com que essa publicação se torne privada"
 
-#: ../../mod/settings.php:1122
-msgid "Default Permissions for New Posts"
-msgstr "Permissões Padrão para Publicações Novas"
+#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:525
+msgid "Global Directory"
+msgstr "Diretório global"
 
-#: ../../mod/settings.php:1134
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Número máximo de mensagens privadas de pessoas desconhecidas, por dia:"
+#: ../../mod/directory.php:57
+msgid "Find on this site"
+msgstr "Pesquisar neste site"
 
-#: ../../mod/settings.php:1137
-msgid "Notification Settings"
-msgstr "Configurações de notificação"
+#: ../../mod/directory.php:60
+msgid "Site Directory"
+msgstr "Diretório do site"
 
-#: ../../mod/settings.php:1138
-msgid "By default post a status message when:"
-msgstr "Por padrão, publicar uma mensagem de status quando:"
+#: ../../mod/directory.php:114
+msgid "Gender: "
+msgstr "Gênero: "
 
-#: ../../mod/settings.php:1139
-msgid "accepting a friend request"
-msgstr "aceitar uma requisição de amizade"
+#: ../../mod/directory.php:136 ../../boot.php:1515
+#: ../../include/profile_advanced.php:17
+msgid "Gender:"
+msgstr "Gênero:"
 
-#: ../../mod/settings.php:1140
-msgid "joining a forum/community"
-msgstr "associar-se a um fórum/comunidade"
+#: ../../mod/directory.php:138 ../../boot.php:1518
+#: ../../include/profile_advanced.php:37
+msgid "Status:"
+msgstr "Situação:"
 
-#: ../../mod/settings.php:1141
-msgid "making an <em>interesting</em> profile change"
-msgstr "fazer uma modificação <em>interessante</em> em seu perfil"
+#: ../../mod/directory.php:140 ../../boot.php:1520
+#: ../../include/profile_advanced.php:48
+msgid "Homepage:"
+msgstr "Página web:"
 
-#: ../../mod/settings.php:1142
-msgid "Send a notification email when:"
-msgstr "Enviar um e-mail de notificação sempre que:"
+#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
+msgid "About:"
+msgstr "Sobre:"
 
-#: ../../mod/settings.php:1143
-msgid "You receive an introduction"
-msgstr "Você recebeu uma apresentação"
+#: ../../mod/directory.php:187
+msgid "No entries (some entries may be hidden)."
+msgstr "Nenhuma entrada (algumas entradas podem estar ocultas)."
 
-#: ../../mod/settings.php:1144
-msgid "Your introductions are confirmed"
-msgstr "Suas apresentações forem confirmadas"
+#: ../../mod/localtime.php:12 ../../include/event.php:11
+#: ../../include/bb2diaspora.php:133
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ H:i"
 
-#: ../../mod/settings.php:1145
-msgid "Someone writes on your profile wall"
-msgstr "Alguém escrever no mural do seu perfil"
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Conversão de tempo"
 
-#: ../../mod/settings.php:1146
-msgid "Someone writes a followup comment"
-msgstr "Alguém comentar a sua mensagem"
+#: ../../mod/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica provê esse serviço para compartilhar eventos com outras redes e amigos em fuso-horários desconhecidos."
 
-#: ../../mod/settings.php:1147
-msgid "You receive a private message"
-msgstr "Você recebeu uma mensagem privada"
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "Hora UTC: %s"
 
-#: ../../mod/settings.php:1148
-msgid "You receive a friend suggestion"
-msgstr "Você recebe uma suggestão de amigo"
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Fuso horário atual: %s"
 
-#: ../../mod/settings.php:1149
-msgid "You are tagged in a post"
-msgstr "Você foi etiquetado em uma publicação"
+#: ../../mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Horário local convertido: %s"
 
-#: ../../mod/settings.php:1150
-msgid "You are poked/prodded/etc. in a post"
-msgstr "Você está cutucado/incitado/etc. em uma publicação"
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Por favor, selecione seu fuso horário:"
 
-#: ../../mod/settings.php:1153
-msgid "Advanced Account/Page Type Settings"
-msgstr "Conta avançada/Configurações do tipo de página"
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Publicado com sucesso."
 
-#: ../../mod/settings.php:1154
-msgid "Change the behaviour of this account for special situations"
-msgstr "Modificar o comportamento desta conta em situações especiais"
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "A imagem foi enviada, mas não foi possível cortá-la."
 
-#: ../../mod/settings.php:1157
-msgid "Relocate"
-msgstr "Relocação"
+#: ../../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 "Não foi possível reduzir o tamanho da imagem [%s]."
 
-#: ../../mod/settings.php:1158
+#: ../../mod/profile_photo.php:118
 msgid ""
-"If you have moved this profile from another server, and some of your "
-"contacts don't receive your updates, try pushing this button."
-msgstr "Se você moveu esse perfil de outro servidor e algum dos seus contatos não recebe atualizações, pressione esse botão."
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Recarregue a página pressionando a tecla Shift ou limpe o cache do navegador caso a nova foto não apareça imediatamente"
 
-#: ../../mod/settings.php:1159
-msgid "Resend relocate message to contacts"
-msgstr "Reenviar mensagem de relocação para os contatos"
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Não foi possível processar a imagem"
 
-#: ../../mod/profiles.php:37
-msgid "Profile deleted."
-msgstr "O perfil foi excluído."
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Enviar arquivo:"
 
-#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
-msgid "Profile-"
-msgstr "Perfil-"
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Selecione um perfil:"
 
-#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
-msgid "New profile created."
-msgstr "O novo perfil foi criado."
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Enviar"
 
-#: ../../mod/profiles.php:95
-msgid "Profile unavailable to clone."
-msgstr "O perfil não está disponível para clonagem."
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "pule esta etapa"
 
-#: ../../mod/profiles.php:170
-msgid "Profile Name is required."
-msgstr "É necessário informar o nome do perfil."
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "selecione uma foto de um álbum de fotos"
 
-#: ../../mod/profiles.php:317
-msgid "Marital Status"
-msgstr "Situação amorosa"
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "Cortar a imagem"
 
-#: ../../mod/profiles.php:321
-msgid "Romantic Partner"
-msgstr "Parceiro romântico"
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Por favor, ajuste o corte da imagem para a melhor visualização."
 
-#: ../../mod/profiles.php:325
-msgid "Likes"
-msgstr "Gosta de"
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Encerrar a edição"
 
-#: ../../mod/profiles.php:329
-msgid "Dislikes"
-msgstr "Não gosta de"
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "A imagem foi enviada com sucesso."
 
-#: ../../mod/profiles.php:333
-msgid "Work/Employment"
-msgstr "Trabalho/emprego"
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
+msgstr "Servidor de Comunicações Friendica - Configuração"
 
-#: ../../mod/profiles.php:336
-msgid "Religion"
-msgstr "Religião"
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr "Não foi possível conectar ao banco de dados."
 
-#: ../../mod/profiles.php:340
-msgid "Political Views"
-msgstr "Posicionamento político"
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "Não foi possível criar tabela."
 
-#: ../../mod/profiles.php:344
-msgid "Gender"
-msgstr "Gênero"
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "O banco de dados do seu site Friendica foi instalado."
 
-#: ../../mod/profiles.php:348
-msgid "Sexual Preference"
-msgstr "Preferência sexual"
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Você provavelmente precisará importar o arquivo \"database.sql\" manualmente, usando o phpmyadmin ou o mysql."
 
-#: ../../mod/profiles.php:352
-msgid "Homepage"
-msgstr "Página Principal"
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:521
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Por favor, dê uma olhada no arquivo \"INSTALL.TXT\"."
 
-#: ../../mod/profiles.php:356
-msgid "Interests"
-msgstr "Interesses"
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "Checagem do sistema"
 
-#: ../../mod/profiles.php:360
-msgid "Address"
-msgstr "Endereço"
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "Checar novamente"
 
-#: ../../mod/profiles.php:367
-msgid "Location"
-msgstr "Localização"
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Conexão de banco de dados"
 
-#: ../../mod/profiles.php:450
-msgid "Profile updated."
-msgstr "O perfil foi atualizado."
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "À fim de instalar o Friendica, você precisa saber como se conectar ao seu banco de dados."
 
-#: ../../mod/profiles.php:521
-msgid " and "
-msgstr " e "
+#: ../../mod/install.php:229
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a essas configurações."
 
-#: ../../mod/profiles.php:529
-msgid "public profile"
-msgstr "perfil público"
+#: ../../mod/install.php:230
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "O banco de dados que você especificou abaixo já deve existir. Caso contrário, por favor crie-o antes de continuar."
 
-#: ../../mod/profiles.php:532
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s mudou %2$s para &ldquo;%3$s&rdquo;"
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Nome do servidor de banco de dados"
 
-#: ../../mod/profiles.php:533
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " - Visite %2$s de %1$s"
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Nome do usuário do banco de dados"
 
-#: ../../mod/profiles.php:536
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s foi atualizado %2$s, mudando %3$s."
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Senha do usuário do banco de dados"
 
-#: ../../mod/profiles.php:609
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Ocultar sua lista de contatos/amigos dos visitantes no seu perfil?"
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Nome do banco de dados"
 
-#: ../../mod/profiles.php:629
-msgid "Edit Profile Details"
-msgstr "Editar os detalhes do perfil"
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "Endereço de email do administrador do site"
 
-#: ../../mod/profiles.php:631
-msgid "Change Profile Photo"
-msgstr "Mudar Foto do Perfil"
+#: ../../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 "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web."
 
-#: ../../mod/profiles.php:632
-msgid "View this profile"
-msgstr "Ver este perfil"
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
+msgstr "Por favor, selecione o fuso horário padrão para o seu site"
 
-#: ../../mod/profiles.php:633
-msgid "Create a new profile using these settings"
-msgstr "Criar um novo perfil usando estas configurações"
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Configurações do site"
 
-#: ../../mod/profiles.php:634
-msgid "Clone this profile"
-msgstr "Clonar este perfil"
+#: ../../mod/install.php:321
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu servidor web."
 
-#: ../../mod/profiles.php:635
-msgid "Delete this profile"
-msgstr "Excluir este perfil"
+#: ../../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 "Caso você não tenha uma versão de linha de comando do PHP instalado no seu servidor, você não será capaz de executar a captação em segundo plano. Dê uma olhada em <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
 
-#: ../../mod/profiles.php:636
-msgid "Profile Name:"
-msgstr "Nome do perfil:"
+#: ../../mod/install.php:326
+msgid "PHP executable path"
+msgstr "Caminho para o executável do PhP"
 
-#: ../../mod/profiles.php:637
-msgid "Your Full Name:"
-msgstr "Seu nome completo:"
+#: ../../mod/install.php:326
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação."
 
-#: ../../mod/profiles.php:638
-msgid "Title/Description:"
-msgstr "Título/Descrição:"
+#: ../../mod/install.php:331
+msgid "Command line PHP"
+msgstr "PHP em linha de comando"
 
-#: ../../mod/profiles.php:639
-msgid "Your Gender:"
-msgstr "Seu gênero:"
+#: ../../mod/install.php:340
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "O executável do PHP não é o binário do php cli (could be cgi-fcgi version)"
 
-#: ../../mod/profiles.php:640
-#, php-format
-msgid "Birthday (%s):"
-msgstr "Aniversário (%s):"
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
+msgstr "Encontrado PHP versão:"
 
-#: ../../mod/profiles.php:641
-msgid "Street Address:"
-msgstr "Endereço:"
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
+msgstr "Binário cli do PHP"
 
-#: ../../mod/profiles.php:642
-msgid "Locality/City:"
-msgstr "Localidade/Cidade:"
+#: ../../mod/install.php:354
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema."
 
-#: ../../mod/profiles.php:643
-msgid "Postal/Zip Code:"
-msgstr "CEP:"
+#: ../../mod/install.php:355
+msgid "This is required for message delivery to work."
+msgstr "Isto é necessário para o funcionamento do envio de mensagens."
 
-#: ../../mod/profiles.php:644
-msgid "Country:"
-msgstr "País:"
+#: ../../mod/install.php:357
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../mod/profiles.php:645
-msgid "Region/State:"
-msgstr "Região/Estado:"
+#: ../../mod/install.php:378
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia"
 
-#: ../../mod/profiles.php:646
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Situação amorosa:"
+#: ../../mod/install.php:379
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\"."
 
-#: ../../mod/profiles.php:647
-msgid "Who: (if applicable)"
-msgstr "Quem: (se pertinente)"
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
+msgstr "Gerar chaves de encriptação"
 
-#: ../../mod/profiles.php:648
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com"
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
+msgstr "Módulo PHP libCurl"
 
-#: ../../mod/profiles.php:649
-msgid "Since [date]:"
-msgstr "Desde [data]:"
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr "Módulo PHP GD graphics"
 
-#: ../../mod/profiles.php:650 ../../include/profile_advanced.php:46
-msgid "Sexual Preference:"
-msgstr "Preferência sexual:"
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr "Módulo PHP OpenSSL"
 
-#: ../../mod/profiles.php:651
-msgid "Homepage URL:"
-msgstr "Endereço do site web:"
+#: ../../mod/install.php:391
+msgid "mysqli PHP module"
+msgstr "Módulo PHP mysqli"
 
-#: ../../mod/profiles.php:652 ../../include/profile_advanced.php:50
-msgid "Hometown:"
-msgstr "Cidade:"
+#: ../../mod/install.php:392
+msgid "mb_string PHP module"
+msgstr "Módulo PHP mb_string "
 
-#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:54
-msgid "Political Views:"
-msgstr "Posição política:"
+#: ../../mod/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
+msgstr "Módulo mod_rewrite do Apache"
 
-#: ../../mod/profiles.php:654
-msgid "Religious Views:"
-msgstr "Orientação religiosa:"
+#: ../../mod/install.php:397
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado."
 
-#: ../../mod/profiles.php:655
-msgid "Public Keywords:"
-msgstr "Palavras-chave públicas:"
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Erro: o módulo libCURL do PHP é necessário, mas não está instalado."
 
-#: ../../mod/profiles.php:656
-msgid "Private Keywords:"
-msgstr "Palavras-chave privadas:"
+#: ../../mod/install.php:409
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado."
 
-#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:62
-msgid "Likes:"
-msgstr "Gosta de:"
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Erro: o módulo openssl do PHP é necessário, mas não está instalado."
 
-#: ../../mod/profiles.php:658 ../../include/profile_advanced.php:64
-msgid "Dislikes:"
-msgstr "Não gosta de:"
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Erro: o módulo mysqli do PHP é necessário, mas não está instalado."
 
-#: ../../mod/profiles.php:659
-msgid "Example: fishing photography software"
-msgstr "Exemplo: pesca fotografia software"
+#: ../../mod/install.php:421
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Erro: o módulo mb_string PHP é necessário, mas não está instalado."
 
-#: ../../mod/profiles.php:660
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Usado para sugerir amigos em potencial, pode ser visto pelos outros)"
+#: ../../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 "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo."
 
-#: ../../mod/profiles.php:661
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Usado na pesquisa de perfis, nunca é exibido para os outros)"
+#: ../../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 "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta."
 
-#: ../../mod/profiles.php:662
-msgid "Tell us about yourself..."
-msgstr "Fale um pouco sobre você..."
+#: ../../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 "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome. htconfig.php, na pasta raiz da instalação do seu Friendica."
 
-#: ../../mod/profiles.php:663
-msgid "Hobbies/Interests"
-msgstr "Passatempos/Interesses"
+#: ../../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 "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"INSTALL.TXT\" para instruções."
 
-#: ../../mod/profiles.php:664
-msgid "Contact information and Social Networks"
-msgstr "Informações de contato e redes sociais"
+#: ../../mod/install.php:444
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php tem permissão de escrita"
 
-#: ../../mod/profiles.php:665
-msgid "Musical interests"
-msgstr "Preferências musicais"
+#: ../../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 "Friendica usa o engine de template Smarty3 para renderizar suas web views. Smarty3 compila templates para PHP para acelerar a renderização."
 
-#: ../../mod/profiles.php:666
-msgid "Books, literature"
-msgstr "Livros, literatura"
+#: ../../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 "Para guardar os templates compilados, o servidor web necessita de permissão de escrita no diretório view/smarty3/ no diretório raíz do Friendica."
 
-#: ../../mod/profiles.php:667
-msgid "Television"
-msgstr "Televisão"
+#: ../../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 "Favor se certificar que o usuário sob o qual o servidor web roda (ex: www-data) tenha permissão de escrita nesse diretório."
 
-#: ../../mod/profiles.php:668
-msgid "Film/dance/culture/entertainment"
-msgstr "Filme/dança/cultura/entretenimento"
+#: ../../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 "Nota: como uma medida de segurança, você deve fornecer ao servidor web permissão de escrita em view/smarty3/ somente--não aos arquivos de template (.tpl) que ele contém."
 
-#: ../../mod/profiles.php:669
-msgid "Love/romance"
-msgstr "Amor/romance"
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 tem escrita permitida"
 
-#: ../../mod/profiles.php:670
-msgid "Work/employment"
-msgstr "Trabalho/emprego"
+#: ../../mod/install.php:472
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "A reescrita de URLs definida no .htaccess não está funcionando. Por favor, verifique as configurações do seu servidor."
 
-#: ../../mod/profiles.php:671
-msgid "School/education"
-msgstr "Escola/educação"
+#: ../../mod/install.php:474
+msgid "Url rewrite is working"
+msgstr "A reescrita de URLs está funcionando"
 
-#: ../../mod/profiles.php:676
+#: ../../mod/install.php:484
 msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "Este é o seu perfil <strong>público</strong>.<br />Ele <strong>pode</strong> estar visível para qualquer um que acesse a Internet."
+"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 "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web."
 
-#: ../../mod/profiles.php:725
-msgid "Edit/Manage Profiles"
-msgstr "Editar/Gerenciar perfis"
+#: ../../mod/install.php:508
+msgid "Errors encountered creating database tables."
+msgstr "Foram encontrados erros durante a criação das tabelas do banco de dados."
+
+#: ../../mod/install.php:519
+msgid "<h1>What next</h1>"
+msgstr "<h1>A seguir</h1>"
+
+#: ../../mod/install.php:520
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o captador."
 
 #: ../../mod/group.php:29
 msgid "Group created."
@@ -4475,2015 +5023,1723 @@ msgstr "Editor de grupo"
 msgid "Members"
 msgstr "Membros"
 
-#: ../../mod/group.php:224 ../../mod/profperm.php:105
-msgid "Click on a contact to add or remove."
-msgstr "Clique em um contato para adicionar ou remover."
-
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Texto fonte (bbcode):"
-
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Texto fonte (Diaspora) a converter para BBcode:"
-
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr "Entrada fonte:"
-
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (HTML puro):"
-
-#: ../../mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html: "
-
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
-
-#: ../../mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
-
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
-
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
-
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
-
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Fonte de entrada (formato Diaspora):"
-
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
-
-#: ../../mod/community.php:23
-msgid "Not available."
-msgstr "Não disponível."
-
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "O contato foi adicionado"
-
-#: ../../mod/notify.php:61 ../../mod/notifications.php:332
-msgid "No more system notifications."
-msgstr "Não fazer notificações de sistema."
-
-#: ../../mod/notify.php:65 ../../mod/notifications.php:336
-msgid "System Notifications"
-msgstr "Notificações de sistema"
-
-#: ../../mod/message.php:9 ../../include/nav.php:159
-msgid "New Message"
-msgstr "Nova mensagem"
-
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Não foi possível localizar informação do contato."
-
-#: ../../mod/message.php:182 ../../mod/notifications.php:103
-#: ../../include/nav.php:156
-msgid "Messages"
-msgstr "Mensagens"
-
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
-msgstr "Você realmente deseja deletar essa mensagem?"
-
-#: ../../mod/message.php:227
-msgid "Message deleted."
-msgstr "A mensagem foi excluída."
-
-#: ../../mod/message.php:258
-msgid "Conversation removed."
-msgstr "A conversa foi removida."
-
-#: ../../mod/message.php:371
-msgid "No messages."
-msgstr "Nenhuma mensagem."
-
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Remetente desconhecido - %s"
-
-#: ../../mod/message.php:381
-#, php-format
-msgid "You and %s"
-msgstr "Você e %s"
-
-#: ../../mod/message.php:384
-#, php-format
-msgid "%s and You"
-msgstr "%s e você"
-
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
-msgstr "Excluir conversa"
-
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
-msgstr "D, d M Y - g:i A"
-
-#: ../../mod/message.php:411
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d mensagem"
-msgstr[1] "%d mensagens"
-
-#: ../../mod/message.php:450
-msgid "Message not available."
-msgstr "A mensagem não está disponível."
-
-#: ../../mod/message.php:520
-msgid "Delete message"
-msgstr "Excluir a mensagem"
-
-#: ../../mod/message.php:548
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Não foi encontrada nenhuma comunicação segura. Você <strong>pode</strong> ser capaz de responder a partir da página de perfil do remetente."
-
-#: ../../mod/message.php:552
-msgid "Send Reply"
-msgstr "Enviar resposta"
-
-#: ../../mod/like.php:170 ../../include/conversation.php:140
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s não gosta de %3$s de %2$s"
-
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Publicado com sucesso."
-
-#: ../../mod/localtime.php:12 ../../include/event.php:11
-#: ../../include/bb2diaspora.php:393
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ H:i"
-
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Conversão de tempo"
-
-#: ../../mod/localtime.php:26
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica provê esse serviço para compartilhar eventos com outras redes e amigos em fuso-horários desconhecidos."
-
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "Hora UTC: %s"
-
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Fuso horário atual: %s"
-
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Horário local convertido: %s"
-
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Por favor, selecione seu fuso horário:"
-
-#: ../../mod/filer.php:30 ../../include/conversation.php:1001
-#: ../../include/conversation.php:1019
-msgid "Save to Folder:"
-msgstr "Salvar na pasta:"
-
-#: ../../mod/filer.php:30
-msgid "- select -"
-msgstr "-selecione-"
-
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Identificador de perfil inválido."
-
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "Editor de visibilidade do perfil"
-
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Visível para"
-
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Todos os contatos (com acesso a perfil seguro)"
-
-#: ../../mod/viewcontacts.php:39
-msgid "No contacts."
-msgstr "Nenhum contato."
-
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:850
-msgid "View Contacts"
-msgstr "Ver contatos"
-
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Pesquisar pessoas"
-
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "Nenhuma correspondência"
-
-#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795
-msgid "Upload New Photos"
-msgstr "Enviar novas fotos"
-
-#: ../../mod/photos.php:143
-msgid "Contact information unavailable"
-msgstr "A informação de contato não está disponível"
-
-#: ../../mod/photos.php:164
-msgid "Album not found."
-msgstr "O álbum não foi encontrado."
-
-#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200
-msgid "Delete Album"
-msgstr "Excluir o álbum"
-
-#: ../../mod/photos.php:197
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?"
-
-#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502
-msgid "Delete Photo"
-msgstr "Excluir a foto"
-
-#: ../../mod/photos.php:285
-msgid "Do you really want to delete this photo?"
-msgstr "Você realmente deseja deletar essa foto?"
-
-#: ../../mod/photos.php:656
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s foi marcado em %2$s por %3$s"
-
-#: ../../mod/photos.php:656
-msgid "a photo"
-msgstr "uma foto"
-
-#: ../../mod/photos.php:761
-msgid "Image exceeds size limit of "
-msgstr "A imagem excede o tamanho máximo de "
-
-#: ../../mod/photos.php:769
-msgid "Image file is empty."
-msgstr "O arquivo de imagem está vazio."
-
-#: ../../mod/photos.php:801 ../../mod/wall_upload.php:112
-#: ../../mod/profile_photo.php:153
-msgid "Unable to process image."
-msgstr "Não foi possível processar a imagem."
+#: ../../mod/content.php:119 ../../mod/network.php:514
+msgid "No such group"
+msgstr "Este grupo não existe"
 
-#: ../../mod/photos.php:828 ../../mod/wall_upload.php:138
-#: ../../mod/profile_photo.php:301
-msgid "Image upload failed."
-msgstr "Não foi possível enviar a imagem."
+#: ../../mod/content.php:130 ../../mod/network.php:531
+msgid "Group is empty"
+msgstr "O grupo está vazio"
 
-#: ../../mod/photos.php:924
-msgid "No photos selected"
-msgstr "Não foi selecionada nenhuma foto"
+#: ../../mod/content.php:134 ../../mod/network.php:538
+msgid "Group: "
+msgstr "Grupo: "
 
-#: ../../mod/photos.php:1025 ../../mod/videos.php:226
-msgid "Access to this item is restricted."
-msgstr "O acesso a este item é restrito."
+#: ../../mod/content.php:496 ../../include/conversation.php:688
+msgid "View in context"
+msgstr "Ver no contexto"
+
+#: ../../mod/regmod.php:63
+msgid "Account approved."
+msgstr "A conta foi aprovada."
 
-#: ../../mod/photos.php:1088
+#: ../../mod/regmod.php:100
 #, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "Você está usando %1$.2f Mbytes dos %2$.2f Mbytes liberados para armazenamento de fotos."
+msgid "Registration revoked for %s"
+msgstr "O registro de %s foi revogado"
 
-#: ../../mod/photos.php:1123
-msgid "Upload Photos"
-msgstr "Enviar fotos"
+#: ../../mod/regmod.php:112
+msgid "Please login."
+msgstr "Por favor, autentique-se."
 
-#: ../../mod/photos.php:1127 ../../mod/photos.php:1195
-msgid "New album name: "
-msgstr "Nome do novo álbum: "
+#: ../../mod/match.php:12
+msgid "Profile Match"
+msgstr "Correspondência de perfil"
 
-#: ../../mod/photos.php:1128
-msgid "or existing album name: "
-msgstr "ou o nome de um álbum já existente: "
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Não foi encontrada nenhuma palavra-chave associada a você. Por favor, adicione algumas ao seu perfil padrão."
 
-#: ../../mod/photos.php:1129
-msgid "Do not show a status post for this upload"
-msgstr "Não exiba uma publicação de status para este envio"
+#: ../../mod/match.php:57
+msgid "is interested in:"
+msgstr "se interessa por:"
 
-#: ../../mod/photos.php:1131 ../../mod/photos.php:1497
-msgid "Permissions"
-msgstr "Permissões"
+#: ../../mod/item.php:110
+msgid "Unable to locate original post."
+msgstr "Não foi possível localizar a publicação original."
 
-#: ../../mod/photos.php:1142
-msgid "Private Photo"
-msgstr "Foto Privada"
+#: ../../mod/item.php:319
+msgid "Empty post discarded."
+msgstr "A publicação em branco foi descartada."
 
-#: ../../mod/photos.php:1143
-msgid "Public Photo"
-msgstr "Foto Pública"
+#: ../../mod/item.php:891
+msgid "System error. Post not saved."
+msgstr "Erro no sistema. A publicação não foi salva."
 
-#: ../../mod/photos.php:1210
-msgid "Edit Album"
-msgstr "Editar o álbum"
+#: ../../mod/item.php:917
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Essa mensagem foi enviada a você por %s, um membro da rede social Friendica."
 
-#: ../../mod/photos.php:1216
-msgid "Show Newest First"
-msgstr "Exibir as mais recentes primeiro"
+#: ../../mod/item.php:919
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Você pode visitá-lo em %s"
 
-#: ../../mod/photos.php:1218
-msgid "Show Oldest First"
-msgstr "Exibir as mais antigas primeiro"
+#: ../../mod/item.php:920
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Por favor, entre em contato com o remetente respondendo a esta publicação, caso você não queira mais receber estas mensagens."
 
-#: ../../mod/photos.php:1251 ../../mod/photos.php:1778
-msgid "View Photo"
-msgstr "Ver a foto"
+#: ../../mod/item.php:924
+#, php-format
+msgid "%s posted an update."
+msgstr "%s publicou uma atualização."
 
-#: ../../mod/photos.php:1286
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Permissão negada. O acesso a este item pode estar restrito."
+#: ../../mod/mood.php:62 ../../include/conversation.php:227
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s atualmente está %2$s"
 
-#: ../../mod/photos.php:1288
-msgid "Photo not available"
-msgstr "A foto não está disponível"
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "Humor"
 
-#: ../../mod/photos.php:1344
-msgid "View photo"
-msgstr "Ver a imagem"
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "Defina o seu humor e conte aos seus amigos"
 
-#: ../../mod/photos.php:1344
-msgid "Edit photo"
-msgstr "Editar a foto"
+#: ../../mod/network.php:136
+msgid "Search Results For:"
+msgstr "Resultados de Busca Por:"
 
-#: ../../mod/photos.php:1345
-msgid "Use as profile photo"
-msgstr "Usar como uma foto de perfil"
+#: ../../mod/network.php:189 ../../include/group.php:275
+msgid "add"
+msgstr "adicionar"
 
-#: ../../mod/photos.php:1370
-msgid "View Full Size"
-msgstr "Ver no tamanho real"
+#: ../../mod/network.php:350
+msgid "Commented Order"
+msgstr "Ordem dos comentários"
 
-#: ../../mod/photos.php:1444
-msgid "Tags: "
-msgstr "Etiquetas: "
+#: ../../mod/network.php:353
+msgid "Sort by Comment Date"
+msgstr "Ordenar pela data do comentário"
 
-#: ../../mod/photos.php:1447
-msgid "[Remove any tag]"
-msgstr "[Remover qualquer etiqueta]"
+#: ../../mod/network.php:356
+msgid "Posted Order"
+msgstr "Ordem das publicações"
 
-#: ../../mod/photos.php:1487
-msgid "Rotate CW (right)"
-msgstr "Rotacionar para direita"
+#: ../../mod/network.php:359
+msgid "Sort by Post Date"
+msgstr "Ordenar pela data de publicação"
 
-#: ../../mod/photos.php:1488
-msgid "Rotate CCW (left)"
-msgstr "Rotacionar para esquerda"
+#: ../../mod/network.php:368
+msgid "Posts that mention or involve you"
+msgstr "Publicações que mencionem ou envolvam você"
 
-#: ../../mod/photos.php:1490
-msgid "New album name"
-msgstr "Novo nome para o álbum"
+#: ../../mod/network.php:374
+msgid "New"
+msgstr "Nova"
 
-#: ../../mod/photos.php:1493
-msgid "Caption"
-msgstr "Legenda"
+#: ../../mod/network.php:377
+msgid "Activity Stream - by date"
+msgstr "Fluxo de atividades - por data"
 
-#: ../../mod/photos.php:1495
-msgid "Add a Tag"
-msgstr "Adicionar uma etiqueta"
+#: ../../mod/network.php:383
+msgid "Shared Links"
+msgstr "Links compartilhados"
 
-#: ../../mod/photos.php:1499
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento"
+#: ../../mod/network.php:386
+msgid "Interesting Links"
+msgstr "Links interessantes"
 
-#: ../../mod/photos.php:1508
-msgid "Private photo"
-msgstr "Foto privada"
+#: ../../mod/network.php:392
+msgid "Starred"
+msgstr "Destacada"
 
-#: ../../mod/photos.php:1509
-msgid "Public photo"
-msgstr "Foto pública"
+#: ../../mod/network.php:395
+msgid "Favourite Posts"
+msgstr "Publicações favoritas"
 
-#: ../../mod/photos.php:1531 ../../include/conversation.php:1080
-msgid "Share"
-msgstr "Compartilhar"
+#: ../../mod/network.php:457
+#, 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] "Aviso: Este grupo contém %s membro de uma rede insegura."
+msgstr[1] "Aviso: Este grupo contém %s membros de uma rede insegura."
 
-#: ../../mod/photos.php:1784 ../../mod/videos.php:308
-msgid "View Album"
-msgstr "Ver álbum"
+#: ../../mod/network.php:460
+msgid "Private messages to this group are at risk of public disclosure."
+msgstr "Mensagens privadas para este grupo correm o risco de sofrerem divulgação pública."
 
-#: ../../mod/photos.php:1793
-msgid "Recent Photos"
-msgstr "Fotos recentes"
+#: ../../mod/network.php:548
+msgid "Contact: "
+msgstr "Contato: "
 
-#: ../../mod/wall_attach.php:69
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "O arquivo excedeu o tamanho limite de %d"
+#: ../../mod/network.php:550
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação pública."
 
-#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
-msgid "File upload failed."
-msgstr "Não foi possível enviar o arquivo."
+#: ../../mod/network.php:555
+msgid "Invalid contact."
+msgstr "Contato inválido."
 
-#: ../../mod/videos.php:125
-msgid "No videos selected"
-msgstr "Nenhum vídeo selecionado"
+#: ../../mod/crepair.php:104
+msgid "Contact settings applied."
+msgstr "As configurações do contato foram aplicadas."
 
-#: ../../mod/videos.php:301 ../../include/text.php:1376
-msgid "View Video"
-msgstr "Ver Vídeo"
+#: ../../mod/crepair.php:106
+msgid "Contact update failed."
+msgstr "Não foi possível atualizar o contato."
 
-#: ../../mod/videos.php:317
-msgid "Recent Videos"
-msgstr "Vídeos Recentes"
+#: ../../mod/crepair.php:137
+msgid "Repair Contact Settings"
+msgstr "Corrigir configurações do contato"
 
-#: ../../mod/videos.php:319
-msgid "Upload New Videos"
-msgstr "Envie Novos Vídeos"
+#: ../../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>ATENÇÃO: Isso é muito avançado</strong>, se você digitar informações incorretas, suas comunicações com esse contato pode parar de funcionar."
 
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Cutucar/Incitar"
+#: ../../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 "Por favor, use o botão 'Voltar' do seu navegador <strong>agora</strong>, caso você não tenha certeza do que está fazendo."
 
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "Cutuca, incita ou faz outras coisas com alguém"
+#: ../../mod/crepair.php:146
+msgid "Return to contact editor"
+msgstr "Voltar ao editor de contatos"
 
-#: ../../mod/poke.php:194
-msgid "Recipient"
-msgstr "Destinatário"
+#: ../../mod/crepair.php:151
+msgid "Account Nickname"
+msgstr "Identificação da conta"
 
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Selecione o que você deseja fazer com o destinatário"
+#: ../../mod/crepair.php:152
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname - sobrescreve Nome/Identificação"
 
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr "Fazer com que essa publicação se torne privada"
+#: ../../mod/crepair.php:153
+msgid "Account URL"
+msgstr "URL da conta"
 
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s está seguindo %2$s's %3$s"
+#: ../../mod/crepair.php:154
+msgid "Friend Request URL"
+msgstr "URL da requisição de amizade"
 
-#: ../../mod/uexport.php:72
-msgid "Export account"
-msgstr "Exportar conta"
+#: ../../mod/crepair.php:155
+msgid "Friend Confirm URL"
+msgstr "URL da confirmação de amizade"
 
-#: ../../mod/uexport.php:72
-msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
-msgstr "Exporta suas informações de conta e contatos. Use para fazer uma cópia de segurança de sua conta e/ou para movê-la para outro servidor."
+#: ../../mod/crepair.php:156
+msgid "Notification Endpoint URL"
+msgstr "URL do ponto final da notificação"
+
+#: ../../mod/crepair.php:157
+msgid "Poll/Feed URL"
+msgstr "URL do captador/fonte de notícias"
+
+#: ../../mod/crepair.php:158
+msgid "New photo from this URL"
+msgstr "Nova imagem desta URL"
 
-#: ../../mod/uexport.php:73
-msgid "Export all"
-msgstr "Exportar tudo"
+#: ../../mod/crepair.php:159
+msgid "Remote Self"
+msgstr "Auto remoto"
 
-#: ../../mod/uexport.php:73
+#: ../../mod/crepair.php:161
+msgid "Mirror postings from this contact"
+msgstr "Espelhar publicações deste contato"
+
+#: ../../mod/crepair.php:161
 msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
-msgstr "Exportar as informações de sua conta, contatos e todos os seus items como JSON. Pode ser um arquivo muito grande, e pode levar bastante tempo. Use isto para fazer uma cópia de segurança completa da sua conta (fotos não são exportadas)"
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr "Marcar este contato como auto remoto fará com que o friendica republique novas entradas deste usuário."
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr "Amigos em Comum"
+#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
+#: ../../include/nav.php:145
+msgid "Your posts and conversations"
+msgstr "Suas publicações e conversas"
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
-msgstr "Nenhum contato em comum."
+#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
+msgid "Your profile page"
+msgstr "Sua página de perfil"
 
-#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "A imagem excede o limite de tamanho de %d"
+#: ../../view/theme/diabook/theme.php:125
+msgid "Your contacts"
+msgstr "Seus contatos"
 
-#: ../../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 "Fotos do mural"
+#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
+msgid "Your photos"
+msgstr "Suas fotos"
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "A imagem foi enviada, mas não foi possível cortá-la."
+#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79
+msgid "Your events"
+msgstr "Seus eventos"
 
-#: ../../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 "Não foi possível reduzir o tamanho da imagem [%s]."
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
+msgid "Personal notes"
+msgstr "Suas anotações pessoais"
 
-#: ../../mod/profile_photo.php:118
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Recarregue a página pressionando a tecla Shift ou limpe o cache do navegador caso a nova foto não apareça imediatamente"
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
+msgid "Your personal photos"
+msgstr "Suas fotos pessoais"
 
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Não foi possível processar a imagem"
+#: ../../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 "Páginas da Comunidade"
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Enviar arquivo:"
+#: ../../view/theme/diabook/theme.php:391
+#: ../../view/theme/diabook/theme.php:626
+#: ../../view/theme/diabook/config.php:160
+msgid "Community Profiles"
+msgstr "Profiles Comunitários"
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "Selecione um perfil:"
+#: ../../view/theme/diabook/theme.php:412
+#: ../../view/theme/diabook/theme.php:630
+#: ../../view/theme/diabook/config.php:164
+msgid "Last users"
+msgstr "Últimos usuários"
 
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
-msgstr "Enviar"
+#: ../../view/theme/diabook/theme.php:441
+#: ../../view/theme/diabook/theme.php:632
+#: ../../view/theme/diabook/config.php:166
+msgid "Last likes"
+msgstr "Últimas gostadas"
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "pule esta etapa"
+#: ../../view/theme/diabook/theme.php:463 ../../include/text.php:1953
+#: ../../include/conversation.php:118 ../../include/conversation.php:246
+msgid "event"
+msgstr "evento"
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "selecione uma foto de um álbum de fotos"
+#: ../../view/theme/diabook/theme.php:486
+#: ../../view/theme/diabook/theme.php:631
+#: ../../view/theme/diabook/config.php:165
+msgid "Last photos"
+msgstr "Últimas fotos"
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "Cortar a imagem"
+#: ../../view/theme/diabook/theme.php:523
+#: ../../view/theme/diabook/theme.php:629
+#: ../../view/theme/diabook/config.php:163
+msgid "Find Friends"
+msgstr "Encontrar amigos"
 
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Por favor, ajuste o corte da imagem para a melhor visualização."
+#: ../../view/theme/diabook/theme.php:524
+msgid "Local Directory"
+msgstr "Diretório Local"
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Encerrar a edição"
+#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35
+msgid "Similar Interests"
+msgstr "Interesses Parecidos"
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "A imagem foi enviada com sucesso."
+#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37
+msgid "Invite Friends"
+msgstr "Convidar amigos"
 
-#: ../../mod/apps.php:11
-msgid "Applications"
-msgstr "Aplicativos"
+#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/theme.php:625
+#: ../../view/theme/diabook/config.php:159
+msgid "Earth Layers"
+msgstr "Camadas da Terra"
 
-#: ../../mod/apps.php:14
-msgid "No installed applications."
-msgstr "Nenhum aplicativo instalado"
+#: ../../view/theme/diabook/theme.php:584
+msgid "Set zoomfactor for Earth Layers"
+msgstr "Configure o zoom para Camadas da Terra"
 
-#: ../../mod/navigation.php:20 ../../include/nav.php:34
-msgid "Nothing new here"
-msgstr "Nada de novo aqui"
+#: ../../view/theme/diabook/theme.php:585
+#: ../../view/theme/diabook/config.php:156
+msgid "Set longitude (X) for Earth Layers"
+msgstr "Configure longitude (X) para Camadas da Terra"
 
-#: ../../mod/navigation.php:24 ../../include/nav.php:38
-msgid "Clear notifications"
-msgstr "Descartar notificações"
+#: ../../view/theme/diabook/theme.php:586
+#: ../../view/theme/diabook/config.php:157
+msgid "Set latitude (Y) for Earth Layers"
+msgstr "Configure latitude (Y) para Camadas da Terra"
 
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr "Correspondência de perfil"
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:627
+#: ../../view/theme/diabook/config.php:161
+msgid "Help or @NewHere ?"
+msgstr "Ajuda ou @NewHere ?"
 
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Não foi encontrada nenhuma palavra-chave associada a você. Por favor, adicione algumas ao seu perfil padrão."
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:628
+#: ../../view/theme/diabook/config.php:162
+msgid "Connect Services"
+msgstr "Conectar serviços"
 
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr "se interessa por:"
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328
+msgid "don't show"
+msgstr "não exibir"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "A etiqueta foi removida"
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327
+msgid "show"
+msgstr "exibir"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Remover a etiqueta do item"
+#: ../../view/theme/diabook/theme.php:622
+msgid "Show/hide boxes at right-hand column:"
+msgstr "Mostre/esconda caixas na coluna à direita:"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Selecione uma etiqueta para remover: "
+#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:49
+#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
+#: ../../view/theme/cleanzero/config.php:82
+msgid "Theme settings"
+msgstr "Configurações do tema"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
-msgid "Remove"
-msgstr "Remover"
+#: ../../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 "Escolha o tamanho da fonte para publicações e comentários"
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
-msgstr "O título do evento e a hora de início são obrigatórios."
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/dispy/config.php:74
+msgid "Set line-height for posts and comments"
+msgstr "Escolha comprimento da linha para publicações e comentários"
 
-#: ../../mod/events.php:291
-msgid "l, F j"
-msgstr "l, F j"
+#: ../../view/theme/diabook/config.php:153
+msgid "Set resolution for middle column"
+msgstr "Escolha a resolução para a coluna do meio"
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "Editar o evento"
+#: ../../view/theme/diabook/config.php:154
+msgid "Set color scheme"
+msgstr "Configure o esquema de cores"
 
-#: ../../mod/events.php:335 ../../include/text.php:1606
-msgid "link to source"
-msgstr "exibir a origem"
+#: ../../view/theme/diabook/config.php:155
+msgid "Set zoomfactor for Earth Layer"
+msgstr "Configure o zoom para Camadas da Terra"
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "Criar um novo evento"
+#: ../../view/theme/vier/config.php:50
+msgid "Set style"
+msgstr "escolha estilo"
 
-#: ../../mod/events.php:372
-msgid "Previous"
-msgstr "Anterior"
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Configure o esquema de cores"
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "hora:minuto"
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Alinhamento"
 
-#: ../../mod/events.php:456
-msgid "Event details"
-msgstr "Detalhes do evento"
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Esquerda"
 
-#: ../../mod/events.php:457
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr "O formato é %s %s. O título e a data de início são obrigatórios."
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Centro"
+
+#: ../../view/theme/quattro/config.php:68
+#: ../../view/theme/cleanzero/config.php:86
+msgid "Color scheme"
+msgstr "Esquema de cores"
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
-msgstr "Início do evento:"
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "Tamanho da fonte para publicações"
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "Obrigatório"
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "Tamanho da fonte para campos texto"
 
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
-msgstr "A data/hora de término não é conhecida ou não é relevante"
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
+msgstr "Configure o nível de redimensionamento para imagens em publicações e comentários (largura e altura)"
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "Término do evento:"
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Configure a largura do tema"
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "Ajustar para o fuso horário do visualizador"
+#: ../../boot.php:692
+msgid "Delete this item?"
+msgstr "Excluir este item?"
 
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "Descrição:"
+#: ../../boot.php:695
+msgid "show fewer"
+msgstr "exibir menos"
 
-#: ../../mod/events.php:473
-msgid "Title:"
-msgstr "Título:"
+#: ../../boot.php:1023
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "Atualização %s falhou. Vide registro de erros (log)."
 
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "Compartilhar este evento"
+#: ../../boot.php:1025
+#, php-format
+msgid "Update Error at %s"
+msgstr "Erro de Atualização em %s"
 
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr "Nenhuma página delegada potencial localizada."
+#: ../../boot.php:1135
+msgid "Create a New Account"
+msgstr "Criar uma nova conta"
 
-#: ../../mod/delegate.php:121 ../../include/nav.php:165
-msgid "Delegate Page Management"
-msgstr "Delegar Administração de Página"
+#: ../../boot.php:1160 ../../include/nav.php:73
+msgid "Logout"
+msgstr "Sair"
 
-#: ../../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 "Delegados podem administrar todos os aspectos dessa página/conta exceto por configurações básicas da conta.\nFavor não delegar sua conta pessoal para ninguém que você não confie inteiramente."
+#: ../../boot.php:1161 ../../include/nav.php:91
+msgid "Login"
+msgstr "Entrar"
 
-#: ../../mod/delegate.php:124
-msgid "Existing Page Managers"
-msgstr "Administradores de Páginas Existentes"
+#: ../../boot.php:1163
+msgid "Nickname or Email address: "
+msgstr "Identificação ou endereço de e-mail: "
 
-#: ../../mod/delegate.php:126
-msgid "Existing Page Delegates"
-msgstr "Delegados de Páginas Existentes"
+#: ../../boot.php:1164
+msgid "Password: "
+msgstr "Senha: "
 
-#: ../../mod/delegate.php:128
-msgid "Potential Delegates"
-msgstr "Delegados Potenciais"
+#: ../../boot.php:1165
+msgid "Remember me"
+msgstr "Lembre-se de mim"
 
-#: ../../mod/delegate.php:131
-msgid "Add"
-msgstr "Adicionar"
+#: ../../boot.php:1168
+msgid "Or login using OpenID: "
+msgstr "Ou login usando OpendID:"
 
-#: ../../mod/delegate.php:132
-msgid "No entries."
-msgstr "Sem entradas."
+#: ../../boot.php:1174
+msgid "Forgot your password?"
+msgstr "Esqueceu a sua senha?"
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "Contatos que não são membros de um grupo"
+#: ../../boot.php:1177
+msgid "Website Terms of Service"
+msgstr "Termos de Serviço do Website"
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "Arquivos"
+#: ../../boot.php:1178
+msgid "terms of service"
+msgstr "termos de serviço"
 
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
-msgstr "Sistema em manutenção"
+#: ../../boot.php:1180
+msgid "Website Privacy Policy"
+msgstr "Política de Privacidade do Website"
 
-#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
-msgid "Remove My Account"
-msgstr "Remover minha conta"
+#: ../../boot.php:1181
+msgid "privacy policy"
+msgstr "política de privacidade"
 
-#: ../../mod/removeme.php:46
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la."
+#: ../../boot.php:1314
+msgid "Requested account is not available."
+msgstr "Conta solicitada não disponível"
 
-#: ../../mod/removeme.php:47
-msgid "Please enter your password for verification:"
-msgstr "Por favor, digite a sua senha para verificação:"
+#: ../../boot.php:1393 ../../boot.php:1497
+msgid "Edit profile"
+msgstr "Editar perfil"
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "A sugestão de amigo foi enviada"
+#: ../../boot.php:1459
+msgid "Message"
+msgstr "Mensagem"
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Sugerir amigos"
+#: ../../boot.php:1467 ../../include/nav.php:171
+msgid "Profiles"
+msgstr "Perfis"
 
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Sugerir um amigo para %s"
+#: ../../boot.php:1467
+msgid "Manage/edit profiles"
+msgstr "Gerenciar/editar perfis"
 
-#: ../../mod/item.php:108
-msgid "Unable to locate original post."
-msgstr "Não foi possível localizar a publicação original."
+#: ../../boot.php:1596 ../../boot.php:1682
+msgid "g A l F d"
+msgstr "G l d F"
 
-#: ../../mod/item.php:310
-msgid "Empty post discarded."
-msgstr "A publicação em branco foi descartada."
+#: ../../boot.php:1597 ../../boot.php:1683
+msgid "F d"
+msgstr "F d"
 
-#: ../../mod/item.php:872
-msgid "System error. Post not saved."
-msgstr "Erro no sistema. A publicação não foi salva."
+#: ../../boot.php:1642 ../../boot.php:1723
+msgid "[today]"
+msgstr "[hoje]"
 
-#: ../../mod/item.php:897
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "Essa mensagem foi enviada a você por %s, um membro da rede social Friendica."
+#: ../../boot.php:1654
+msgid "Birthday Reminders"
+msgstr "Lembretes de aniversário"
 
-#: ../../mod/item.php:899
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Você pode visitá-lo em %s"
+#: ../../boot.php:1655
+msgid "Birthdays this week:"
+msgstr "Aniversários nesta semana:"
 
-#: ../../mod/item.php:900
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Por favor, entre em contato com o remetente respondendo a esta publicação, caso você não queira mais receber estas mensagens."
+#: ../../boot.php:1716
+msgid "[No description]"
+msgstr "[Sem descrição]"
 
-#: ../../mod/item.php:904
-#, php-format
-msgid "%s posted an update."
-msgstr "%s publicou uma atualização."
+#: ../../boot.php:1734
+msgid "Event Reminders"
+msgstr "Lembretes de eventos"
 
-#: ../../mod/ping.php:238
-msgid "{0} wants to be your friend"
-msgstr "{0} deseja ser seu amigo"
+#: ../../boot.php:1735
+msgid "Events this week:"
+msgstr "Eventos esta semana:"
 
-#: ../../mod/ping.php:243
-msgid "{0} sent you a message"
-msgstr "{0} lhe enviou uma mensagem"
+#: ../../boot.php:1972 ../../include/nav.php:76
+msgid "Status"
+msgstr "Status"
 
-#: ../../mod/ping.php:248
-msgid "{0} requested registration"
-msgstr "{0} solicitou registro"
+#: ../../boot.php:1975
+msgid "Status Messages and Posts"
+msgstr "Mensagem de Estado (status) e Publicações"
 
-#: ../../mod/ping.php:254
-#, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} comentou a publicação de %s"
+#: ../../boot.php:1982
+msgid "Profile Details"
+msgstr "Detalhe do Perfil"
 
-#: ../../mod/ping.php:259
-#, php-format
-msgid "{0} liked %s's post"
-msgstr "{0} gostou da publicação de %s"
+#: ../../boot.php:1993 ../../boot.php:1996
+msgid "Videos"
+msgstr "Vídeos"
 
-#: ../../mod/ping.php:264
-#, php-format
-msgid "{0} disliked %s's post"
-msgstr "{0} desgostou da publicação de %s"
+#: ../../boot.php:2006
+msgid "Events and Calendar"
+msgstr "Eventos e Agenda"
 
-#: ../../mod/ping.php:269
-#, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} agora é amigo de %s"
+#: ../../boot.php:2013
+msgid "Only You Can See This"
+msgstr "Somente Você Pode Ver Isso"
 
-#: ../../mod/ping.php:274
-msgid "{0} posted"
-msgstr "{0} publicou"
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Funcionalidades Gerais"
 
-#: ../../mod/ping.php:279
-#, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0} etiquetou a publicação de %s com #%s"
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr "Perfís Múltiplos"
 
-#: ../../mod/ping.php:285
-msgid "{0} mentioned you in a post"
-msgstr "{0} mencionou você em uma publicação"
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr "Capacidade de criar perfis múltiplos"
 
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "Erro no protocolo OpenID. Não foi retornada nenhuma ID."
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr "Funcionalidades de Composição de Publicações"
 
-#: ../../mod/openid.php:53
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "A conta não foi encontrada e não são permitidos registros via OpenID nesse site."
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr "Editor Richtext"
 
-#: ../../mod/openid.php:93 ../../include/auth.php:112
-#: ../../include/auth.php:175
-msgid "Login failed."
-msgstr "Não foi possível autenticar."
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr "Habilite editor richtext"
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Identificador de solicitação inválido"
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr "Pré-visualização da Publicação"
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
-msgstr "Descartar"
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Permite pré-visualizar publicações e comentários antes de publicá-los"
 
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "Sistema"
+#: ../../include/features.php:33
+msgid "Auto-mention Forums"
+msgstr "Auto-menção Fóruns"
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:140
-msgid "Network"
-msgstr "Rede"
+#: ../../include/features.php:33
+msgid ""
+"Add/remove mention when a fourm page is selected/deselected in ACL window."
+msgstr "Adiciona/Remove menções quando uma página de fórum é selecionada/deselecionada na janela ACL"
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:149
-msgid "Introductions"
-msgstr "Apresentações"
+#: ../../include/features.php:38
+msgid "Network Sidebar Widgets"
+msgstr "Widgets da Barra Lateral da Rede"
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "Exibir solicitações ignoradas"
+#: ../../include/features.php:39
+msgid "Search by Date"
+msgstr "Buscar por Data"
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Ocultar solicitações ignoradas"
+#: ../../include/features.php:39
+msgid "Ability to select posts by date ranges"
+msgstr "Capacidade de selecionar publicações por intervalos de data"
 
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
-msgstr "Tipo de notificação:"
+#: ../../include/features.php:40
+msgid "Group Filter"
+msgstr "Filtrar Grupo"
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "Sugestão de amigo"
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Habilita widget para mostrar publicações da Rede somente de grupos selecionados"
 
-#: ../../mod/notifications.php:152
-#, php-format
-msgid "suggested by %s"
-msgstr "sugerido por %s"
+#: ../../include/features.php:41
+msgid "Network Filter"
+msgstr "Filtrar Rede"
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
-msgstr "Publicar a adição de amigo"
+#: ../../include/features.php:41
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Habilita widget para mostrar publicações da Rede de redes selecionadas"
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
-msgstr "se aplicável"
+#: ../../include/features.php:42
+msgid "Save search terms for re-use"
+msgstr "Guarde as palavras-chaves para reuso"
 
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
-msgstr "Alega ser conhecido por você: "
+#: ../../include/features.php:47
+msgid "Network Tabs"
+msgstr "Abas da Rede"
 
-#: ../../mod/notifications.php:181
-msgid "yes"
-msgstr "sim"
+#: ../../include/features.php:48
+msgid "Network Personal Tab"
+msgstr "Aba Pessoal da Rede"
 
-#: ../../mod/notifications.php:181
-msgid "no"
-msgstr "o"
+#: ../../include/features.php:48
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido"
 
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
-msgstr "Aprovar como:"
+#: ../../include/features.php:49
+msgid "Network New Tab"
+msgstr "Aba Nova da Rede"
 
-#: ../../mod/notifications.php:189
-msgid "Friend"
-msgstr "Amigo"
+#: ../../include/features.php:49
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)"
 
-#: ../../mod/notifications.php:190
-msgid "Sharer"
-msgstr "Compartilhador"
+#: ../../include/features.php:50
+msgid "Network Shared Links Tab"
+msgstr "Aba de Links Compartilhados da Rede"
 
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
-msgstr "Fã/Admirador"
+#: ../../include/features.php:50
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Habilite aba para mostrar somente publicações da Rede que contenham links"
 
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
-msgstr "Solicitação de amizade/conexão"
+#: ../../include/features.php:55
+msgid "Post/Comment Tools"
+msgstr "Ferramentas de Publicação/Comentário"
 
-#: ../../mod/notifications.php:196
-msgid "New Follower"
-msgstr "Novo acompanhante"
+#: ../../include/features.php:56
+msgid "Multiple Deletion"
+msgstr "Deleção Multipla"
 
-#: ../../mod/notifications.php:217
-msgid "No introductions."
-msgstr "Sem apresentações."
+#: ../../include/features.php:56
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Selecione e delete múltiplas publicações/comentário imediatamente"
 
-#: ../../mod/notifications.php:220 ../../include/nav.php:150
-msgid "Notifications"
-msgstr "Notificações"
+#: ../../include/features.php:57
+msgid "Edit Sent Posts"
+msgstr "Editar Publicações Enviadas"
 
-#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
-#: ../../mod/notifications.php:469
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s gostou da publicação de %s"
+#: ../../include/features.php:57
+msgid "Edit and correct posts and comments after sending"
+msgstr "Editar e corrigir publicações e comentários após envio"
 
-#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
-#: ../../mod/notifications.php:478
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s desgostou da publicação de %s"
+#: ../../include/features.php:58
+msgid "Tagging"
+msgstr "Etiquetagem"
 
-#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
-#: ../../mod/notifications.php:492
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s agora é amigo de %s"
+#: ../../include/features.php:58
+msgid "Ability to tag existing posts"
+msgstr "Capacidade de colocar etiquetas em publicações existentes"
 
-#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
-#, php-format
-msgid "%s created a new post"
-msgstr "%s criou uma nova publicação"
+#: ../../include/features.php:59
+msgid "Post Categories"
+msgstr "Categorias de Publicações"
 
-#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
-#: ../../mod/notifications.php:501
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s comentou uma publicação de %s"
+#: ../../include/features.php:59
+msgid "Add categories to your posts"
+msgstr "Adicione Categorias ás Publicações"
 
-#: ../../mod/notifications.php:302
-msgid "No more network notifications."
-msgstr "Nenhuma notificação de rede."
+#: ../../include/features.php:60 ../../include/contact_widgets.php:103
+msgid "Saved Folders"
+msgstr "Pastas salvas"
 
-#: ../../mod/notifications.php:306
-msgid "Network Notifications"
-msgstr "Notificações de rede"
+#: ../../include/features.php:60
+msgid "Ability to file posts under folders"
+msgstr "Capacidade de arquivar publicações em pastas"
 
-#: ../../mod/notifications.php:427
-msgid "No more personal notifications."
-msgstr "Nenhuma notificação pessoal."
+#: ../../include/features.php:61
+msgid "Dislike Posts"
+msgstr "Desgostar de publicações"
 
-#: ../../mod/notifications.php:431
-msgid "Personal Notifications"
-msgstr "Notificações pessoais"
+#: ../../include/features.php:61
+msgid "Ability to dislike posts/comments"
+msgstr "Capacidade de desgostar de publicações/comentários"
 
-#: ../../mod/notifications.php:508
-msgid "No more home notifications."
-msgstr "Não existe mais nenhuma notificação pessoal."
+#: ../../include/features.php:62
+msgid "Star Posts"
+msgstr "Destacar publicações"
 
-#: ../../mod/notifications.php:512
-msgid "Home Notifications"
-msgstr "Notificações pessoais"
+#: ../../include/features.php:62
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Capacidade de marcar publicações especiais com uma estrela indicadora"
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "Limite de convites totais excedido."
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "Saiu."
 
-#: ../../mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : Não é um endereço de e-mail válido."
+#: ../../include/auth.php:128 ../../include/user.php:66
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Foi encontrado um erro ao tentar conectar usando o OpenID que você forneceu. Por favor, verifique se sua ID está escrita corretamente."
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Por favor, junte-se à nós na Friendica"
+#: ../../include/auth.php:128 ../../include/user.php:66
+msgid "The error message was:"
+msgstr "A mensagem de erro foi:"
 
-#: ../../mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Limite de convites ultrapassado. Favor contactar o administrador do sítio."
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:139
+msgid "Starts:"
+msgstr "Início:"
 
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : Não foi possível enviar a mensagem."
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:147
+msgid "Finishes:"
+msgstr "Término:"
 
-#: ../../mod/invite.php:93
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d mensagem enviada."
-msgstr[1] "%d mensagens enviadas."
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
+msgstr "j de F, Y"
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Você não possui mais convites disponíveis"
+#: ../../include/profile_advanced.php:23
+msgid "j F"
+msgstr "j de F"
 
-#: ../../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 "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais."
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "Aniversário:"
 
-#: ../../mod/invite.php:122
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público."
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Idade:"
 
-#: ../../mod/invite.php:123
+#: ../../include/profile_advanced.php:43
 #, 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 "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar."
+msgid "for %1$d %2$s"
+msgstr "para %1$d %2$s"
 
-#: ../../mod/invite.php:126
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros."
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "Etiquetas:"
 
-#: ../../mod/invite.php:132
-msgid "Send invitations"
-msgstr "Enviar convites."
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
+msgstr "Religião:"
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "Digite os endereços de e-mail, um por linha:"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "Passatempos/Interesses:"
 
-#: ../../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 "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web."
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "Informações de contato e redes sociais:"
 
-#: ../../mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Você preciso informar este código de convite: $invite_code"
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Preferências musicais:"
 
-#: ../../mod/invite.php:137
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:"
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Livros, literatura:"
 
-#: ../../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 "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com."
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "Televisão:"
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "Gerenciar identidades e/ou páginas"
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Filmes/dança/cultura/entretenimento:"
 
-#: ../../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 "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\""
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Amor/romance:"
 
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "Selecione uma identidade para gerenciar: "
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "Trabalho/emprego:"
 
-#: ../../mod/home.php:34
-#, php-format
-msgid "Welcome to %s"
-msgstr "Bem-vindo(a) a %s"
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "Escola/educação:"
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "Amigos de %s"
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr "[sem assunto]"
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Nenhum amigo para exibir."
+#: ../../include/Scrape.php:584
+msgid " on Last.fm"
+msgstr "na Last.fm"
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Adicionar Contato Novo"
+#: ../../include/text.php:296
+msgid "newer"
+msgstr "mais recente"
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Forneça endereço ou localização web"
+#: ../../include/text.php:298
+msgid "older"
+msgstr "antigo"
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Por exemplo: joao@exemplo.com, http://exemplo.com/maria"
+#: ../../include/text.php:303
+msgid "prev"
+msgstr "anterior"
 
-#: ../../include/contact_widgets.php:23
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d convite disponível"
-msgstr[1] "%d convites disponíveis"
+#: ../../include/text.php:305
+msgid "first"
+msgstr "primeiro"
 
-#: ../../include/contact_widgets.php:29
-msgid "Find People"
-msgstr "Pesquisar por pessoas"
+#: ../../include/text.php:337
+msgid "last"
+msgstr "último"
 
-#: ../../include/contact_widgets.php:30
-msgid "Enter name or interest"
-msgstr "Fornecer nome ou interesse"
+#: ../../include/text.php:340
+msgid "next"
+msgstr "próximo"
 
-#: ../../include/contact_widgets.php:31
-msgid "Connect/Follow"
-msgstr "Conectar-se/acompanhar"
+#: ../../include/text.php:853
+msgid "No contacts"
+msgstr "Nenhum contato"
 
-#: ../../include/contact_widgets.php:32
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Examplos: Robert Morgenstein, Fishing"
+#: ../../include/text.php:862
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d contato"
+msgstr[1] "%d contatos"
 
-#: ../../include/contact_widgets.php:36
-msgid "Random Profile"
-msgstr "Perfil Randômico"
+#: ../../include/text.php:1003
+msgid "poke"
+msgstr "cutucar"
 
-#: ../../include/contact_widgets.php:70
-msgid "Networks"
-msgstr "Redes"
+#: ../../include/text.php:1003 ../../include/conversation.php:211
+msgid "poked"
+msgstr "cutucado"
 
-#: ../../include/contact_widgets.php:73
-msgid "All Networks"
-msgstr "Todas as redes"
+#: ../../include/text.php:1004
+msgid "ping"
+msgstr "ping"
 
-#: ../../include/contact_widgets.php:103 ../../include/features.php:59
-msgid "Saved Folders"
-msgstr "Pastas salvas"
+#: ../../include/text.php:1004
+msgid "pinged"
+msgstr "pingado"
 
-#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
-msgid "Everything"
-msgstr "Tudo"
+#: ../../include/text.php:1005
+msgid "prod"
+msgstr "incentivar"
 
-#: ../../include/contact_widgets.php:135
-msgid "Categories"
-msgstr "Categorias"
+#: ../../include/text.php:1005
+msgid "prodded"
+msgstr "incentivado"
 
-#: ../../include/plugin.php:454 ../../include/plugin.php:456
-msgid "Click here to upgrade."
-msgstr "Clique aqui para atualização (upgrade)."
+#: ../../include/text.php:1006
+msgid "slap"
+msgstr "bater"
 
-#: ../../include/plugin.php:462
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Essa ação excede o limite definido para o seu plano de assinatura."
+#: ../../include/text.php:1006
+msgid "slapped"
+msgstr "batido"
 
-#: ../../include/plugin.php:467
-msgid "This action is not available under your subscription plan."
-msgstr "Essa ação não está disponível em seu plano de assinatura."
+#: ../../include/text.php:1007
+msgid "finger"
+msgstr "apontar"
 
-#: ../../include/network.php:883
-msgid "view full size"
-msgstr "ver na tela inteira"
+#: ../../include/text.php:1007
+msgid "fingered"
+msgstr "apontado"
 
-#: ../../include/event.php:20 ../../include/bb2diaspora.php:399
-msgid "Starts:"
-msgstr "Início:"
+#: ../../include/text.php:1008
+msgid "rebuff"
+msgstr "rejeite"
 
-#: ../../include/event.php:30 ../../include/bb2diaspora.php:407
-msgid "Finishes:"
-msgstr "Término:"
+#: ../../include/text.php:1008
+msgid "rebuffed"
+msgstr "rejeitado"
 
-#: ../../include/notifier.php:774 ../../include/delivery.php:457
-msgid "(no subject)"
-msgstr "(sem assunto)"
+#: ../../include/text.php:1022
+msgid "happy"
+msgstr "feliz"
 
-#: ../../include/notifier.php:784 ../../include/enotify.php:28
-#: ../../include/delivery.php:468
-msgid "noreply"
-msgstr "naoresponda"
+#: ../../include/text.php:1023
+msgid "sad"
+msgstr "triste"
 
-#: ../../include/user.php:39
-msgid "An invitation is required."
-msgstr "É necessário um convite."
+#: ../../include/text.php:1024
+msgid "mellow"
+msgstr "desencanado"
 
-#: ../../include/user.php:44
-msgid "Invitation could not be verified."
-msgstr "Não foi possível verificar o convite."
+#: ../../include/text.php:1025
+msgid "tired"
+msgstr "cansado"
 
-#: ../../include/user.php:52
-msgid "Invalid OpenID url"
-msgstr "A URL do OpenID é inválida"
+#: ../../include/text.php:1026
+msgid "perky"
+msgstr "audacioso"
 
-#: ../../include/user.php:66 ../../include/auth.php:128
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "Foi encontrado um erro ao tentar conectar usando o OpenID que você forneceu. Por favor, verifique se sua ID está escrita corretamente."
+#: ../../include/text.php:1027
+msgid "angry"
+msgstr "chateado"
 
-#: ../../include/user.php:66 ../../include/auth.php:128
-msgid "The error message was:"
-msgstr "A mensagem de erro foi:"
+#: ../../include/text.php:1028
+msgid "stupified"
+msgstr "estupefato"
 
-#: ../../include/user.php:73
-msgid "Please enter the required information."
-msgstr "Por favor, forneça a informação solicitada."
+#: ../../include/text.php:1029
+msgid "puzzled"
+msgstr "confuso"
 
-#: ../../include/user.php:87
-msgid "Please use a shorter name."
-msgstr "Por favor, use um nome mais curto."
+#: ../../include/text.php:1030
+msgid "interested"
+msgstr "interessado"
 
-#: ../../include/user.php:89
-msgid "Name too short."
-msgstr "O nome é muito curto."
+#: ../../include/text.php:1031
+msgid "bitter"
+msgstr "rancoroso"
 
-#: ../../include/user.php:104
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Isso não parece ser o seu nome completo (Nome Sobrenome)."
+#: ../../include/text.php:1032
+msgid "cheerful"
+msgstr "jovial"
 
-#: ../../include/user.php:109
-msgid "Your email domain is not among those allowed on this site."
-msgstr "O domínio do seu e-mail não está entre os permitidos neste site."
+#: ../../include/text.php:1033
+msgid "alive"
+msgstr "vivo"
 
-#: ../../include/user.php:112
-msgid "Not a valid email address."
-msgstr "Não é um endereço de e-mail válido."
+#: ../../include/text.php:1034
+msgid "annoyed"
+msgstr "incomodado"
 
-#: ../../include/user.php:122
-msgid "Cannot use that email."
-msgstr "Não é possível usar esse e-mail."
+#: ../../include/text.php:1035
+msgid "anxious"
+msgstr "ansioso"
 
-#: ../../include/user.php:128
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr "A sua identificação pode conter somente os caracteres \"a-z\", \"0-9\", \"-\", e \"_\", além disso, deve começar com uma letra."
+#: ../../include/text.php:1036
+msgid "cranky"
+msgstr "excêntrico"
 
-#: ../../include/user.php:134 ../../include/user.php:232
-msgid "Nickname is already registered. Please choose another."
-msgstr "Esta identificação já foi registrada. Por favor, escolha outra."
+#: ../../include/text.php:1037
+msgid "disturbed"
+msgstr "perturbado"
 
-#: ../../include/user.php:144
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Essa identificação já foi registrada e não pode ser reutilizada. Por favor, escolha outra."
+#: ../../include/text.php:1038
+msgid "frustrated"
+msgstr "frustrado"
 
-#: ../../include/user.php:160
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "ERRO GRAVE: Não foi possível gerar as chaves de segurança."
+#: ../../include/text.php:1039
+msgid "motivated"
+msgstr "motivado"
 
-#: ../../include/user.php:218
-msgid "An error occurred during registration. Please try again."
-msgstr "Ocorreu um erro durante o registro. Por favor, tente novamente."
+#: ../../include/text.php:1040
+msgid "relaxed"
+msgstr "relaxado"
 
-#: ../../include/user.php:253
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente."
+#: ../../include/text.php:1041
+msgid "surprised"
+msgstr "surpreso"
 
-#: ../../include/user.php:285 ../../include/user.php:289
-#: ../../include/profile_selectors.php:42
-msgid "Friends"
-msgstr "Amigos"
+#: ../../include/text.php:1209
+msgid "Monday"
+msgstr "Segunda"
 
-#: ../../include/conversation.php:207
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s cutucou %2$s"
+#: ../../include/text.php:1209
+msgid "Tuesday"
+msgstr "Terça"
 
-#: ../../include/conversation.php:211 ../../include/text.php:979
-msgid "poked"
-msgstr "cutucado"
+#: ../../include/text.php:1209
+msgid "Wednesday"
+msgstr "Quarta"
 
-#: ../../include/conversation.php:291
-msgid "post/item"
-msgstr "postagem/item"
+#: ../../include/text.php:1209
+msgid "Thursday"
+msgstr "Quinta"
 
-#: ../../include/conversation.php:292
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s marcou %3$s de %2$s como favorito"
+#: ../../include/text.php:1209
+msgid "Friday"
+msgstr "Sexta"
 
-#: ../../include/conversation.php:767
-msgid "remove"
-msgstr "remover"
+#: ../../include/text.php:1209
+msgid "Saturday"
+msgstr "Sábado"
 
-#: ../../include/conversation.php:771
-msgid "Delete Selected Items"
-msgstr "Excluir os itens selecionados"
+#: ../../include/text.php:1209
+msgid "Sunday"
+msgstr "Domingo"
 
-#: ../../include/conversation.php:870
-msgid "Follow Thread"
-msgstr "Seguir o Thread"
+#: ../../include/text.php:1213
+msgid "January"
+msgstr "Janeiro"
 
-#: ../../include/conversation.php:871 ../../include/Contact.php:228
-msgid "View Status"
-msgstr "Ver Status"
+#: ../../include/text.php:1213
+msgid "February"
+msgstr "Fevereiro"
 
-#: ../../include/conversation.php:872 ../../include/Contact.php:229
-msgid "View Profile"
-msgstr "Ver Perfil"
+#: ../../include/text.php:1213
+msgid "March"
+msgstr "Março"
 
-#: ../../include/conversation.php:873 ../../include/Contact.php:230
-msgid "View Photos"
-msgstr "Ver Fotos"
+#: ../../include/text.php:1213
+msgid "April"
+msgstr "Abril"
 
-#: ../../include/conversation.php:874 ../../include/Contact.php:231
-#: ../../include/Contact.php:254
-msgid "Network Posts"
-msgstr "Publicações da Rede"
+#: ../../include/text.php:1213
+msgid "May"
+msgstr "Maio"
 
-#: ../../include/conversation.php:875 ../../include/Contact.php:232
-#: ../../include/Contact.php:254
-msgid "Edit Contact"
-msgstr "Editar Contato"
+#: ../../include/text.php:1213
+msgid "June"
+msgstr "Junho"
 
-#: ../../include/conversation.php:876 ../../include/Contact.php:234
-#: ../../include/Contact.php:254
-msgid "Send PM"
-msgstr "Enviar MP"
+#: ../../include/text.php:1213
+msgid "July"
+msgstr "Julho"
 
-#: ../../include/conversation.php:877 ../../include/Contact.php:227
-msgid "Poke"
-msgstr "Cutucar"
+#: ../../include/text.php:1213
+msgid "August"
+msgstr "Agosto"
 
-#: ../../include/conversation.php:939
-#, php-format
-msgid "%s likes this."
-msgstr "%s gostou disso."
+#: ../../include/text.php:1213
+msgid "September"
+msgstr "Setembro"
 
-#: ../../include/conversation.php:939
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s não gostou disso."
+#: ../../include/text.php:1213
+msgid "October"
+msgstr "Outubro"
 
-#: ../../include/conversation.php:944
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d pessoas</span> gostaram disso"
+#: ../../include/text.php:1213
+msgid "November"
+msgstr "Novembro"
 
-#: ../../include/conversation.php:947
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d pessoas</span> não gostaram disso"
+#: ../../include/text.php:1213
+msgid "December"
+msgstr "Dezembro"
 
-#: ../../include/conversation.php:961
-msgid "and"
-msgstr "e"
+#: ../../include/text.php:1432
+msgid "bytes"
+msgstr "bytes"
 
-#: ../../include/conversation.php:967
-#, php-format
-msgid ", and %d other people"
-msgstr ", e mais %d outras pessoas"
+#: ../../include/text.php:1456 ../../include/text.php:1468
+msgid "Click to open/close"
+msgstr "Clique para abrir/fechar"
 
-#: ../../include/conversation.php:969
-#, php-format
-msgid "%s like this."
-msgstr "%s gostaram disso."
+#: ../../include/text.php:1689 ../../include/user.php:246
+msgid "default"
+msgstr "padrão"
 
-#: ../../include/conversation.php:969
-#, php-format
-msgid "%s don't like this."
-msgstr "%s não gostaram disso."
+#: ../../include/text.php:1701
+msgid "Select an alternate language"
+msgstr "Selecione um idioma alternativo"
 
-#: ../../include/conversation.php:996 ../../include/conversation.php:1014
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Visível para <strong>todos</strong>"
+#: ../../include/text.php:1957
+msgid "activity"
+msgstr "atividade"
 
-#: ../../include/conversation.php:998 ../../include/conversation.php:1016
-msgid "Please enter a video link/URL:"
-msgstr "Favor fornecer um link/URL de vídeo"
+#: ../../include/text.php:1960
+msgid "post"
+msgstr "publicação"
 
-#: ../../include/conversation.php:999 ../../include/conversation.php:1017
-msgid "Please enter an audio link/URL:"
-msgstr "Favor fornecer um link/URL de áudio"
+#: ../../include/text.php:2128
+msgid "Item filed"
+msgstr "O item foi arquivado"
 
-#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
-msgid "Tag term:"
-msgstr "Etiqueta:"
+#: ../../include/api.php:263 ../../include/api.php:274
+#: ../../include/api.php:375
+msgid "User not found."
+msgstr "Usuário não encontrado."
 
-#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
-msgid "Where are you right now?"
-msgstr "Onde você está agora?"
+#: ../../include/api.php:1123
+msgid "There is no status with this id."
+msgstr "Não existe status com esse id."
 
-#: ../../include/conversation.php:1003
-msgid "Delete item(s)?"
-msgstr "Deletar item(s)?"
+#: ../../include/api.php:1193
+msgid "There is no conversation with this id."
+msgstr "Não existe conversas com esse id."
 
-#: ../../include/conversation.php:1045
-msgid "Post to Email"
-msgstr "Enviar por e-mail"
+#: ../../include/dba.php:51 ../../include/dba_pdo.php:72
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'"
 
-#: ../../include/conversation.php:1101
-msgid "permissions"
-msgstr "permissões"
+#: ../../include/items.php:1981 ../../include/datetime.php:472
+#, php-format
+msgid "%s's birthday"
+msgstr "aniversários de %s's"
 
-#: ../../include/conversation.php:1125
-msgid "Post to Groups"
-msgstr "Postar em Grupos"
+#: ../../include/items.php:1982 ../../include/datetime.php:473
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Feliz Aniversário %s"
 
-#: ../../include/conversation.php:1126
-msgid "Post to Contacts"
-msgstr "Publique para Contatos"
+#: ../../include/items.php:3710
+msgid "A new person is sharing with you at "
+msgstr "Uma nova pessoa está compartilhando com você em "
 
-#: ../../include/conversation.php:1127
-msgid "Private post"
-msgstr "Publicação privada"
+#: ../../include/items.php:3710
+msgid "You have a new follower at "
+msgstr "Você tem um novo acompanhante em "
 
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "Saiu."
+#: ../../include/items.php:4233
+msgid "Do you really want to delete this item?"
+msgstr "Você realmente deseja deletar esse item?"
 
-#: ../../include/uimport.php:94
-msgid "Error decoding account file"
-msgstr "Erro ao decodificar arquivo de conta"
+#: ../../include/items.php:4460
+msgid "Archives"
+msgstr "Arquivos"
 
-#: ../../include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?"
+#: ../../include/delivery.php:456 ../../include/notifier.php:774
+msgid "(no subject)"
+msgstr "(sem assunto)"
 
-#: ../../include/uimport.php:116 ../../include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr "Erro! Não consigo conferir o apelido (nickname)"
+#: ../../include/delivery.php:467 ../../include/notifier.php:784
+#: ../../include/enotify.php:28
+msgid "noreply"
+msgstr "naoresponda"
 
-#: ../../include/uimport.php:120 ../../include/uimport.php:131
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "User '%s' já existe nesse servidor!"
+#: ../../include/diaspora.php:703
+msgid "Sharing notification from Diaspora network"
+msgstr "Notificação de compartilhamento da rede Diaspora"
 
-#: ../../include/uimport.php:153
-msgid "User creation error"
-msgstr "Erro na criação do usuário"
+#: ../../include/diaspora.php:2299
+msgid "Attachments:"
+msgstr "Anexos:"
 
-#: ../../include/uimport.php:171
-msgid "User profile creation error"
-msgstr "Erro na criação do perfil do Usuário"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "URL de conexão faltando."
 
-#: ../../include/uimport.php:220
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d contato não foi importado"
-msgstr[1] "%d contatos não foram importados"
+#: ../../include/follow.php:59
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Este site não está configurado para permitir comunicações com outras redes."
 
-#: ../../include/uimport.php:290
-msgid "Done. You can now login with your username and password"
-msgstr "Feito. Você agora pode entrar com seu nome de usuário e senha"
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Não foi descoberto nenhum protocolo de comunicação ou fonte de notícias compatível."
 
-#: ../../include/text.php:293
-msgid "newer"
-msgstr "mais recente"
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "O endereço de perfil especificado não fornece informação adequada."
+
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "Não foi encontrado nenhum autor ou nome."
 
-#: ../../include/text.php:295
-msgid "older"
-msgstr "antigo"
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
+msgstr "Não foi possível encontrar nenhuma URL de navegação neste endereço."
 
-#: ../../include/text.php:300
-msgid "prev"
-msgstr "anterior"
+#: ../../include/follow.php:86
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Não foi possível  casa o estilo @ de Endereço de Identidade com um protocolo conhecido ou contato de email."
 
-#: ../../include/text.php:302
-msgid "first"
-msgstr "primeiro"
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
+msgstr "Use mailto: antes do endereço para forçar a checagem de email."
 
-#: ../../include/text.php:334
-msgid "last"
-msgstr "último"
+#: ../../include/follow.php:93
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "O endereço de perfil especificado pertence a uma rede que foi desabilitada neste site."
 
-#: ../../include/text.php:337
-msgid "next"
-msgstr "próximo"
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Perfil limitado. Essa pessoa não poderá receber notificações diretas/pessoais de você."
 
-#: ../../include/text.php:829
-msgid "No contacts"
-msgstr "Nenhum contato"
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "Não foi possível recuperar a informação do contato."
 
-#: ../../include/text.php:838
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d contato"
-msgstr[1] "%d contatos"
+#: ../../include/follow.php:259
+msgid "following"
+msgstr "acompanhando"
 
-#: ../../include/text.php:979
-msgid "poke"
-msgstr "cutucar"
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Bem-vindo(a) "
 
-#: ../../include/text.php:980
-msgid "ping"
-msgstr "ping"
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Por favor, envie uma foto para o perfil."
 
-#: ../../include/text.php:980
-msgid "pinged"
-msgstr "pingado"
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Bem-vindo(a) de volta "
 
-#: ../../include/text.php:981
-msgid "prod"
-msgstr "incentivar"
+#: ../../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 "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão."
 
-#: ../../include/text.php:981
-msgid "prodded"
-msgstr "incentivado"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Masculino"
 
-#: ../../include/text.php:982
-msgid "slap"
-msgstr "bater"
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Feminino"
 
-#: ../../include/text.php:982
-msgid "slapped"
-msgstr "batido"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Atualmente masculino"
 
-#: ../../include/text.php:983
-msgid "finger"
-msgstr "apontar"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Atualmente feminino"
 
-#: ../../include/text.php:983
-msgid "fingered"
-msgstr "apontado"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Masculino a maior parte do tempo"
 
-#: ../../include/text.php:984
-msgid "rebuff"
-msgstr "rejeite"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Feminino a maior parte do tempo"
 
-#: ../../include/text.php:984
-msgid "rebuffed"
-msgstr "rejeitado"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgênero"
 
-#: ../../include/text.php:998
-msgid "happy"
-msgstr "feliz"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Intersexual"
 
-#: ../../include/text.php:999
-msgid "sad"
-msgstr "triste"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transexual"
 
-#: ../../include/text.php:1000
-msgid "mellow"
-msgstr "desencanado"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermafrodita"
 
-#: ../../include/text.php:1001
-msgid "tired"
-msgstr "cansado"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Neutro"
 
-#: ../../include/text.php:1002
-msgid "perky"
-msgstr "audacioso"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Não específico"
 
-#: ../../include/text.php:1003
-msgid "angry"
-msgstr "chateado"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Outro"
 
-#: ../../include/text.php:1004
-msgid "stupified"
-msgstr "estupefato"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Indeciso"
 
-#: ../../include/text.php:1005
-msgid "puzzled"
-msgstr "confuso"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Homens"
 
-#: ../../include/text.php:1006
-msgid "interested"
-msgstr "interessado"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Mulheres"
 
-#: ../../include/text.php:1007
-msgid "bitter"
-msgstr "rancoroso"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Gays"
 
-#: ../../include/text.php:1008
-msgid "cheerful"
-msgstr "jovial"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lésbicas"
 
-#: ../../include/text.php:1009
-msgid "alive"
-msgstr "vivo"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Sem preferência"
 
-#: ../../include/text.php:1010
-msgid "annoyed"
-msgstr "incomodado"
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bissexuais"
 
-#: ../../include/text.php:1011
-msgid "anxious"
-msgstr "ansioso"
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autossexuais"
 
-#: ../../include/text.php:1012
-msgid "cranky"
-msgstr "excêntrico"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Abstêmios"
 
-#: ../../include/text.php:1013
-msgid "disturbed"
-msgstr "perturbado"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Virgens"
 
-#: ../../include/text.php:1014
-msgid "frustrated"
-msgstr "frustrado"
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Desviantes"
 
-#: ../../include/text.php:1015
-msgid "motivated"
-msgstr "motivado"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetiches"
 
-#: ../../include/text.php:1016
-msgid "relaxed"
-msgstr "relaxado"
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Insaciável"
 
-#: ../../include/text.php:1017
-msgid "surprised"
-msgstr "surpreso"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Não sexual"
 
-#: ../../include/text.php:1185
-msgid "Monday"
-msgstr "Segunda"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Solteiro(a)"
 
-#: ../../include/text.php:1185
-msgid "Tuesday"
-msgstr "Terça"
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Solitário(a)"
 
-#: ../../include/text.php:1185
-msgid "Wednesday"
-msgstr "Quarta"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Disponível"
 
-#: ../../include/text.php:1185
-msgid "Thursday"
-msgstr "Quinta"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Não disponível"
 
-#: ../../include/text.php:1185
-msgid "Friday"
-msgstr "Sexta"
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "Tem uma paixão"
 
-#: ../../include/text.php:1185
-msgid "Saturday"
-msgstr "Sábado"
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "Apaixonado"
 
-#: ../../include/text.php:1185
-msgid "Sunday"
-msgstr "Domingo"
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Saindo com alguém"
 
-#: ../../include/text.php:1189
-msgid "January"
-msgstr "Janeiro"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Infiel"
 
-#: ../../include/text.php:1189
-msgid "February"
-msgstr "Fevereiro"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Viciado(a) em sexo"
 
-#: ../../include/text.php:1189
-msgid "March"
-msgstr "Março"
+#: ../../include/profile_selectors.php:42 ../../include/user.php:288
+#: ../../include/user.php:292
+msgid "Friends"
+msgstr "Amigos"
 
-#: ../../include/text.php:1189
-msgid "April"
-msgstr "Abril"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Amigos/Benefícios"
 
-#: ../../include/text.php:1189
-msgid "May"
-msgstr "Maio"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Casual"
 
-#: ../../include/text.php:1189
-msgid "June"
-msgstr "Junho"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Envolvido(a)"
 
-#: ../../include/text.php:1189
-msgid "July"
-msgstr "Julho"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Casado(a)"
 
-#: ../../include/text.php:1189
-msgid "August"
-msgstr "Agosto"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "Casado imaginariamente"
 
-#: ../../include/text.php:1189
-msgid "September"
-msgstr "Setembro"
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Parceiros"
 
-#: ../../include/text.php:1189
-msgid "October"
-msgstr "Outubro"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "Coabitando"
 
-#: ../../include/text.php:1189
-msgid "November"
-msgstr "Novembro"
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "Direito comum"
 
-#: ../../include/text.php:1189
-msgid "December"
-msgstr "Dezembro"
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Feliz"
 
-#: ../../include/text.php:1408
-msgid "bytes"
-msgstr "bytes"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Não estou procurando"
 
-#: ../../include/text.php:1432 ../../include/text.php:1444
-msgid "Click to open/close"
-msgstr "Clique para abrir/fechar"
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Swinger"
 
-#: ../../include/text.php:1661
-msgid "Select an alternate language"
-msgstr "Selecione um idioma alternativo"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Traído(a)"
 
-#: ../../include/text.php:1917
-msgid "activity"
-msgstr "atividade"
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Separado(a)"
 
-#: ../../include/text.php:1920
-msgid "post"
-msgstr "publicação"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Instável"
 
-#: ../../include/text.php:2075
-msgid "Item filed"
-msgstr "O item foi arquivado"
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Divorciado(a)"
 
-#: ../../include/enotify.php:16
-msgid "Friendica Notification"
-msgstr "Notificação Friendica"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "Divorciado imaginariamente"
 
-#: ../../include/enotify.php:19
-msgid "Thank You,"
-msgstr "Obrigado,"
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Viúvo(a)"
 
-#: ../../include/enotify.php:21
-#, php-format
-msgid "%s Administrator"
-msgstr "%s Administrador"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Incerto(a)"
 
-#: ../../include/enotify.php:40
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "É complicado"
 
-#: ../../include/enotify.php:44
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Notify] Nova mensagem recebida em %s"
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Não importa"
 
-#: ../../include/enotify.php:46
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s lhe enviou uma mensagem privativa em %2$s."
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Pergunte-me"
 
-#: ../../include/enotify.php:47
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s lhe enviou %2$s."
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
+msgstr "Erro ao decodificar arquivo de conta"
 
-#: ../../include/enotify.php:47
-msgid "a private message"
-msgstr "uma mensagem privada"
+#: ../../include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?"
 
-#: ../../include/enotify.php:48
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Favor visitar %s para ver e/ou responder às suas mensagens privadas."
+#: ../../include/uimport.php:116 ../../include/uimport.php:127
+msgid "Error! Cannot check nickname"
+msgstr "Erro! Não consigo conferir o apelido (nickname)"
 
-#: ../../include/enotify.php:90
+#: ../../include/uimport.php:120 ../../include/uimport.php:131
 #, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s comentou uma [url=%2$s] %3$s[/url]"
+msgid "User '%s' already exists on this server!"
+msgstr "User '%s' já existe nesse servidor!"
 
-#: ../../include/enotify.php:97
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s comentou na %4$s de [url=%2$s]%3$s [/url]"
+#: ../../include/uimport.php:153
+msgid "User creation error"
+msgstr "Erro na criação do usuário"
 
-#: ../../include/enotify.php:105
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s comentou [url=%2$s]sua %3$s[/url]"
+#: ../../include/uimport.php:171
+msgid "User profile creation error"
+msgstr "Erro na criação do perfil do Usuário"
 
-#: ../../include/enotify.php:115
+#: ../../include/uimport.php:220
 #, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica:Notify] Comentário na conversa #%1$d por %2$s"
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d contato não foi importado"
+msgstr[1] "%d contatos não foram importados"
 
-#: ../../include/enotify.php:116
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s comentou um item/conversa que você está seguindo."
+#: ../../include/uimport.php:290
+msgid "Done. You can now login with your username and password"
+msgstr "Feito. Você agora pode entrar com seu nome de usuário e senha"
 
-#: ../../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 "Favor visitar %s para ver e/ou responder à conversa."
+#: ../../include/plugin.php:455 ../../include/plugin.php:457
+msgid "Click here to upgrade."
+msgstr "Clique aqui para atualização (upgrade)."
 
-#: ../../include/enotify.php:126
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica:Notify] %s publicou no mural do seu perfil"
+#: ../../include/plugin.php:463
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Essa ação excede o limite definido para o seu plano de assinatura."
 
-#: ../../include/enotify.php:128
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s publicou no mural do seu perfil em %2$s"
+#: ../../include/plugin.php:468
+msgid "This action is not available under your subscription plan."
+msgstr "Essa ação não está disponível em seu plano de assinatura."
 
-#: ../../include/enotify.php:130
+#: ../../include/conversation.php:207
 #, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s publicou para [url=%2$s]seu mural[/url]"
+msgid "%1$s poked %2$s"
+msgstr "%1$s cutucou %2$s"
 
-#: ../../include/enotify.php:141
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Notify] %s etiquetou você"
+#: ../../include/conversation.php:291
+msgid "post/item"
+msgstr "postagem/item"
 
-#: ../../include/enotify.php:142
+#: ../../include/conversation.php:292
 #, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s etiquetou você em %2$s"
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s marcou %3$s de %2$s como favorito"
 
-#: ../../include/enotify.php:143
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]etiquetou você[/url]."
+#: ../../include/conversation.php:770
+msgid "remove"
+msgstr "remover"
 
-#: ../../include/enotify.php:155
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Notify] %1$s cutucou você"
+#: ../../include/conversation.php:774
+msgid "Delete Selected Items"
+msgstr "Excluir os itens selecionados"
 
-#: ../../include/enotify.php:156
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s cutucou você em %2$s"
+#: ../../include/conversation.php:873
+msgid "Follow Thread"
+msgstr "Seguir o Thread"
 
-#: ../../include/enotify.php:157
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s [url=%2$s]cutucou você[/url]."
+#: ../../include/conversation.php:874 ../../include/Contact.php:229
+msgid "View Status"
+msgstr "Ver Status"
 
-#: ../../include/enotify.php:172
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Notify] %s etiquetou sua publicação"
+#: ../../include/conversation.php:875 ../../include/Contact.php:230
+msgid "View Profile"
+msgstr "Ver Perfil"
 
-#: ../../include/enotify.php:173
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s etiquetou sua publicação em %2$s"
+#: ../../include/conversation.php:876 ../../include/Contact.php:231
+msgid "View Photos"
+msgstr "Ver Fotos"
 
-#: ../../include/enotify.php:174
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s etiquetou [url=%2$s]sua publicação[/url]"
+#: ../../include/conversation.php:877 ../../include/Contact.php:232
+#: ../../include/Contact.php:255
+msgid "Network Posts"
+msgstr "Publicações da Rede"
 
-#: ../../include/enotify.php:185
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Notify] Você recebeu uma apresentação"
+#: ../../include/conversation.php:878 ../../include/Contact.php:233
+#: ../../include/Contact.php:255
+msgid "Edit Contact"
+msgstr "Editar Contato"
 
-#: ../../include/enotify.php:186
+#: ../../include/conversation.php:879 ../../include/Contact.php:235
+#: ../../include/Contact.php:255
+msgid "Send PM"
+msgstr "Enviar MP"
+
+#: ../../include/conversation.php:880 ../../include/Contact.php:228
+msgid "Poke"
+msgstr "Cutucar"
+
+#: ../../include/conversation.php:942
 #, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Você recebeu uma apresentação de '%1$s' em %2$s"
+msgid "%s likes this."
+msgstr "%s gostou disso."
 
-#: ../../include/enotify.php:187
+#: ../../include/conversation.php:942
 #, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Você recebeu [url=%1$s]uma apresentação[/url] de %2$s."
+msgid "%s doesn't like this."
+msgstr "%s não gostou disso."
 
-#: ../../include/enotify.php:190 ../../include/enotify.php:208
+#: ../../include/conversation.php:947
 #, php-format
-msgid "You may visit their profile at %s"
-msgstr "Você pode visitar o perfil deles em %s"
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d pessoas</span> gostaram disso"
 
-#: ../../include/enotify.php:192
+#: ../../include/conversation.php:950
 #, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Favor visitar %s para aprovar ou rejeitar a apresentação."
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d pessoas</span> não gostaram disso"
 
-#: ../../include/enotify.php:199
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica:Notify] Você recebeu uma sugestão de amigo"
+#: ../../include/conversation.php:964
+msgid "and"
+msgstr "e"
 
-#: ../../include/enotify.php:200
+#: ../../include/conversation.php:970
 #, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Você recebeu uma sugestão de amigo de '%1$s' em %2$s"
+msgid ", and %d other people"
+msgstr ", e mais %d outras pessoas"
 
-#: ../../include/enotify.php:201
+#: ../../include/conversation.php:972
 #, php-format
-msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "Você recebeu [url=%1$s]uma sugestão de amigo[/url] de %2$s em %3$s"
+msgid "%s like this."
+msgstr "%s gostaram disso."
 
-#: ../../include/enotify.php:206
-msgid "Name:"
-msgstr "Nome:"
+#: ../../include/conversation.php:972
+#, php-format
+msgid "%s don't like this."
+msgstr "%s não gostaram disso."
 
-#: ../../include/enotify.php:207
-msgid "Photo:"
-msgstr "Foto:"
+#: ../../include/conversation.php:999 ../../include/conversation.php:1017
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Visível para <strong>todos</strong>"
 
-#: ../../include/enotify.php:210
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Favor visitar %s para aprovar ou rejeitar a sugestão."
+#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
+msgid "Please enter a video link/URL:"
+msgstr "Favor fornecer um link/URL de vídeo"
 
-#: ../../include/Scrape.php:583
-msgid " on Last.fm"
-msgstr "na Last.fm"
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
+msgid "Please enter an audio link/URL:"
+msgstr "Favor fornecer um link/URL de áudio"
 
-#: ../../include/group.php:25
-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 "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes <strong>poderão</strong> ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente."
+#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
+msgid "Tag term:"
+msgstr "Etiqueta:"
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr "Grupo de privacidade padrão para novos contatos"
+#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
+msgid "Where are you right now?"
+msgstr "Onde você está agora?"
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "Todos"
+#: ../../include/conversation.php:1006
+msgid "Delete item(s)?"
+msgstr "Deletar item(s)?"
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "editar"
+#: ../../include/conversation.php:1049
+msgid "Post to Email"
+msgstr "Enviar por e-mail"
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "Editar grupo"
+#: ../../include/conversation.php:1054
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "Conectores desabilitados, desde \"%s\" está habilitado."
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "Criar um novo grupo"
+#: ../../include/conversation.php:1109
+msgid "permissions"
+msgstr "permissões"
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
-msgstr "Contatos não estão dentro de nenhum grupo"
+#: ../../include/conversation.php:1133
+msgid "Post to Groups"
+msgstr "Postar em Grupos"
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr "URL de conexão faltando."
+#: ../../include/conversation.php:1134
+msgid "Post to Contacts"
+msgstr "Publique para Contatos"
 
-#: ../../include/follow.php:59
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Este site não está configurado para permitir comunicações com outras redes."
+#: ../../include/conversation.php:1135
+msgid "Private post"
+msgstr "Publicação privada"
 
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Não foi descoberto nenhum protocolo de comunicação ou fonte de notícias compatível."
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Adicionar Contato Novo"
 
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr "O endereço de perfil especificado não fornece informação adequada."
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Forneça endereço ou localização web"
 
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr "Não foi encontrado nenhum autor ou nome."
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Por exemplo: joao@exemplo.com, http://exemplo.com/maria"
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "Não foi possível encontrar nenhuma URL de navegação neste endereço."
+#: ../../include/contact_widgets.php:23
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d convite disponível"
+msgstr[1] "%d convites disponíveis"
 
-#: ../../include/follow.php:86
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Não foi possível  casa o estilo @ de Endereço de Identidade com um protocolo conhecido ou contato de email."
+#: ../../include/contact_widgets.php:29
+msgid "Find People"
+msgstr "Pesquisar por pessoas"
 
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr "Use mailto: antes do endereço para forçar a checagem de email."
+#: ../../include/contact_widgets.php:30
+msgid "Enter name or interest"
+msgstr "Fornecer nome ou interesse"
 
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "O endereço de perfil especificado pertence a uma rede que foi desabilitada neste site."
+#: ../../include/contact_widgets.php:31
+msgid "Connect/Follow"
+msgstr "Conectar-se/acompanhar"
 
-#: ../../include/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Perfil limitado. Essa pessoa não poderá receber notificações diretas/pessoais de você."
+#: ../../include/contact_widgets.php:32
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Examplos: Robert Morgenstein, Fishing"
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "Não foi possível recuperar a informação do contato."
+#: ../../include/contact_widgets.php:36
+msgid "Random Profile"
+msgstr "Perfil Randômico"
 
-#: ../../include/follow.php:259
-msgid "following"
-msgstr "acompanhando"
+#: ../../include/contact_widgets.php:70
+msgid "Networks"
+msgstr "Redes"
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr "[sem assunto]"
+#: ../../include/contact_widgets.php:73
+msgid "All Networks"
+msgstr "Todas as redes"
+
+#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
+msgid "Everything"
+msgstr "Tudo"
+
+#: ../../include/contact_widgets.php:135
+msgid "Categories"
+msgstr "Categorias"
 
 #: ../../include/nav.php:73
 msgid "End this session"
@@ -6529,158 +6785,81 @@ msgstr "Diretório"
 msgid "People directory"
 msgstr "Diretório de pessoas"
 
-#: ../../include/nav.php:140
-msgid "Conversations from your friends"
-msgstr "Conversas dos seus amigos"
-
-#: ../../include/nav.php:141
-msgid "Network Reset"
-msgstr "Reiniciar Rede"
-
-#: ../../include/nav.php:141
-msgid "Load Network page with no filters"
-msgstr "Carregar página Rede sem filtros"
-
-#: ../../include/nav.php:149
-msgid "Friend Requests"
-msgstr "Requisições de Amizade"
-
-#: ../../include/nav.php:151
-msgid "See all notifications"
-msgstr "Ver todas notificações"
-
-#: ../../include/nav.php:152
-msgid "Mark all system notifications seen"
-msgstr "Marcar todas as notificações de sistema como vistas"
-
-#: ../../include/nav.php:156
-msgid "Private mail"
-msgstr "Mensagem privada"
-
-#: ../../include/nav.php:157
-msgid "Inbox"
-msgstr "Recebidas"
-
-#: ../../include/nav.php:158
-msgid "Outbox"
-msgstr "Enviadas"
-
-#: ../../include/nav.php:162
-msgid "Manage"
-msgstr "Gerenciar"
-
-#: ../../include/nav.php:162
-msgid "Manage other pages"
-msgstr "Gerenciar outras páginas"
-
-#: ../../include/nav.php:165
-msgid "Delegations"
-msgstr "Delegações"
-
-#: ../../include/nav.php:169
-msgid "Manage/Edit Profiles"
-msgstr "Administrar/Editar Perfis"
-
-#: ../../include/nav.php:171
-msgid "Manage/edit friends and contacts"
-msgstr "Gerenciar/editar amigos e contatos"
-
-#: ../../include/nav.php:178
-msgid "Site setup and configuration"
-msgstr "Configurações do site"
-
-#: ../../include/nav.php:182
-msgid "Navigation"
-msgstr "Navegação"
-
-#: ../../include/nav.php:182
-msgid "Site map"
-msgstr "Mapa do Site"
-
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "j de F, Y"
+#: ../../include/nav.php:132
+msgid "Information"
+msgstr "Informação"
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "j de F"
-
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "Aniversário:"
-
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Idade:"
+#: ../../include/nav.php:132
+msgid "Information about this friendica instance"
+msgstr "Informação sobre esta instância do friendica"
 
-#: ../../include/profile_advanced.php:43
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "para %1$d %2$s"
+#: ../../include/nav.php:142
+msgid "Conversations from your friends"
+msgstr "Conversas dos seus amigos"
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Etiquetas:"
+#: ../../include/nav.php:143
+msgid "Network Reset"
+msgstr "Reiniciar Rede"
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Religião:"
+#: ../../include/nav.php:143
+msgid "Load Network page with no filters"
+msgstr "Carregar página Rede sem filtros"
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Passatempos/Interesses:"
+#: ../../include/nav.php:151
+msgid "Friend Requests"
+msgstr "Requisições de Amizade"
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Informações de contato e redes sociais:"
+#: ../../include/nav.php:153
+msgid "See all notifications"
+msgstr "Ver todas notificações"
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Preferências musicais:"
+#: ../../include/nav.php:154
+msgid "Mark all system notifications seen"
+msgstr "Marcar todas as notificações de sistema como vistas"
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Livros, literatura:"
+#: ../../include/nav.php:158
+msgid "Private mail"
+msgstr "Mensagem privada"
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Televisão:"
+#: ../../include/nav.php:159
+msgid "Inbox"
+msgstr "Recebidas"
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Filmes/dança/cultura/entretenimento:"
+#: ../../include/nav.php:160
+msgid "Outbox"
+msgstr "Enviadas"
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Amor/romance:"
+#: ../../include/nav.php:164
+msgid "Manage"
+msgstr "Gerenciar"
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Trabalho/emprego:"
+#: ../../include/nav.php:164
+msgid "Manage other pages"
+msgstr "Gerenciar outras páginas"
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "Escola/educação:"
+#: ../../include/nav.php:169
+msgid "Account settings"
+msgstr "Configurações da conta"
 
-#: ../../include/bbcode.php:215 ../../include/bbcode.php:614
-#: ../../include/bbcode.php:615
-msgid "Image/photo"
-msgstr "Imagem/foto"
+#: ../../include/nav.php:171
+msgid "Manage/Edit Profiles"
+msgstr "Administrar/Editar Perfis"
 
-#: ../../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 "<span><a href=\"%s\" target=\"external-link\">%s</a>escreveu o seguinte<a href=\"%s\" target=\"external-link\">publicação</a>"
+#: ../../include/nav.php:173
+msgid "Manage/edit friends and contacts"
+msgstr "Gerenciar/editar amigos e contatos"
 
-#: ../../include/bbcode.php:578 ../../include/bbcode.php:598
-msgid "$1 wrote:"
-msgstr "$1 escreveu:"
+#: ../../include/nav.php:180
+msgid "Site setup and configuration"
+msgstr "Configurações do site"
 
-#: ../../include/bbcode.php:625 ../../include/bbcode.php:626
-msgid "Encrypted content"
-msgstr "Conteúdo criptografado"
+#: ../../include/nav.php:184
+msgid "Navigation"
+msgstr "Navegação"
+
+#: ../../include/nav.php:184
+msgid "Site map"
+msgstr "Mapa do Site"
 
 #: ../../include/contact_selectors.php:32
 msgid "Unknown | Not categorised"
@@ -6750,528 +6929,432 @@ msgstr "pump.io"
 msgid "Twitter"
 msgstr "Twitter"
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Miscelânea"
-
-#: ../../include/datetime.php:153 ../../include/datetime.php:285
-msgid "year"
-msgstr "ano"
-
-#: ../../include/datetime.php:158 ../../include/datetime.php:286
-msgid "month"
-msgstr "mês"
-
-#: ../../include/datetime.php:163 ../../include/datetime.php:288
-msgid "day"
-msgstr "dia"
-
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "nunca"
-
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "menos de um segundo atrás"
-
-#: ../../include/datetime.php:285
-msgid "years"
-msgstr "anos"
-
-#: ../../include/datetime.php:286
-msgid "months"
-msgstr "meses"
-
-#: ../../include/datetime.php:287
-msgid "week"
-msgstr "semana"
-
-#: ../../include/datetime.php:287
-msgid "weeks"
-msgstr "semanas"
-
-#: ../../include/datetime.php:288
-msgid "days"
-msgstr "dias"
-
-#: ../../include/datetime.php:289
-msgid "hour"
-msgstr "hora"
-
-#: ../../include/datetime.php:289
-msgid "hours"
-msgstr "horas"
-
-#: ../../include/datetime.php:290
-msgid "minute"
-msgstr "minuto"
+#: ../../include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Conector do Diáspora"
 
-#: ../../include/datetime.php:290
-msgid "minutes"
-msgstr "minutos"
+#: ../../include/contact_selectors.php:91
+msgid "Statusnet"
+msgstr "Statusnet"
 
-#: ../../include/datetime.php:291
-msgid "second"
-msgstr "segundo"
+#: ../../include/enotify.php:16
+msgid "Friendica Notification"
+msgstr "Notificação Friendica"
 
-#: ../../include/datetime.php:291
-msgid "seconds"
-msgstr "segundos"
+#: ../../include/enotify.php:19
+msgid "Thank You,"
+msgstr "Obrigado,"
 
-#: ../../include/datetime.php:300
+#: ../../include/enotify.php:21
 #, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s atrás"
+msgid "%s Administrator"
+msgstr "%s Administrador"
 
-#: ../../include/datetime.php:472 ../../include/items.php:1829
+#: ../../include/enotify.php:40
 #, php-format
-msgid "%s's birthday"
-msgstr "aniversários de %s's"
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: ../../include/datetime.php:473 ../../include/items.php:1830
+#: ../../include/enotify.php:44
 #, php-format
-msgid "Happy Birthday %s"
-msgstr "Feliz Aniversário %s"
-
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "Funcionalidades Gerais"
-
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr "Perfís Múltiplos"
-
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr "Capacidade de criar perfis múltiplos"
-
-#: ../../include/features.php:30
-msgid "Post Composition Features"
-msgstr "Funcionalidades de Composição de Publicações"
-
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr "Editor Richtext"
-
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
-msgstr "Habilite editor richtext"
-
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr "Pré-visualização da Publicação"
-
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Permite pré-visualizar publicações e comentários antes de publicá-los"
-
-#: ../../include/features.php:37
-msgid "Network Sidebar Widgets"
-msgstr "Widgets da Barra Lateral da Rede"
-
-#: ../../include/features.php:38
-msgid "Search by Date"
-msgstr "Buscar por Data"
-
-#: ../../include/features.php:38
-msgid "Ability to select posts by date ranges"
-msgstr "Capacidade de selecionar publicações por intervalos de data"
-
-#: ../../include/features.php:39
-msgid "Group Filter"
-msgstr "Filtrar Grupo"
-
-#: ../../include/features.php:39
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Habilita widget para mostrar publicações da Rede somente de grupos selecionados"
-
-#: ../../include/features.php:40
-msgid "Network Filter"
-msgstr "Filtrar Rede"
-
-#: ../../include/features.php:40
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Habilita widget para mostrar publicações da Rede de redes selecionadas"
-
-#: ../../include/features.php:41
-msgid "Save search terms for re-use"
-msgstr "Guarde as palavras-chaves para reuso"
-
-#: ../../include/features.php:46
-msgid "Network Tabs"
-msgstr "Abas da Rede"
-
-#: ../../include/features.php:47
-msgid "Network Personal Tab"
-msgstr "Aba Pessoal da Rede"
-
-#: ../../include/features.php:47
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido"
-
-#: ../../include/features.php:48
-msgid "Network New Tab"
-msgstr "Aba Nova da Rede"
-
-#: ../../include/features.php:48
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)"
-
-#: ../../include/features.php:49
-msgid "Network Shared Links Tab"
-msgstr "Aba de Links Compartilhados da Rede"
-
-#: ../../include/features.php:49
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "Habilite aba para mostrar somente publicações da Rede que contenham links"
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notify] Nova mensagem recebida em %s"
 
-#: ../../include/features.php:54
-msgid "Post/Comment Tools"
-msgstr "Ferramentas de Publicação/Comentário"
+#: ../../include/enotify.php:46
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s lhe enviou uma mensagem privativa em %2$s."
 
-#: ../../include/features.php:55
-msgid "Multiple Deletion"
-msgstr "Deleção Multipla"
+#: ../../include/enotify.php:47
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s lhe enviou %2$s."
 
-#: ../../include/features.php:55
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Selecione e delete múltiplas publicações/comentário imediatamente"
+#: ../../include/enotify.php:47
+msgid "a private message"
+msgstr "uma mensagem privada"
 
-#: ../../include/features.php:56
-msgid "Edit Sent Posts"
-msgstr "Editar Publicações Enviadas"
+#: ../../include/enotify.php:48
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Favor visitar %s para ver e/ou responder às suas mensagens privadas."
 
-#: ../../include/features.php:56
-msgid "Edit and correct posts and comments after sending"
-msgstr "Editar e corrigir publicações e comentários após envio"
+#: ../../include/enotify.php:91
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s comentou uma [url=%2$s] %3$s[/url]"
 
-#: ../../include/features.php:57
-msgid "Tagging"
-msgstr "Etiquetagem"
+#: ../../include/enotify.php:98
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s comentou na %4$s de [url=%2$s]%3$s [/url]"
 
-#: ../../include/features.php:57
-msgid "Ability to tag existing posts"
-msgstr "Capacidade de colocar etiquetas em publicações existentes"
+#: ../../include/enotify.php:106
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s comentou [url=%2$s]sua %3$s[/url]"
 
-#: ../../include/features.php:58
-msgid "Post Categories"
-msgstr "Categorias de Publicações"
+#: ../../include/enotify.php:116
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica:Notify] Comentário na conversa #%1$d por %2$s"
 
-#: ../../include/features.php:58
-msgid "Add categories to your posts"
-msgstr "Adicione Categorias ás Publicações"
+#: ../../include/enotify.php:117
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s comentou um item/conversa que você está seguindo."
 
-#: ../../include/features.php:59
-msgid "Ability to file posts under folders"
-msgstr "Capacidade de arquivar publicações em pastas"
+#: ../../include/enotify.php:120 ../../include/enotify.php:135
+#: ../../include/enotify.php:148 ../../include/enotify.php:161
+#: ../../include/enotify.php:179 ../../include/enotify.php:192
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Favor visitar %s para ver e/ou responder à conversa."
 
-#: ../../include/features.php:60
-msgid "Dislike Posts"
-msgstr "Desgostar de publicações"
+#: ../../include/enotify.php:127
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Notify] %s publicou no mural do seu perfil"
 
-#: ../../include/features.php:60
-msgid "Ability to dislike posts/comments"
-msgstr "Capacidade de desgostar de publicações/comentários"
+#: ../../include/enotify.php:129
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s publicou no mural do seu perfil em %2$s"
 
-#: ../../include/features.php:61
-msgid "Star Posts"
-msgstr "Destacar publicações"
+#: ../../include/enotify.php:131
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s publicou para [url=%2$s]seu mural[/url]"
 
-#: ../../include/features.php:61
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Capacidade de marcar publicações especiais com uma estrela indicadora"
+#: ../../include/enotify.php:142
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notify] %s etiquetou você"
 
-#: ../../include/diaspora.php:704
-msgid "Sharing notification from Diaspora network"
-msgstr "Notificação de compartilhamento da rede Diaspora"
+#: ../../include/enotify.php:143
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s etiquetou você em %2$s"
 
-#: ../../include/diaspora.php:2264
-msgid "Attachments:"
-msgstr "Anexos:"
+#: ../../include/enotify.php:144
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]etiquetou você[/url]."
 
-#: ../../include/acl_selectors.php:325
-msgid "Visible to everybody"
-msgstr "Visível para todos"
+#: ../../include/enotify.php:155
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica:Notify] %s compartilhado uma nova publicação"
 
-#: ../../include/items.php:3511
-msgid "A new person is sharing with you at "
-msgstr "Uma nova pessoa está compartilhando com você em "
+#: ../../include/enotify.php:156
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s compartilhou uma nova publicação em %2$s"
 
-#: ../../include/items.php:3511
-msgid "You have a new follower at "
-msgstr "Você tem um novo acompanhante em "
+#: ../../include/enotify.php:157
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]compartilhou uma publicação[/url]."
 
-#: ../../include/items.php:4034
-msgid "Do you really want to delete this item?"
-msgstr "Você realmente deseja deletar esse item?"
+#: ../../include/enotify.php:169
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Notify] %1$s cutucou você"
 
-#: ../../include/items.php:4257
-msgid "Archives"
-msgstr "Arquivos"
+#: ../../include/enotify.php:170
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s cutucou você em %2$s"
 
-#: ../../include/oembed.php:138
-msgid "Embedded content"
-msgstr "Conteúdo incorporado"
+#: ../../include/enotify.php:171
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s [url=%2$s]cutucou você[/url]."
 
-#: ../../include/oembed.php:147
-msgid "Embedding disabled"
-msgstr "A incorporação está desabilitada"
+#: ../../include/enotify.php:186
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notify] %s etiquetou sua publicação"
 
-#: ../../include/security.php:22
-msgid "Welcome "
-msgstr "Bem-vindo(a) "
+#: ../../include/enotify.php:187
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s etiquetou sua publicação em %2$s"
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Por favor, envie uma foto para o perfil."
+#: ../../include/enotify.php:188
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s etiquetou [url=%2$s]sua publicação[/url]"
 
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "Bem-vindo(a) de volta "
+#: ../../include/enotify.php:199
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Notify] Você recebeu uma apresentação"
 
-#: ../../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 "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão."
+#: ../../include/enotify.php:200
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Você recebeu uma apresentação de '%1$s' em %2$s"
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Masculino"
+#: ../../include/enotify.php:201
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Você recebeu [url=%1$s]uma apresentação[/url] de %2$s."
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Feminino"
+#: ../../include/enotify.php:204 ../../include/enotify.php:222
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Você pode visitar o perfil deles em %s"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Atualmente masculino"
+#: ../../include/enotify.php:206
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Favor visitar %s para aprovar ou rejeitar a apresentação."
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Atualmente feminino"
+#: ../../include/enotify.php:213
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Notify] Você recebeu uma sugestão de amigo"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Masculino a maior parte do tempo"
+#: ../../include/enotify.php:214
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Você recebeu uma sugestão de amigo de '%1$s' em %2$s"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Feminino a maior parte do tempo"
+#: ../../include/enotify.php:215
+#, php-format
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "Você recebeu [url=%1$s]uma sugestão de amigo[/url] de %2$s em %3$s"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgênero"
+#: ../../include/enotify.php:220
+msgid "Name:"
+msgstr "Nome:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Intersexual"
+#: ../../include/enotify.php:221
+msgid "Photo:"
+msgstr "Foto:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transexual"
+#: ../../include/enotify.php:224
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Favor visitar %s para aprovar ou rejeitar a sugestão."
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermafrodita"
+#: ../../include/user.php:39
+msgid "An invitation is required."
+msgstr "É necessário um convite."
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Neutro"
+#: ../../include/user.php:44
+msgid "Invitation could not be verified."
+msgstr "Não foi possível verificar o convite."
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Não específico"
+#: ../../include/user.php:52
+msgid "Invalid OpenID url"
+msgstr "A URL do OpenID é inválida"
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Outro"
+#: ../../include/user.php:73
+msgid "Please enter the required information."
+msgstr "Por favor, forneça a informação solicitada."
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Indeciso"
+#: ../../include/user.php:87
+msgid "Please use a shorter name."
+msgstr "Por favor, use um nome mais curto."
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Homens"
+#: ../../include/user.php:89
+msgid "Name too short."
+msgstr "O nome é muito curto."
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Mulheres"
+#: ../../include/user.php:104
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Isso não parece ser o seu nome completo (Nome Sobrenome)."
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Gays"
+#: ../../include/user.php:109
+msgid "Your email domain is not among those allowed on this site."
+msgstr "O domínio do seu e-mail não está entre os permitidos neste site."
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lésbicas"
+#: ../../include/user.php:112
+msgid "Not a valid email address."
+msgstr "Não é um endereço de e-mail válido."
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Sem preferência"
+#: ../../include/user.php:125
+msgid "Cannot use that email."
+msgstr "Não é possível usar esse e-mail."
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bissexuais"
+#: ../../include/user.php:131
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
+msgstr "A sua identificação pode conter somente os caracteres \"a-z\", \"0-9\", \"-\", e \"_\", além disso, deve começar com uma letra."
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autossexuais"
+#: ../../include/user.php:137 ../../include/user.php:235
+msgid "Nickname is already registered. Please choose another."
+msgstr "Esta identificação já foi registrada. Por favor, escolha outra."
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Abstêmios"
+#: ../../include/user.php:147
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Essa identificação já foi registrada e não pode ser reutilizada. Por favor, escolha outra."
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Virgens"
+#: ../../include/user.php:163
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "ERRO GRAVE: Não foi possível gerar as chaves de segurança."
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Desviantes"
+#: ../../include/user.php:221
+msgid "An error occurred during registration. Please try again."
+msgstr "Ocorreu um erro durante o registro. Por favor, tente novamente."
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetiches"
+#: ../../include/user.php:256
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente."
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Insaciável"
+#: ../../include/acl_selectors.php:326
+msgid "Visible to everybody"
+msgstr "Visível para todos"
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Não sexual"
+#: ../../include/bbcode.php:287 ../../include/bbcode.php:920
+#: ../../include/bbcode.php:921
+msgid "Image/photo"
+msgstr "Imagem/foto"
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Solteiro(a)"
+#: ../../include/bbcode.php:357
+#, php-format
+msgid ""
+"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"_blank\">post</a>"
+msgstr "<span><a href=\"%s\" target=\"_blank\">%s</a> escreveu a seguinte <a href=\"%s\" target=\"_blank\">publicação</a>"
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Solitário(a)"
+#: ../../include/bbcode.php:458
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Disponível"
+#: ../../include/bbcode.php:884 ../../include/bbcode.php:904
+msgid "$1 wrote:"
+msgstr "$1 escreveu:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Não disponível"
+#: ../../include/bbcode.php:935 ../../include/bbcode.php:936
+msgid "Encrypted content"
+msgstr "Conteúdo criptografado"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "Tem uma paixão"
+#: ../../include/oembed.php:174
+msgid "Embedded content"
+msgstr "Conteúdo incorporado"
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "Apaixonado"
+#: ../../include/oembed.php:183
+msgid "Embedding disabled"
+msgstr "A incorporação está desabilitada"
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Saindo com alguém"
+#: ../../include/group.php:25
+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 "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes <strong>poderão</strong> ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente."
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Infiel"
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr "Grupo de privacidade padrão para novos contatos"
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Viciado(a) em sexo"
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Todos"
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Amigos/Benefícios"
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "editar"
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Casual"
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Editar grupo"
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Envolvido(a)"
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Criar um novo grupo"
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Casado(a)"
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
+msgstr "Contatos não estão dentro de nenhum grupo"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "Casado imaginariamente"
+#: ../../include/Contact.php:115
+msgid "stopped following"
+msgstr "parou de acompanhar"
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Parceiros"
+#: ../../include/Contact.php:234
+msgid "Drop Contact"
+msgstr "Excluir o contato"
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "Coabitando"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Miscelânea"
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr "Direito comum"
+#: ../../include/datetime.php:153 ../../include/datetime.php:285
+msgid "year"
+msgstr "ano"
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Feliz"
+#: ../../include/datetime.php:158 ../../include/datetime.php:286
+msgid "month"
+msgstr "mês"
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Não estou procurando"
+#: ../../include/datetime.php:163 ../../include/datetime.php:288
+msgid "day"
+msgstr "dia"
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "nunca"
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Traído(a)"
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "menos de um segundo atrás"
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Separado(a)"
+#: ../../include/datetime.php:285
+msgid "years"
+msgstr "anos"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Instável"
+#: ../../include/datetime.php:286
+msgid "months"
+msgstr "meses"
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Divorciado(a)"
+#: ../../include/datetime.php:287
+msgid "week"
+msgstr "semana"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "Divorciado imaginariamente"
+#: ../../include/datetime.php:287
+msgid "weeks"
+msgstr "semanas"
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Viúvo(a)"
+#: ../../include/datetime.php:288
+msgid "days"
+msgstr "dias"
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Incerto(a)"
+#: ../../include/datetime.php:289
+msgid "hour"
+msgstr "hora"
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "É complicado"
+#: ../../include/datetime.php:289
+msgid "hours"
+msgstr "horas"
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Não importa"
+#: ../../include/datetime.php:290
+msgid "minute"
+msgstr "minuto"
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Pergunte-me"
+#: ../../include/datetime.php:290
+msgid "minutes"
+msgstr "minutos"
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr "parou de acompanhar"
+#: ../../include/datetime.php:291
+msgid "second"
+msgstr "segundo"
 
-#: ../../include/Contact.php:233
-msgid "Drop Contact"
-msgstr "Excluir o contato"
+#: ../../include/datetime.php:291
+msgid "seconds"
+msgstr "segundos"
 
-#: ../../include/dba.php:44
+#: ../../include/datetime.php:300
 #, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'"
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s atrás"
+
+#: ../../include/network.php:886
+msgid "view full size"
+msgstr "ver na tela inteira"
index 9503c0d4cab96ba04d072912ca445a1e9014c0fa..5c1ebfd478720193855372ae62e61da0a8794fd1 100644 (file)
@@ -58,339 +58,125 @@ $a->strings["Page not found."] = "Página não encontrada.";
 $a->strings["Permission denied"] = "Permissão negada";
 $a->strings["Permission denied."] = "Permissão negada.";
 $a->strings["toggle mobile"] = "habilita mobile";
-$a->strings["Home"] = "Pessoal";
-$a->strings["Your posts and conversations"] = "Suas publicações e conversas";
-$a->strings["Profile"] = "Perfil ";
-$a->strings["Your profile page"] = "Sua página de perfil";
-$a->strings["Photos"] = "Fotos";
-$a->strings["Your photos"] = "Suas fotos";
-$a->strings["Events"] = "Eventos";
-$a->strings["Your events"] = "Seus eventos";
-$a->strings["Personal notes"] = "Suas anotações pessoais";
-$a->strings["Your personal photos"] = "Suas fotos pessoais";
-$a->strings["Community"] = "Comunidade";
-$a->strings["don't show"] = "não exibir";
-$a->strings["show"] = "exibir";
-$a->strings["Theme settings"] = "Configurações do tema";
-$a->strings["Set font-size for posts and comments"] = "Escolha o tamanho da fonte para publicações e comentários";
-$a->strings["Set line-height for posts and comments"] = "Escolha comprimento da linha para publicações e comentários";
-$a->strings["Set resolution for middle column"] = "Escolha a resolução para a coluna do meio";
-$a->strings["Contacts"] = "Contatos";
-$a->strings["Your contacts"] = "Seus contatos";
-$a->strings["Community Pages"] = "Páginas da Comunidade";
-$a->strings["Community Profiles"] = "Profiles Comunitários";
-$a->strings["Last users"] = "Últimos usuários";
-$a->strings["Last likes"] = "Últimas gostadas";
-$a->strings["event"] = "evento";
-$a->strings["status"] = "status";
-$a->strings["photo"] = "foto";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gosta de %3\$s de %2\$s";
-$a->strings["Last photos"] = "Últimas fotos";
-$a->strings["Contact Photos"] = "Fotos dos contatos";
-$a->strings["Profile Photos"] = "Fotos do perfil";
-$a->strings["Find Friends"] = "Encontrar amigos";
-$a->strings["Local Directory"] = "Diretório Local";
-$a->strings["Global Directory"] = "Diretório global";
-$a->strings["Similar Interests"] = "Interesses Parecidos";
-$a->strings["Friend Suggestions"] = "Sugestões de amigos";
-$a->strings["Invite Friends"] = "Convidar amigos";
-$a->strings["Settings"] = "Configurações";
-$a->strings["Earth Layers"] = "Camadas da Terra";
-$a->strings["Set zoomfactor for Earth Layers"] = "Configure o zoom para Camadas da Terra";
-$a->strings["Set longitude (X) for Earth Layers"] = "Configure longitude (X) para Camadas da Terra";
-$a->strings["Set latitude (Y) for Earth Layers"] = "Configure latitude (Y) para Camadas da Terra";
-$a->strings["Help or @NewHere ?"] = "Ajuda ou @NewHere ?";
-$a->strings["Connect Services"] = "Conectar serviços";
-$a->strings["Show/hide boxes at right-hand column:"] = "Mostre/esconda caixas na coluna à direita:";
-$a->strings["Set color scheme"] = "Configure o esquema de cores";
-$a->strings["Set zoomfactor for Earth Layer"] = "Configure o zoom para Camadas da Terra";
-$a->strings["Alignment"] = "Alinhamento";
-$a->strings["Left"] = "Esquerda";
-$a->strings["Center"] = "Centro";
-$a->strings["Color scheme"] = "Esquema de cores";
-$a->strings["Posts font size"] = "Tamanho da fonte para publicações";
-$a->strings["Textareas font size"] = "Tamanho da fonte para campos texto";
-$a->strings["Set colour scheme"] = "Configure o esquema de cores";
-$a->strings["default"] = "padrão";
-$a->strings["Background Image"] = "Imagem de fundo";
-$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = "A URL de uma imagem (ex. do seu álbum de fotos) que possa ser usada como fundo da tela.";
-$a->strings["Background Color"] = "Cor do fundo";
-$a->strings["HEX value for the background color. Don't include the #"] = "Valor hexadecimal para a cor do fundo. Não inclua o #.";
-$a->strings["font size"] = "tamanho da fonte";
-$a->strings["base font size for your interface"] = "tamanho base da fonte para a sua interface";
-$a->strings["Set resize level for images in posts and comments (width and height)"] = "Configure o nível de redimensionamento para imagens em publicações e comentários (largura e altura)";
-$a->strings["Set theme width"] = "Configure a largura do tema";
-$a->strings["Delete this item?"] = "Excluir este item?";
-$a->strings["show fewer"] = "exibir menos";
-$a->strings["Update %s failed. See error logs."] = "Atualização %s falhou. Vide registro de erros (log).";
-$a->strings["Update Error at %s"] = "Erro de Atualização em %s";
-$a->strings["Create a New Account"] = "Criar uma nova conta";
-$a->strings["Register"] = "Registrar";
-$a->strings["Logout"] = "Sair";
-$a->strings["Login"] = "Entrar";
-$a->strings["Nickname or Email address: "] = "Identificação ou endereço de e-mail: ";
-$a->strings["Password: "] = "Senha: ";
-$a->strings["Remember me"] = "Lembre-se de mim";
-$a->strings["Or login using OpenID: "] = "Ou login usando OpendID:";
-$a->strings["Forgot your password?"] = "Esqueceu a sua senha?";
-$a->strings["Password Reset"] = "Reiniciar a senha";
-$a->strings["Website Terms of Service"] = "Termos de Serviço do Website";
-$a->strings["terms of service"] = "termos de serviço";
-$a->strings["Website Privacy Policy"] = "Política de Privacidade do Website";
-$a->strings["privacy policy"] = "política de privacidade";
-$a->strings["Requested account is not available."] = "Conta solicitada não disponível";
-$a->strings["Requested profile is not available."] = "Perfil solicitado não está disponível.";
-$a->strings["Edit profile"] = "Editar perfil";
-$a->strings["Connect"] = "Conectar";
-$a->strings["Message"] = "Mensagem";
-$a->strings["Profiles"] = "Perfis";
-$a->strings["Manage/edit profiles"] = "Gerenciar/editar perfis";
-$a->strings["Change profile photo"] = "Mudar a foto do perfil";
-$a->strings["Create New Profile"] = "Criar um novo perfil";
-$a->strings["Profile Image"] = "Imagem do perfil";
-$a->strings["visible to everybody"] = "visível para todos";
-$a->strings["Edit visibility"] = "Editar a visibilidade";
-$a->strings["Location:"] = "Localização:";
-$a->strings["Gender:"] = "Gênero:";
-$a->strings["Status:"] = "Situação:";
-$a->strings["Homepage:"] = "Página web:";
-$a->strings["g A l F d"] = "G l d F";
-$a->strings["F d"] = "F d";
-$a->strings["[today]"] = "[hoje]";
-$a->strings["Birthday Reminders"] = "Lembretes de aniversário";
-$a->strings["Birthdays this week:"] = "Aniversários nesta semana:";
-$a->strings["[No description]"] = "[Sem descrição]";
-$a->strings["Event Reminders"] = "Lembretes de eventos";
-$a->strings["Events this week:"] = "Eventos esta semana:";
-$a->strings["Status"] = "Status";
-$a->strings["Status Messages and Posts"] = "Mensagem de Estado (status) e Publicações";
-$a->strings["Profile Details"] = "Detalhe do Perfil";
-$a->strings["Photo Albums"] = "Álbuns de fotos";
-$a->strings["Videos"] = "Vídeos";
-$a->strings["Events and Calendar"] = "Eventos e Agenda";
-$a->strings["Personal Notes"] = "Notas pessoais";
-$a->strings["Only You Can See This"] = "Somente Você Pode Ver Isso";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s atualmente está %2\$s";
-$a->strings["Mood"] = "Humor";
-$a->strings["Set your current mood and tell your friends"] = "Defina o seu humor e conte aos seus amigos";
-$a->strings["Public access denied."] = "Acesso público negado.";
-$a->strings["Item not found."] = "O item não foi encontrado.";
-$a->strings["Access to this profile has been restricted."] = "O acesso a este perfil está restrito.";
-$a->strings["Item has been removed."] = "O item foi removido.";
-$a->strings["Access denied."] = "Acesso negado.";
-$a->strings["This is Friendica, version"] = "Este é o Friendica, versão";
-$a->strings["running at web location"] = "sendo executado no endereço web";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Por favor, visite <a href=\"http://friendica.com\">friendica.com</a> para aprender mais sobre o projeto Friendica.";
-$a->strings["Bug reports and issues: please visit"] = "Relatos e acompanhamentos de erros podem ser encontrados em";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com";
-$a->strings["Installed plugins/addons/apps:"] = "Plugins/complementos/aplicações instaladas:";
-$a->strings["No installed plugins/addons/apps"] = "Nenhum plugin/complemento/aplicativo instalado";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s dá as boas vinda à %2\$s";
-$a->strings["Registration details for %s"] = "Detalhes do registro de %s";
-$a->strings["Registration successful. Please check your email for further instructions."] = "O registro foi bem sucedido. Por favor, verifique seu e-mail para maiores informações.";
-$a->strings["Failed to send email message. Here is the message that failed."] = "Não foi possível enviar a mensagem de e-mail. Aqui está a mensagem que não foi.";
-$a->strings["Your registration can not be processed."] = "Não foi possível processar o seu registro.";
-$a->strings["Registration request at %s"] = "Solicitação de registro em %s";
-$a->strings["Your registration is pending approval by the site owner."] = "A aprovação do seu registro está pendente junto ao administrador do site.";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Você pode (opcionalmente) preencher este formulário via OpenID, fornecendo seu OpenID e clicando em 'Registrar'.";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se você não está familiarizado com o OpenID, por favor, deixe esse campo em branco e preencha os outros itens.";
-$a->strings["Your OpenID (optional): "] = "Seu OpenID (opcional): ";
-$a->strings["Include your profile in member directory?"] = "Incluir o seu perfil no diretório de membros?";
-$a->strings["Yes"] = "Sim";
-$a->strings["No"] = "Não";
-$a->strings["Membership on this site is by invitation only."] = "A associação a este site só pode ser feita mediante convite.";
-$a->strings["Your invitation ID: "] = "A ID do seu convite: ";
-$a->strings["Registration"] = "Registro";
-$a->strings["Your Full Name (e.g. Joe Smith): "] = "Seu nome completo (ex: José da Silva): ";
-$a->strings["Your Email Address: "] = "Seu endereço de e-mail: ";
-$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>'."] = "Selecione uma identificação para o perfil. Ela deve começar com um caractere alfabético. O endereço do seu perfil neste site será '<strong>identificação@\$sitename</strong>'";
-$a->strings["Choose a nickname: "] = "Escolha uma identificação: ";
-$a->strings["Import"] = "Importar";
-$a->strings["Import your profile to this friendica instance"] = "Importa seu perfil  desta instância do friendica";
-$a->strings["Profile not found."] = "O perfil não foi encontrado.";
+$a->strings["[Embedded content - reload page to view]"] = "[Conteúdo incorporado - recarregue a página para ver]";
 $a->strings["Contact not found."] = "O contato não foi encontrado.";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Isso pode acontecer eventualmente se o contato foi solicitado por ambas as pessoas e ele já tinha sido aprovado.";
-$a->strings["Response from remote site was not understood."] = "A resposta do site remoto não foi compreendida.";
-$a->strings["Unexpected response from remote site: "] = "Resposta inesperada do site remoto: ";
-$a->strings["Confirmation completed successfully."] = "A confirmação foi completada com sucesso.";
-$a->strings["Remote site reported: "] = "O site remoto relatou: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Falha temporária. Por favor, aguarde e tente novamente.";
-$a->strings["Introduction failed or was revoked."] = "Ocorreu uma falha na apresentação ou ela foi revogada.";
-$a->strings["Unable to set contact photo."] = "Não foi possível definir a foto do contato.";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s agora é amigo de %2\$s";
-$a->strings["No user record found for '%s' "] = "Não foi encontrado nenhum registro de usuário para '%s' ";
-$a->strings["Our site encryption key is apparently messed up."] = "A chave de criptografia do nosso site está, aparentemente, bagunçada.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Foi fornecida uma URL em branco ou não foi possível descriptografá-la.";
-$a->strings["Contact record was not found for you on our site."] = "O registro do contato não foi encontrado para você em seu site.";
-$a->strings["Site public key not available in contact record for URL %s."] = "A chave pública do site não está disponível no registro do contato para a URL %s";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve funcionar agora, se você tentar de novo.";
-$a->strings["Unable to set your contact credentials on our system."] = "Não foi possível definir suas credenciais de contato no nosso sistema.";
-$a->strings["Unable to update your contact profile details on our system"] = "Não foi possível atualizar os detalhes do seu perfil em nosso sistema.";
-$a->strings["Connection accepted at %s"] = "Conexão aceita em %s";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s se associou a %2\$s";
-$a->strings["Authorize application connection"] = "Autorizar a conexão com a aplicação";
-$a->strings["Return to your app and insert this Securty Code:"] = "Volte para a sua aplicação e digite este código de segurança:";
-$a->strings["Please login to continue."] = "Por favor, autentique-se para continuar.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?";
-$a->strings["No valid account found."] = "Não foi encontrada nenhuma conta válida.";
-$a->strings["Password reset request issued. Check your email."] = "A solicitação para reiniciar sua senha foi encaminhada. Verifique seu e-mail.";
-$a->strings["Password reset requested at %s"] = "Foi feita uma solicitação de reiniciação da senha em %s";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi reiniciada.";
-$a->strings["Your password has been reset as requested."] = "Sua senha foi reiniciada, conforme solicitado.";
-$a->strings["Your new password is"] = "Sua nova senha é";
-$a->strings["Save or copy your new password - and then"] = "Grave ou copie a sua nova senha e, então";
-$a->strings["click here to login"] = "clique aqui para entrar";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Sua senha pode ser alterada na página de <em>Configurações</em> após você entrar em seu perfil.";
-$a->strings["Your password has been changed at %s"] = "Sua senha foi modifica às %s";
-$a->strings["Forgot your Password?"] = "Esqueceu a sua senha?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Digite o seu endereço de e-mail e clique em 'Reiniciar' para prosseguir com a reiniciação da sua senha. Após isso, verifique seu e-mail para mais instruções.";
-$a->strings["Nickname or Email: "] = "Identificação ou e-mail: ";
-$a->strings["Reset"] = "Reiniciar";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "O número diário de mensagens do mural de %s foi excedido. Não foi possível enviar a mensagem.";
-$a->strings["No recipient selected."] = "Não foi selecionado nenhum destinatário.";
-$a->strings["Unable to check your home location."] = "Não foi possível verificar a sua localização.";
-$a->strings["Message could not be sent."] = "Não foi possível enviar a mensagem.";
-$a->strings["Message collection failure."] = "Falha na coleta de mensagens.";
-$a->strings["Message sent."] = "A mensagem foi enviada.";
-$a->strings["No recipient."] = "Nenhum destinatário.";
-$a->strings["Please enter a link URL:"] = "Por favor, digite uma URL:";
-$a->strings["Send Private Message"] = "Enviar mensagem privada";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Caso você deseje uma resposta de %s, por favor verifique se as configurações de privacidade em seu site permitem o recebimento de mensagens de remetentes desconhecidos.";
-$a->strings["To:"] = "Para:";
-$a->strings["Subject:"] = "Assunto:";
-$a->strings["Your message:"] = "Sua mensagem:";
-$a->strings["Upload photo"] = "Enviar foto";
-$a->strings["Insert web link"] = "Inserir link web";
-$a->strings["Welcome to Friendica"] = "Bemvindo ao Friendica";
-$a->strings["New Member Checklist"] = "Dicas para os novos membros";
-$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."] = "Gostaríamos de oferecer algumas dicas e links para ajudar a tornar a sua experiência agradável. Clique em qualquer item para visitar a página correspondente. Um link para essa página será visível em sua home page por duas semanas após o seu registro inicial e, então, desaparecerá discretamente.";
-$a->strings["Getting Started"] = "Do Início";
-$a->strings["Friendica Walk-Through"] = "Passo-a-passo da friendica";
-$a->strings["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."] = "Na sua página <em>Início Rápido</em> - encontre uma introdução rápida ao seu perfil e abas da rede, faça algumas conexões novas, e encontre alguns grupos entrar.";
-$a->strings["Go to Your Settings"] = "Ir para as suas configurações";
-$a->strings["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."] = "Em sua página  <em>Configurações</em> - mude sua senha inicial. Também tome nota de seu Endereço de Identidade. Isso se parece com um endereço de e-mail - e será útil para se fazer amigos na rede social livre.";
-$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Revise as outras configurações, em particular as relacionadas a privacidade. Não estar listado no diretório é o equivalente a não ter o seu número na lista telefônica. Normalmente é interessante você estar listado - a não ser que os seu amigos atuais e potenciais saibam exatamente como encontrar você.";
-$a->strings["Upload Profile Photo"] = "Enviar foto do perfil";
-$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Envie uma foto para o seu perfil, caso ainda não tenha feito isso. Estudos indicam que pessoas que publicam fotos reais delas mesmas têm 10 vezes mais chances de encontrar novos amigos do que as que não o fazem.";
-$a->strings["Edit Your Profile"] = "Editar seu perfil";
-$a->strings["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."] = "Edite o seu perfil <strong>padrão</strong> a seu gosto. Revise as configurações de ocultação da sua lista de amigos e do seu perfil de visitantes desconhecidos.";
-$a->strings["Profile Keywords"] = "Palavras-chave do perfil";
-$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."] = "Defina algumas palavras-chave públicas para o seu perfil padrão, que descrevam os seus interesses. Nós podemos encontrar outras pessoas com interesses similares e sugerir novas amizades.";
-$a->strings["Connecting"] = "Conexões";
-$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."] = "Autorize o Conector com Facebook, caso você tenha uma conta lá e nós (opcionalmente) importaremos todos os seus amigos e conversas do Facebook.";
-$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Se</em> esse é o seu servidor pessoal, instalar o complemento do Facebook talvez facilite a transição para a rede social livre.";
-$a->strings["Importing Emails"] = "Importação de e-mails";
-$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Forneça a informação de acesso ao seu e-mail na sua página de Configuração de Conector se você deseja importar e interagir com amigos ou listas de discussão da sua Caixa de Entrada de e-mail";
-$a->strings["Go to Your Contacts Page"] = "Ir para a sua página de contatos";
-$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Sua página de contatos é sua rota para o gerenciamento de amizades e conexão com amigos em outras redes. Geralmente você fornece o endereço deles ou a URL do site na janela de diálogo <em>Adicionar Novo Contato</em>.";
-$a->strings["Go to Your Site's Directory"] = "Ir para o diretório do seu site";
-$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 página de Diretório permite que você encontre outras pessoas nesta rede ou em outras redes federadas. Procure por um link <em>Conectar</em> ou <em>Seguir</em> no perfil que deseja acompanhar. Forneça o seu Endereço de Identidade próprio, se solicitado.";
-$a->strings["Finding New People"] = "Pesquisar por novas pessoas";
-$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."] = "No painel lateral da página de Contatos existem várias ferramentas para encontrar novos amigos. Você pode descobrir pessoas com os mesmos interesses, procurar por nomes ou interesses e fornecer sugestões baseadas nos relacionamentos da rede. Em um site completamente novo, as sugestões de amizades geralmente começam a ser populadas dentro de 24 horas.";
-$a->strings["Groups"] = "Grupos";
-$a->strings["Group Your Contacts"] = "Agrupe seus contatos";
-$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."] = "Após fazer novas amizades, organize-as em grupos de conversa privados, a partir da barra lateral na sua página de Contatos. A partir daí, você poderá interagir com cada grupo privativamente, na sua página de Rede.";
-$a->strings["Why Aren't My Posts Public?"] = "Por que as minhas publicações não são públicas?";
-$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "A friendica respeita sua privacidade. Por padrão, suas publicações estarão visíveis apenas para as pessoas que você adicionou como amigos. Para mais informações, veja a página de ajuda, a partir do link acima.";
-$a->strings["Getting Help"] = "Obtendo ajuda";
-$a->strings["Go to the Help Section"] = "Ir para a seção de ajuda";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Nossas páginas de <strong>ajuda</strong> podem ser consultadas para mais detalhes sobre características e recursos do programa.";
-$a->strings["Do you really want to delete this suggestion?"] = "Você realmente deseja deletar essa sugestão?";
-$a->strings["Cancel"] = "Cancelar";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Não existe nenhuma sugestão disponível. Se este for um site novo, por favor tente novamente em 24 horas.";
-$a->strings["Ignore/Hide"] = "Ignorar/Ocultar";
-$a->strings["Search Results For:"] = "Resultados de Busca Por:";
-$a->strings["Remove term"] = "Remover o termo";
-$a->strings["Saved Searches"] = "Pesquisas salvas";
-$a->strings["add"] = "adicionar";
-$a->strings["Commented Order"] = "Ordem dos comentários";
-$a->strings["Sort by Comment Date"] = "Ordenar pela data do comentário";
-$a->strings["Posted Order"] = "Ordem das publicações";
-$a->strings["Sort by Post Date"] = "Ordenar pela data de publicação";
-$a->strings["Personal"] = "Pessoal";
-$a->strings["Posts that mention or involve you"] = "Publicações que mencionem ou envolvam você";
-$a->strings["New"] = "Nova";
-$a->strings["Activity Stream - by date"] = "Fluxo de atividades - por data";
-$a->strings["Shared Links"] = "Links compartilhados";
-$a->strings["Interesting Links"] = "Links interessantes";
-$a->strings["Starred"] = "Destacada";
-$a->strings["Favourite Posts"] = "Publicações favoritas";
-$a->strings["Warning: This group contains %s member from an insecure network."] = array(
-       0 => "Aviso: Este grupo contém %s membro de uma rede insegura.",
-       1 => "Aviso: Este grupo contém %s membros de uma rede insegura.",
+$a->strings["Friend suggestion sent."] = "A sugestão de amigo foi enviada";
+$a->strings["Suggest Friends"] = "Sugerir amigos";
+$a->strings["Suggest a friend for %s"] = "Sugerir um amigo para %s";
+$a->strings["This introduction has already been accepted."] = "Esta apresentação já foi aceita.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "A localização do perfil não é válida ou não contém uma informação de perfil.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Aviso: a localização do perfil não possui nenhum nome identificável do seu dono.";
+$a->strings["Warning: profile location has no profile photo."] = "Aviso: a localização do perfil não possui nenhuma foto do perfil.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "O parâmetro requerido %d não foi encontrado na localização fornecida",
+       1 => "Os parâmetros requeridos %d não foram encontrados na localização fornecida",
 );
-$a->strings["Private messages to this group are at risk of public disclosure."] = "Mensagens privadas para este grupo correm o risco de sofrerem divulgação pública.";
-$a->strings["No such group"] = "Este grupo não existe";
-$a->strings["Group is empty"] = "O grupo está vazio";
-$a->strings["Group: "] = "Grupo: ";
-$a->strings["Contact: "] = "Contato: ";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação pública.";
-$a->strings["Invalid contact."] = "Contato inválido.";
-$a->strings["Friendica Communications Server - Setup"] = "Servidor de Comunicações Friendica - Configuração";
-$a->strings["Could not connect to database."] = "Não foi possível conectar ao banco de dados.";
-$a->strings["Could not create table."] = "Não foi possível criar tabela.";
-$a->strings["Your Friendica site database has been installed."] = "O banco de dados do seu site Friendica foi instalado.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Você provavelmente precisará importar o arquivo \"database.sql\" manualmente, usando o phpmyadmin ou o mysql.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Por favor, dê uma olhada no arquivo \"INSTALL.TXT\".";
-$a->strings["System check"] = "Checagem do sistema";
-$a->strings["Next"] = "Próximo";
-$a->strings["Check again"] = "Checar novamente";
-$a->strings["Database connection"] = "Conexão de banco de dados";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "À fim de instalar o Friendica, você precisa saber como se conectar ao seu banco de dados.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a essas configurações.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "O banco de dados que você especificou abaixo já deve existir. Caso contrário, por favor crie-o antes de continuar.";
-$a->strings["Database Server Name"] = "Nome do servidor de banco de dados";
-$a->strings["Database Login Name"] = "Nome do usuário do banco de dados";
-$a->strings["Database Login Password"] = "Senha do usuário do banco de dados";
-$a->strings["Database Name"] = "Nome do banco de dados";
-$a->strings["Site administrator email address"] = "Endereço de email do administrador do site";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web.";
-$a->strings["Please select a default timezone for your website"] = "Por favor, selecione o fuso horário padrão para o seu site";
-$a->strings["Site settings"] = "Configurações do site";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu servidor web.";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Caso você não tenha uma versão de linha de comando do PHP instalado no seu servidor, você não será capaz de executar a captação em segundo plano. Dê uma olhada em <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
-$a->strings["PHP executable path"] = "Caminho para o executável do PhP";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação.";
-$a->strings["Command line PHP"] = "PHP em linha de comando";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "O executável do PHP não é o binário do php cli (could be cgi-fcgi version)";
-$a->strings["Found PHP version: "] = "Encontrado PHP versão:";
-$a->strings["PHP cli binary"] = "Binário cli do PHP";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema.";
-$a->strings["This is required for message delivery to work."] = "Isto é necessário para o funcionamento do envio de mensagens.";
-$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\".";
-$a->strings["Generate encryption keys"] = "Gerar chaves de encriptação";
-$a->strings["libCurl PHP module"] = "Módulo PHP libCurl";
-$a->strings["GD graphics PHP module"] = "Módulo PHP GD graphics";
-$a->strings["OpenSSL PHP module"] = "Módulo PHP OpenSSL";
-$a->strings["mysqli PHP module"] = "Módulo PHP mysqli";
-$a->strings["mb_string PHP module"] = "Módulo PHP mb_string ";
-$a->strings["Apache mod_rewrite module"] = "Módulo mod_rewrite do Apache";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Erro: o módulo libCURL do PHP é necessário, mas não está instalado.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Erro: o módulo openssl do PHP é necessário, mas não está instalado.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Erro: o módulo mysqli do PHP é necessário, mas não está instalado.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Erro: o módulo mb_string PHP é necessário, mas não está instalado.";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo.";
-$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta.";
-$a->strings["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."] = "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome. htconfig.php, na pasta raiz da instalação do seu Friendica.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"INSTALL.TXT\" para instruções.";
-$a->strings[".htconfig.php is writable"] = ".htconfig.php tem permissão de escrita";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa o engine de template Smarty3 para renderizar suas web views. Smarty3 compila templates para PHP para acelerar a renderização.";
-$a->strings["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."] = "Para guardar os templates compilados, o servidor web necessita de permissão de escrita no diretório view/smarty3/ no diretório raíz do Friendica.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Favor se certificar que o usuário sob o qual o servidor web roda (ex: www-data) tenha permissão de escrita nesse diretório.";
-$a->strings["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."] = "Nota: como uma medida de segurança, você deve fornecer ao servidor web permissão de escrita em view/smarty3/ somente--não aos arquivos de template (.tpl) que ele contém.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 tem escrita permitida";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "A reescrita de URLs definida no .htaccess não está funcionando. Por favor, verifique as configurações do seu servidor.";
-$a->strings["Url rewrite is working"] = "A reescrita de URLs está funcionando";
-$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web.";
-$a->strings["Errors encountered creating database tables."] = "Foram encontrados erros durante a criação das tabelas do banco de dados.";
-$a->strings["<h1>What next</h1>"] = "<h1>A seguir</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o captador.";
+$a->strings["Introduction complete."] = "A apresentação foi finalizada.";
+$a->strings["Unrecoverable protocol error."] = "Ocorreu um erro irrecuperável de protocolo.";
+$a->strings["Profile unavailable."] = "O perfil não está disponível.";
+$a->strings["%s has received too many connection requests today."] = "%s recebeu solicitações de conexão em excesso hoje.";
+$a->strings["Spam protection measures have been invoked."] = "As medidas de proteção contra spam foram ativadas.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Os amigos foram notificados para tentar novamente em 24 horas.";
+$a->strings["Invalid locator"] = "Localizador inválido";
+$a->strings["Invalid email address."] = "Endereço de e-mail inválido.";
+$a->strings["This account has not been configured for email. Request failed."] = "Essa conta não foi configurada para e-mails. Não foi possível atender à solicitação.";
+$a->strings["Unable to resolve your name at the provided location."] = "Não foi possível encontrar a sua identificação no endereço indicado.";
+$a->strings["You have already introduced yourself here."] = "Você já fez a sua apresentação aqui.";
+$a->strings["Apparently you are already friends with %s."] = "Aparentemente você já é amigo de %s.";
+$a->strings["Invalid profile URL."] = "URL de perfil inválida.";
+$a->strings["Disallowed profile URL."] = "URL de perfil não permitida.";
+$a->strings["Failed to update contact record."] = "Não foi possível atualizar o registro do contato.";
+$a->strings["Your introduction has been sent."] = "A sua apresentação foi enviada.";
+$a->strings["Please login to confirm introduction."] = "Por favor, autentique-se para confirmar a apresentação.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "A identidade autenticada está incorreta. Por favor, entre como <strong>este</strong> perfil.";
+$a->strings["Hide this contact"] = "Ocultar este contato";
+$a->strings["Welcome home %s."] = "Bem-vindo(a) à sua página pessoal %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Por favor, confirme sua solicitação de apresentação/conexão para %s.";
+$a->strings["Confirm"] = "Confirmar";
+$a->strings["[Name Withheld]"] = "[Nome não revelado]";
+$a->strings["Public access denied."] = "Acesso público negado.";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Por favor, digite seu 'Endereço de Identificação' a partir de uma das seguintes redes de comunicação suportadas:";
+$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Conectar como um acompanhante por e-mail</strike> (Em breve)";
+$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>."] = "Caso você ainda não seja membro da rede social livre, <a href=\"http://dir.friendica.com/siteinfo\">clique aqui para encontrar um site Friendica público e junte-se à nós</a>.";
+$a->strings["Friend/Connection Request"] = "Solicitação de amizade/conexão";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Examplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Por favor, entre com as informações solicitadas:";
+$a->strings["Does %s know you?"] = "%s conhece você?";
+$a->strings["Yes"] = "Sim";
+$a->strings["No"] = "Não";
+$a->strings["Add a personal note:"] = "Adicione uma anotação pessoal:";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - Por favor, não utilize esse formulário.  Ao invés disso, digite %s na sua barra de pesquisa do Diaspora.";
+$a->strings["Your Identity Address:"] = "Seu endereço de identificação:";
+$a->strings["Submit Request"] = "Enviar solicitação";
+$a->strings["Cancel"] = "Cancelar";
+$a->strings["View Video"] = "Ver Vídeo";
+$a->strings["Requested profile is not available."] = "Perfil solicitado não está disponível.";
+$a->strings["Access to this profile has been restricted."] = "O acesso a este perfil está restrito.";
+$a->strings["Tips for New Members"] = "Dicas para novos membros";
+$a->strings["Invalid request identifier."] = "Identificador de solicitação inválido";
+$a->strings["Discard"] = "Descartar";
+$a->strings["Ignore"] = "Ignorar";
+$a->strings["System"] = "Sistema";
+$a->strings["Network"] = "Rede";
+$a->strings["Personal"] = "Pessoal";
+$a->strings["Home"] = "Pessoal";
+$a->strings["Introductions"] = "Apresentações";
+$a->strings["Messages"] = "Mensagens";
+$a->strings["Show Ignored Requests"] = "Exibir solicitações ignoradas";
+$a->strings["Hide Ignored Requests"] = "Ocultar solicitações ignoradas";
+$a->strings["Notification type: "] = "Tipo de notificação:";
+$a->strings["Friend Suggestion"] = "Sugestão de amigo";
+$a->strings["suggested by %s"] = "sugerido por %s";
+$a->strings["Hide this contact from others"] = "Ocultar este contato dos outros";
+$a->strings["Post a new friend activity"] = "Publicar a adição de amigo";
+$a->strings["if applicable"] = "se aplicável";
+$a->strings["Approve"] = "Aprovar";
+$a->strings["Claims to be known to you: "] = "Alega ser conhecido por você: ";
+$a->strings["yes"] = "sim";
+$a->strings["no"] = "não";
+$a->strings["Approve as: "] = "Aprovar como:";
+$a->strings["Friend"] = "Amigo";
+$a->strings["Sharer"] = "Compartilhador";
+$a->strings["Fan/Admirer"] = "Fã/Admirador";
+$a->strings["Friend/Connect Request"] = "Solicitação de amizade/conexão";
+$a->strings["New Follower"] = "Novo acompanhante";
+$a->strings["No introductions."] = "Sem apresentações.";
+$a->strings["Notifications"] = "Notificações";
+$a->strings["%s liked %s's post"] = "%s gostou da publicação de %s";
+$a->strings["%s disliked %s's post"] = "%s desgostou da publicação de %s";
+$a->strings["%s is now friends with %s"] = "%s agora é amigo de %s";
+$a->strings["%s created a new post"] = "%s criou uma nova publicação";
+$a->strings["%s commented on %s's post"] = "%s comentou uma publicação de %s";
+$a->strings["No more network notifications."] = "Nenhuma notificação de rede.";
+$a->strings["Network Notifications"] = "Notificações de rede";
+$a->strings["No more system notifications."] = "Não fazer notificações de sistema.";
+$a->strings["System Notifications"] = "Notificações de sistema";
+$a->strings["No more personal notifications."] = "Nenhuma notificação pessoal.";
+$a->strings["Personal Notifications"] = "Notificações pessoais";
+$a->strings["No more home notifications."] = "Não existe mais nenhuma notificação pessoal.";
+$a->strings["Home Notifications"] = "Notificações pessoais";
+$a->strings["photo"] = "foto";
+$a->strings["status"] = "status";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gosta de %3\$s de %2\$s";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s não gosta de %3\$s de %2\$s";
+$a->strings["OpenID protocol error. No ID returned."] = "Erro no protocolo OpenID. Não foi retornada nenhuma ID.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "A conta não foi encontrada e não são permitidos registros via OpenID nesse site.";
+$a->strings["Login failed."] = "Não foi possível autenticar.";
+$a->strings["Source (bbcode) text:"] = "Texto fonte (bbcode):";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Texto fonte (Diaspora) a converter para BBcode:";
+$a->strings["Source input: "] = "Entrada fonte:";
+$a->strings["bb2html (raw HTML): "] = "bb2html (HTML puro):";
+$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): "] = "Fonte de entrada (formato Diaspora):";
+$a->strings["diaspora2bb: "] = "diaspora2bb: ";
 $a->strings["Theme settings updated."] = "As configurações do tema foram atualizadas.";
 $a->strings["Site"] = "Site";
 $a->strings["Users"] = "Usuários";
@@ -401,6 +187,7 @@ $a->strings["Logs"] = "Relatórios";
 $a->strings["Admin"] = "Admin";
 $a->strings["Plugin Features"] = "Recursos do plugin";
 $a->strings["User registrations waiting for confirmation"] = "Cadastros de novos usuários aguardando confirmação";
+$a->strings["Item not found."] = "O item não foi encontrado.";
 $a->strings["Normal Account"] = "Conta normal";
 $a->strings["Soapbox Account"] = "Conta de vitrine";
 $a->strings["Community/Celebrity Account"] = "Conta de comunidade/celebridade";
@@ -418,6 +205,7 @@ $a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] =
 $a->strings["Site settings updated."] = "As configurações do site foram atualizadas.";
 $a->strings["No special theme for mobile devices"] = "Nenhum tema especial para dispositivos móveis";
 $a->strings["Never"] = "Nunca";
+$a->strings["At post arrival"] = "Na chegada da publicação";
 $a->strings["Frequently"] = "Frequentemente";
 $a->strings["Hourly"] = "De hora em hora";
 $a->strings["Twice daily"] = "Duas vezes ao dia";
@@ -430,6 +218,7 @@ $a->strings["No SSL policy, links will track page SSL state"] = "Nenhuma políti
 $a->strings["Force all links to use SSL"] = "Forçar todos os links a utilizar SSL";
 $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificado auto-assinado, usar SSL somente para links locais (não recomendado)";
 $a->strings["Save Settings"] = "Salvar configurações";
+$a->strings["Registration"] = "Registro";
 $a->strings["File upload"] = "Envio de arquivo";
 $a->strings["Policies"] = "Políticas";
 $a->strings["Advanced"] = "Avançado";
@@ -485,6 +274,8 @@ $a->strings["Disallow public access to addons listed in the apps menu."] = "Disa
 $a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Marcar essa caixa ira restringir os addons listados no menu de aplicativos aos membros somente.";
 $a->strings["Don't embed private images in posts"] = "Não inclua imagens privadas em publicações";
 $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."] = "Não substitue fotos privativas guardadas localmente em publicações por uma cópia inclusa da imagem. Isso significa que os contatos que recebem publicações contendo fotos privadas terão que autenticar e carregar cada imagem, o que pode levar algum tempo.";
+$a->strings["Allow Users to set remote_self"] = "Permite usuários configurarem remote_self";
+$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."] = "Ao marcar isto, todos os usuários poderão marcar cada contato como um remote_self na opção de reparar contato. Marcar isto para um contato produz espelhamento de toda publicação deste contato no fluxo dos usuários";
 $a->strings["Block multiple registrations"] = "Bloquear registros repetidos";
 $a->strings["Disallow users to register additional accounts for use as pages."] = "Desabilitar o registro de contas adicionais para serem usadas como páginas.";
 $a->strings["OpenID support"] = "Suporte ao OpenID";
@@ -496,7 +287,7 @@ $a->strings["Use PHP UTF8 regular expressions"] = "Use expressões regulares do
 $a->strings["Show Community Page"] = "Exibir a página da comunidade";
 $a->strings["Display a Community page showing all recent public postings on this site."] = "Exibe uma página da Comunidade, mostrando todas as publicações recentes feitas nesse site.";
 $a->strings["Enable OStatus support"] = "Habilitar suporte ao 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."] = "Fornece compatibilidade nativa ao OStatus (identi,.ca, status.net, etc.). Todas as comunicações via OStatus são públicas, por isso avisos de privacidade serão exibidos ocasionalmente.";
+$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fornece compatibilidade OStatus (StatusNet, GNU Social, etc.). Todas as comunicações no OStatus são públicas, assim avisos de privacidade serão ocasionalmente mostrados.";
 $a->strings["OStatus conversation completion interval"] = "Intervalo de finalização da conversação OStatus ";
 $a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "De quanto em quanto tempo o \"buscador\" (poller) deve checar por novas entradas numa conversação OStatus? Essa pode ser uma tarefa bem demorada.";
 $a->strings["Enable Diaspora support"] = "Habilitar suporte ao Diaspora";
@@ -536,6 +327,7 @@ $a->strings["Failed Updates"] = "Atualizações com falha";
 $a->strings["This does not include updates prior to 1139, which did not return a status."] = "Isso não inclue atualizações antes da 1139, as quais não retornavam um status.";
 $a->strings["Mark success (if update was manually applied)"] = "Marcar como bem sucedida (caso tenham sido aplicadas atualizações manuais)";
 $a->strings["Attempt to execute this update step automatically"] = "Tentar executar esse passo da atualização automaticamente";
+$a->strings["Registration details for %s"] = "Detalhes do registro de %s";
 $a->strings["Registration successful. Email send to user"] = "Registro bem sucedido. Email enviado ao usuário.";
 $a->strings["%s user blocked/unblocked"] = array(
        0 => "%s usuário bloqueado/desbloqueado",
@@ -556,7 +348,6 @@ $a->strings["Request date"] = "Solicitar data";
 $a->strings["Name"] = "Nome";
 $a->strings["Email"] = "E-mail";
 $a->strings["No registrations."] = "Nenhum registro.";
-$a->strings["Approve"] = "Aprovar";
 $a->strings["Deny"] = "Negar";
 $a->strings["Block"] = "Bloquear";
 $a->strings["Unblock"] = "Desbloquear";
@@ -579,6 +370,7 @@ $a->strings["Plugin %s enabled."] = "O plugin %s foi habilitado.";
 $a->strings["Disable"] = "Desabilitar";
 $a->strings["Enable"] = "Habilitar";
 $a->strings["Toggle"] = "Alternar";
+$a->strings["Settings"] = "Configurações";
 $a->strings["Author: "] = "Autor: ";
 $a->strings["Maintainer: "] = "Mantenedor: ";
 $a->strings["No themes found."] = "Nenhum tema encontrado";
@@ -597,11 +389,36 @@ $a->strings["FTP Host"] = "Endereço do FTP";
 $a->strings["FTP Path"] = "Caminho do FTP";
 $a->strings["FTP User"] = "Usuário do FTP";
 $a->strings["FTP Password"] = "Senha do FTP";
-$a->strings["Search"] = "Pesquisar";
-$a->strings["No results."] = "Nenhum resultado.";
-$a->strings["Tips for New Members"] = "Dicas para novos membros";
-$a->strings["link"] = "ligação";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s etiquetou %3\$s de %2\$s com %4\$s";
+$a->strings["New Message"] = "Nova mensagem";
+$a->strings["No recipient selected."] = "Não foi selecionado nenhum destinatário.";
+$a->strings["Unable to locate contact information."] = "Não foi possível localizar informação do contato.";
+$a->strings["Message could not be sent."] = "Não foi possível enviar a mensagem.";
+$a->strings["Message collection failure."] = "Falha na coleta de mensagens.";
+$a->strings["Message sent."] = "A mensagem foi enviada.";
+$a->strings["Do you really want to delete this message?"] = "Você realmente deseja deletar essa mensagem?";
+$a->strings["Message deleted."] = "A mensagem foi excluída.";
+$a->strings["Conversation removed."] = "A conversa foi removida.";
+$a->strings["Please enter a link URL:"] = "Por favor, digite uma URL:";
+$a->strings["Send Private Message"] = "Enviar mensagem privada";
+$a->strings["To:"] = "Para:";
+$a->strings["Subject:"] = "Assunto:";
+$a->strings["Your message:"] = "Sua mensagem:";
+$a->strings["Upload photo"] = "Enviar foto";
+$a->strings["Insert web link"] = "Inserir link web";
+$a->strings["No messages."] = "Nenhuma mensagem.";
+$a->strings["Unknown sender - %s"] = "Remetente desconhecido - %s";
+$a->strings["You and %s"] = "Você e %s";
+$a->strings["%s and You"] = "%s e você";
+$a->strings["Delete conversation"] = "Excluir conversa";
+$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d mensagem",
+       1 => "%d mensagens",
+);
+$a->strings["Message not available."] = "A mensagem não está disponível.";
+$a->strings["Delete message"] = "Excluir a mensagem";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Não foi encontrada nenhuma comunicação segura. Você <strong>pode</strong> ser capaz de responder a partir da página de perfil do remetente.";
+$a->strings["Send Reply"] = "Enviar resposta";
 $a->strings["Item not found"] = "O item não foi encontrado";
 $a->strings["Edit post"] = "Editar a publicação";
 $a->strings["upload photo"] = "upload de foto";
@@ -622,92 +439,173 @@ $a->strings["Public post"] = "Publicação pública";
 $a->strings["Set title"] = "Definir o título";
 $a->strings["Categories (comma-separated list)"] = "Categorias (lista separada por vírgulas)";
 $a->strings["Example: bob@example.com, mary@example.com"] = "Por exemplo: joao@exemplo.com, maria@exemplo.com";
+$a->strings["Profile not found."] = "O perfil não foi encontrado.";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Isso pode acontecer eventualmente se o contato foi solicitado por ambas as pessoas e ele já tinha sido aprovado.";
+$a->strings["Response from remote site was not understood."] = "A resposta do site remoto não foi compreendida.";
+$a->strings["Unexpected response from remote site: "] = "Resposta inesperada do site remoto: ";
+$a->strings["Confirmation completed successfully."] = "A confirmação foi completada com sucesso.";
+$a->strings["Remote site reported: "] = "O site remoto relatou: ";
+$a->strings["Temporary failure. Please wait and try again."] = "Falha temporária. Por favor, aguarde e tente novamente.";
+$a->strings["Introduction failed or was revoked."] = "Ocorreu uma falha na apresentação ou ela foi revogada.";
+$a->strings["Unable to set contact photo."] = "Não foi possível definir a foto do contato.";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s agora é amigo de %2\$s";
+$a->strings["No user record found for '%s' "] = "Não foi encontrado nenhum registro de usuário para '%s' ";
+$a->strings["Our site encryption key is apparently messed up."] = "A chave de criptografia do nosso site está, aparentemente, bagunçada.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Foi fornecida uma URL em branco ou não foi possível descriptografá-la.";
+$a->strings["Contact record was not found for you on our site."] = "O registro do contato não foi encontrado para você em seu site.";
+$a->strings["Site public key not available in contact record for URL %s."] = "A chave pública do site não está disponível no registro do contato para a URL %s";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve funcionar agora, se você tentar de novo.";
+$a->strings["Unable to set your contact credentials on our system."] = "Não foi possível definir suas credenciais de contato no nosso sistema.";
+$a->strings["Unable to update your contact profile details on our system"] = "Não foi possível atualizar os detalhes do seu perfil em nosso sistema.";
+$a->strings["Connection accepted at %s"] = "Conexão aceita em %s";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s se associou a %2\$s";
+$a->strings["Event title and start time are required."] = "O título do evento e a hora de início são obrigatórios.";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Editar o evento";
+$a->strings["link to source"] = "exibir a origem";
+$a->strings["Events"] = "Eventos";
+$a->strings["Create New Event"] = "Criar um novo evento";
+$a->strings["Previous"] = "Anterior";
+$a->strings["Next"] = "Próximo";
+$a->strings["hour:minute"] = "hora:minuto";
+$a->strings["Event details"] = "Detalhes do evento";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "O formato é %s %s. O título e a data de início são obrigatórios.";
+$a->strings["Event Starts:"] = "Início do evento:";
+$a->strings["Required"] = "Obrigatório";
+$a->strings["Finish date/time is not known or not relevant"] = "A data/hora de término não é conhecida ou não é relevante";
+$a->strings["Event Finishes:"] = "Término do evento:";
+$a->strings["Adjust for viewer timezone"] = "Ajustar para o fuso horário do visualizador";
+$a->strings["Description:"] = "Descrição:";
+$a->strings["Location:"] = "Localização:";
+$a->strings["Title:"] = "Título:";
+$a->strings["Share this event"] = "Compartilhar este evento";
+$a->strings["Photos"] = "Fotos";
+$a->strings["Files"] = "Arquivos";
+$a->strings["Welcome to %s"] = "Bem-vindo(a) a %s";
+$a->strings["Remote privacy information not available."] = "Não existe informação disponível sobre a privacidade remota.";
+$a->strings["Visible to:"] = "Visível para:";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "O número diário de mensagens do mural de %s foi excedido. Não foi possível enviar a mensagem.";
+$a->strings["Unable to check your home location."] = "Não foi possível verificar a sua localização.";
+$a->strings["No recipient."] = "Nenhum destinatário.";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Caso você deseje uma resposta de %s, por favor verifique se as configurações de privacidade em seu site permitem o recebimento de mensagens de remetentes desconhecidos.";
+$a->strings["Visit %s's profile [%s]"] = "Visitar o perfil de %s [%s]";
+$a->strings["Edit contact"] = "Editar o contato";
+$a->strings["Contacts who are not members of a group"] = "Contatos que não são membros de um grupo";
+$a->strings["This is Friendica, version"] = "Este é o Friendica, versão";
+$a->strings["running at web location"] = "sendo executado no endereço web";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Por favor, visite <a href=\"http://friendica.com\">friendica.com</a> para aprender mais sobre o projeto Friendica.";
+$a->strings["Bug reports and issues: please visit"] = "Relatos e acompanhamentos de erros podem ser encontrados em";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com";
+$a->strings["Installed plugins/addons/apps:"] = "Plugins/complementos/aplicações instaladas:";
+$a->strings["No installed plugins/addons/apps"] = "Nenhum plugin/complemento/aplicativo instalado";
+$a->strings["Remove My Account"] = "Remover minha conta";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la.";
+$a->strings["Please enter your password for verification:"] = "Por favor, digite a sua senha para verificação:";
+$a->strings["Image exceeds size limit of %d"] = "A imagem excede o limite de tamanho de %d";
+$a->strings["Unable to process image."] = "Não foi possível processar a imagem.";
+$a->strings["Wall Photos"] = "Fotos do mural";
+$a->strings["Image upload failed."] = "Não foi possível enviar a imagem.";
+$a->strings["Authorize application connection"] = "Autorizar a conexão com a aplicação";
+$a->strings["Return to your app and insert this Securty Code:"] = "Volte para a sua aplicação e digite este código de segurança:";
+$a->strings["Please login to continue."] = "Por favor, autentique-se para continuar.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s etiquetou %3\$s de %2\$s com %4\$s";
+$a->strings["Photo Albums"] = "Álbuns de fotos";
+$a->strings["Contact Photos"] = "Fotos dos contatos";
+$a->strings["Upload New Photos"] = "Enviar novas fotos";
+$a->strings["everybody"] = "todos";
+$a->strings["Contact information unavailable"] = "A informação de contato não está disponível";
+$a->strings["Profile Photos"] = "Fotos do perfil";
+$a->strings["Album not found."] = "O álbum não foi encontrado.";
+$a->strings["Delete Album"] = "Excluir o álbum";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?";
+$a->strings["Delete Photo"] = "Excluir a foto";
+$a->strings["Do you really want to delete this photo?"] = "Você realmente deseja deletar essa foto?";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s foi marcado em %2\$s por %3\$s";
+$a->strings["a photo"] = "uma foto";
+$a->strings["Image exceeds size limit of "] = "A imagem excede o tamanho máximo de ";
+$a->strings["Image file is empty."] = "O arquivo de imagem está vazio.";
+$a->strings["No photos selected"] = "Não foi selecionada nenhuma foto";
+$a->strings["Access to this item is restricted."] = "O acesso a este item é restrito.";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Você está usando %1$.2f Mbytes dos %2$.2f Mbytes liberados para armazenamento de fotos.";
+$a->strings["Upload Photos"] = "Enviar fotos";
+$a->strings["New album name: "] = "Nome do novo álbum: ";
+$a->strings["or existing album name: "] = "ou o nome de um álbum já existente: ";
+$a->strings["Do not show a status post for this upload"] = "Não exiba uma publicação de status para este envio";
+$a->strings["Permissions"] = "Permissões";
+$a->strings["Show to Groups"] = "Mostre para Grupos";
+$a->strings["Show to Contacts"] = "Mostre para Contatos";
+$a->strings["Private Photo"] = "Foto Privada";
+$a->strings["Public Photo"] = "Foto Pública";
+$a->strings["Edit Album"] = "Editar o álbum";
+$a->strings["Show Newest First"] = "Exibir as mais recentes primeiro";
+$a->strings["Show Oldest First"] = "Exibir as mais antigas primeiro";
+$a->strings["View Photo"] = "Ver a foto";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Permissão negada. O acesso a este item pode estar restrito.";
+$a->strings["Photo not available"] = "A foto não está disponível";
+$a->strings["View photo"] = "Ver a imagem";
+$a->strings["Edit photo"] = "Editar a foto";
+$a->strings["Use as profile photo"] = "Usar como uma foto de perfil";
+$a->strings["View Full Size"] = "Ver no tamanho real";
+$a->strings["Tags: "] = "Etiquetas: ";
+$a->strings["[Remove any tag]"] = "[Remover qualquer etiqueta]";
+$a->strings["Rotate CW (right)"] = "Rotacionar para direita";
+$a->strings["Rotate CCW (left)"] = "Rotacionar para esquerda";
+$a->strings["New album name"] = "Novo nome para o álbum";
+$a->strings["Caption"] = "Legenda";
+$a->strings["Add a Tag"] = "Adicionar uma etiqueta";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento";
+$a->strings["Private photo"] = "Foto privada";
+$a->strings["Public photo"] = "Foto pública";
+$a->strings["Share"] = "Compartilhar";
+$a->strings["View Album"] = "Ver álbum";
+$a->strings["Recent Photos"] = "Fotos recentes";
+$a->strings["No profile"] = "Nenhum perfil";
+$a->strings["Registration successful. Please check your email for further instructions."] = "O registro foi bem sucedido. Por favor, verifique seu e-mail para maiores informações.";
+$a->strings["Failed to send email message. Here is the message that failed."] = "Não foi possível enviar a mensagem de e-mail. Aqui está a mensagem que não foi.";
+$a->strings["Your registration can not be processed."] = "Não foi possível processar o seu registro.";
+$a->strings["Registration request at %s"] = "Solicitação de registro em %s";
+$a->strings["Your registration is pending approval by the site owner."] = "A aprovação do seu registro está pendente junto ao administrador do site.";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Você pode (opcionalmente) preencher este formulário via OpenID, fornecendo seu OpenID e clicando em 'Registrar'.";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se você não está familiarizado com o OpenID, por favor, deixe esse campo em branco e preencha os outros itens.";
+$a->strings["Your OpenID (optional): "] = "Seu OpenID (opcional): ";
+$a->strings["Include your profile in member directory?"] = "Incluir o seu perfil no diretório de membros?";
+$a->strings["Membership on this site is by invitation only."] = "A associação a este site só pode ser feita mediante convite.";
+$a->strings["Your invitation ID: "] = "A ID do seu convite: ";
+$a->strings["Your Full Name (e.g. Joe Smith): "] = "Seu nome completo (ex: José da Silva): ";
+$a->strings["Your Email Address: "] = "Seu endereço de e-mail: ";
+$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>'."] = "Selecione uma identificação para o perfil. Ela deve começar com um caractere alfabético. O endereço do seu perfil neste site será '<strong>identificação@\$sitename</strong>'";
+$a->strings["Choose a nickname: "] = "Escolha uma identificação: ";
+$a->strings["Register"] = "Registrar";
+$a->strings["Import"] = "Importar";
+$a->strings["Import your profile to this friendica instance"] = "Importa seu perfil  desta instância do friendica";
+$a->strings["No valid account found."] = "Não foi encontrada nenhuma conta válida.";
+$a->strings["Password reset request issued. Check your email."] = "A solicitação para reiniciar sua senha foi encaminhada. Verifique seu e-mail.";
+$a->strings["Password reset requested at %s"] = "Foi feita uma solicitação de reiniciação da senha em %s";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi reiniciada.";
+$a->strings["Password Reset"] = "Reiniciar a senha";
+$a->strings["Your password has been reset as requested."] = "Sua senha foi reiniciada, conforme solicitado.";
+$a->strings["Your new password is"] = "Sua nova senha é";
+$a->strings["Save or copy your new password - and then"] = "Grave ou copie a sua nova senha e, então";
+$a->strings["click here to login"] = "clique aqui para entrar";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Sua senha pode ser alterada na página de <em>Configurações</em> após você entrar em seu perfil.";
+$a->strings["Your password has been changed at %s"] = "Sua senha foi modifica às %s";
+$a->strings["Forgot your Password?"] = "Esqueceu a sua senha?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Digite o seu endereço de e-mail e clique em 'Reiniciar' para prosseguir com a reiniciação da sua senha. Após isso, verifique seu e-mail para mais instruções.";
+$a->strings["Nickname or Email: "] = "Identificação ou e-mail: ";
+$a->strings["Reset"] = "Reiniciar";
+$a->strings["System down for maintenance"] = "Sistema em manutenção";
 $a->strings["Item not available."] = "O item não está disponível.";
 $a->strings["Item was not found."] = "O item não foi encontrado.";
-$a->strings["Account approved."] = "A conta foi aprovada.";
-$a->strings["Registration revoked for %s"] = "O registro de %s foi revogado";
-$a->strings["Please login."] = "Por favor, autentique-se.";
-$a->strings["Find on this site"] = "Pesquisar neste site";
-$a->strings["Finding: "] = "Pesquisando: ";
-$a->strings["Site Directory"] = "Diretório do site";
-$a->strings["Find"] = "Pesquisar";
-$a->strings["Age: "] = "Idade: ";
-$a->strings["Gender: "] = "Gênero: ";
-$a->strings["About:"] = "Sobre:";
-$a->strings["No entries (some entries may be hidden)."] = "Nenhuma entrada (algumas entradas podem estar ocultas).";
-$a->strings["Contact settings applied."] = "As configurações do contato foram aplicadas.";
-$a->strings["Contact update failed."] = "Não foi possível atualizar o contato.";
-$a->strings["Repair Contact Settings"] = "Corrigir configurações do contato";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATENÇÃO: Isso é muito avançado</strong>, se você digitar informações incorretas, suas comunicações com esse contato pode parar de funcionar.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Por favor, use o botão 'Voltar' do seu navegador <strong>agora</strong>, caso você não tenha certeza do que está fazendo.";
-$a->strings["Return to contact editor"] = "Voltar ao editor de contatos";
-$a->strings["Account Nickname"] = "Identificação da conta";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - sobrescreve Nome/Identificação";
-$a->strings["Account URL"] = "URL da conta";
-$a->strings["Friend Request URL"] = "URL da requisição de amizade";
-$a->strings["Friend Confirm URL"] = "URL da confirmação de amizade";
-$a->strings["Notification Endpoint URL"] = "URL do ponto final da notificação";
-$a->strings["Poll/Feed URL"] = "URL do captador/fonte de notícias";
-$a->strings["New photo from this URL"] = "Nova imagem desta URL";
-$a->strings["Move account"] = "Mover conta";
-$a->strings["You can import an account from another Friendica server."] = "Você pode importar um conta de outro sevidor Friendica.";
-$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Você precisa exportar sua conta de um servidor antigo e fazer o upload aqui. Nós recriaremos sua conta antiga aqui com todos os seus contatos. Nós também tentaremos informar seus amigos que você se mudou para cá.";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Esse recurso é experimental. Nós não podemos importar contatos de uma rede OStatus (statusnet/identi.ca) ou do Diaspora";
-$a->strings["Account file"] = "Arquivo de conta";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Para exportar a sua conta, entre em \"Configurações->Exportar dados pessoais\" e selecione \"Exportar conta\"";
-$a->strings["Remote privacy information not available."] = "Não existe informação disponível sobre a privacidade remota.";
-$a->strings["Visible to:"] = "Visível para:";
-$a->strings["Save"] = "Salvar";
+$a->strings["Applications"] = "Aplicativos";
+$a->strings["No installed applications."] = "Nenhum aplicativo instalado";
 $a->strings["Help:"] = "Ajuda:";
 $a->strings["Help"] = "Ajuda";
-$a->strings["No profile"] = "Nenhum perfil";
-$a->strings["This introduction has already been accepted."] = "Esta apresentação já foi aceita.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "A localização do perfil não é válida ou não contém uma informação de perfil.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Aviso: a localização do perfil não possui nenhum nome identificável do seu dono.";
-$a->strings["Warning: profile location has no profile photo."] = "Aviso: a localização do perfil não possui nenhuma foto do perfil.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "O parâmetro requerido %d não foi encontrado na localização fornecida",
-       1 => "Os parâmetros requeridos %d não foram encontrados na localização fornecida",
+$a->strings["%d contact edited."] = array(
+       0 => "%d contato editado",
+       1 => "%d contatos editados",
 );
-$a->strings["Introduction complete."] = "A apresentação foi finalizada.";
-$a->strings["Unrecoverable protocol error."] = "Ocorreu um erro irrecuperável de protocolo.";
-$a->strings["Profile unavailable."] = "O perfil não está disponível.";
-$a->strings["%s has received too many connection requests today."] = "%s recebeu solicitações de conexão em excesso hoje.";
-$a->strings["Spam protection measures have been invoked."] = "As medidas de proteção contra spam foram ativadas.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Os amigos foram notificados para tentar novamente em 24 horas.";
-$a->strings["Invalid locator"] = "Localizador inválido";
-$a->strings["Invalid email address."] = "Endereço de e-mail inválido.";
-$a->strings["This account has not been configured for email. Request failed."] = "Essa conta não foi configurada para e-mails. Não foi possível atender à solicitação.";
-$a->strings["Unable to resolve your name at the provided location."] = "Não foi possível encontrar a sua identificação no endereço indicado.";
-$a->strings["You have already introduced yourself here."] = "Você já fez a sua apresentação aqui.";
-$a->strings["Apparently you are already friends with %s."] = "Aparentemente você já é amigo de %s.";
-$a->strings["Invalid profile URL."] = "URL de perfil inválida.";
-$a->strings["Disallowed profile URL."] = "URL de perfil não permitida.";
-$a->strings["Failed to update contact record."] = "Não foi possível atualizar o registro do contato.";
-$a->strings["Your introduction has been sent."] = "A sua apresentação foi enviada.";
-$a->strings["Please login to confirm introduction."] = "Por favor, autentique-se para confirmar a apresentação.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "A identidade autenticada está incorreta. Por favor, entre como <strong>este</strong> perfil.";
-$a->strings["Hide this contact"] = "Ocultar este contato";
-$a->strings["Welcome home %s."] = "Bem-vindo(a) à sua página pessoal %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Por favor, confirme sua solicitação de apresentação/conexão para %s.";
-$a->strings["Confirm"] = "Confirmar";
-$a->strings["[Name Withheld]"] = "[Nome não revelado]";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Por favor, digite seu 'Endereço de Identificação' a partir de uma das seguintes redes de comunicação suportadas:";
-$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Conectar como um acompanhante por e-mail</strike> (Em breve)";
-$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>."] = "Caso você ainda não seja membro da rede social livre, <a href=\"http://dir.friendica.com/siteinfo\">clique aqui para encontrar um site Friendica público e junte-se à nós</a>.";
-$a->strings["Friend/Connection Request"] = "Solicitação de amizade/conexão";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Examplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Por favor, entre com as informações solicitadas:";
-$a->strings["Does %s know you?"] = "%s conhece você?";
-$a->strings["Add a personal note:"] = "Adicione uma anotação pessoal:";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - Por favor, não utilize esse formulário.  Ao invés disso, digite %s na sua barra de pesquisa do Diaspora.";
-$a->strings["Your Identity Address:"] = "Seu endereço de identificação:";
-$a->strings["Submit Request"] = "Enviar solicitação";
-$a->strings["[Embedded content - reload page to view]"] = "[Conteúdo incorporado - recarregue a página para ver]";
-$a->strings["View in context"] = "Ver no contexto";
 $a->strings["Could not access contact record."] = "Não foi possível acessar o registro do contato.";
 $a->strings["Could not locate selected profile."] = "Não foi possível localizar o perfil selecionado.";
 $a->strings["Contact updated."] = "O contato foi atualizado.";
@@ -734,7 +632,6 @@ $a->strings["%d contact in common"] = array(
 $a->strings["View all contacts"] = "Ver todos os contatos";
 $a->strings["Toggle Blocked status"] = "Alternar o status de bloqueio";
 $a->strings["Unignore"] = "Deixar de ignorar";
-$a->strings["Ignore"] = "Ignorar";
 $a->strings["Toggle Ignored status"] = "Alternar o status de ignorado";
 $a->strings["Unarchive"] = "Desarquivar";
 $a->strings["Archive"] = "Arquivar";
@@ -747,7 +644,6 @@ $a->strings["Profile Visibility"] = "Visibilidade do perfil";
 $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro.";
 $a->strings["Contact Information / Notes"] = "Informações sobre o contato / Anotações";
 $a->strings["Edit contact notes"] = "Editar as anotações do contato";
-$a->strings["Visit %s's profile [%s]"] = "Visitar o perfil de %s [%s]";
 $a->strings["Block/Unblock contact"] = "Bloquear/desbloquear o contato";
 $a->strings["Ignore contact"] = "Ignorar o contato";
 $a->strings["Repair URL settings"] = "Reparar as definições de URL";
@@ -758,8 +654,10 @@ $a->strings["Update public posts"] = "Atualizar publicações públicas";
 $a->strings["Currently blocked"] = "Atualmente bloqueado";
 $a->strings["Currently ignored"] = "Atualmente ignorado";
 $a->strings["Currently archived"] = "Atualmente arquivado";
-$a->strings["Hide this contact from others"] = "Ocultar este contato dos outros";
 $a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Respostas/gostadas associados às suas publicações <strong>ainda podem</strong> estar visíveis";
+$a->strings["Notification for new posts"] = "Notificações para novas publicações";
+$a->strings["Send a notification of every new post of this contact"] = "Envie uma notificação para todos as novas publicações deste contato";
+$a->strings["Fetch further information for feeds"] = "Pega mais informações para feeds";
 $a->strings["Suggestions"] = "Sugestões";
 $a->strings["Suggest potential friends"] = "Sugerir amigos em potencial";
 $a->strings["All Contacts"] = "Todos os contatos";
@@ -777,19 +675,98 @@ $a->strings["Only show hidden contacts"] = "Exibe somente contatos ocultos";
 $a->strings["Mutual Friendship"] = "Amizade mútua";
 $a->strings["is a fan of yours"] = "é um fã seu";
 $a->strings["you are a fan of"] = "você é um fã de";
-$a->strings["Edit contact"] = "Editar o contato";
+$a->strings["Contacts"] = "Contatos";
 $a->strings["Search your contacts"] = "Pesquisar seus contatos";
-$a->strings["everybody"] = "todos";
-$a->strings["Account settings"] = "Configurações da conta";
+$a->strings["Finding: "] = "Pesquisando: ";
+$a->strings["Find"] = "Pesquisar";
+$a->strings["Update"] = "Atualizar";
+$a->strings["No videos selected"] = "Nenhum vídeo selecionado";
+$a->strings["Recent Videos"] = "Vídeos Recentes";
+$a->strings["Upload New Videos"] = "Envie Novos Vídeos";
+$a->strings["Common Friends"] = "Amigos em Comum";
+$a->strings["No contacts in common."] = "Nenhum contato em comum.";
+$a->strings["Contact added"] = "O contato foi adicionado";
+$a->strings["Move account"] = "Mover conta";
+$a->strings["You can import an account from another Friendica server."] = "Você pode importar um conta de outro sevidor Friendica.";
+$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Você precisa exportar sua conta de um servidor antigo e fazer o upload aqui. Nós recriaremos sua conta antiga aqui com todos os seus contatos. Nós também tentaremos informar seus amigos que você se mudou para cá.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Esse recurso é experimental. Nós não podemos importar contatos de uma rede OStatus (statusnet/identi.ca) ou do Diaspora";
+$a->strings["Account file"] = "Arquivo de conta";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Para exportar a sua conta, entre em \"Configurações->Exportar dados pessoais\" e selecione \"Exportar conta\"";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está seguindo %2\$s's %3\$s";
+$a->strings["Friends of %s"] = "Amigos de %s";
+$a->strings["No friends to display."] = "Nenhum amigo para exibir.";
+$a->strings["Tag removed"] = "A etiqueta foi removida";
+$a->strings["Remove Item Tag"] = "Remover a etiqueta do item";
+$a->strings["Select a tag to remove: "] = "Selecione uma etiqueta para remover: ";
+$a->strings["Remove"] = "Remover";
+$a->strings["Welcome to Friendica"] = "Bemvindo ao Friendica";
+$a->strings["New Member Checklist"] = "Dicas para os novos membros";
+$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."] = "Gostaríamos de oferecer algumas dicas e links para ajudar a tornar a sua experiência agradável. Clique em qualquer item para visitar a página correspondente. Um link para essa página será visível em sua home page por duas semanas após o seu registro inicial e, então, desaparecerá discretamente.";
+$a->strings["Getting Started"] = "Do Início";
+$a->strings["Friendica Walk-Through"] = "Passo-a-passo da friendica";
+$a->strings["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."] = "Na sua página <em>Início Rápido</em> - encontre uma introdução rápida ao seu perfil e abas da rede, faça algumas conexões novas, e encontre alguns grupos entrar.";
+$a->strings["Go to Your Settings"] = "Ir para as suas configurações";
+$a->strings["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."] = "Em sua página  <em>Configurações</em> - mude sua senha inicial. Também tome nota de seu Endereço de Identidade. Isso se parece com um endereço de e-mail - e será útil para se fazer amigos na rede social livre.";
+$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Revise as outras configurações, em particular as relacionadas a privacidade. Não estar listado no diretório é o equivalente a não ter o seu número na lista telefônica. Normalmente é interessante você estar listado - a não ser que os seu amigos atuais e potenciais saibam exatamente como encontrar você.";
+$a->strings["Profile"] = "Perfil ";
+$a->strings["Upload Profile Photo"] = "Enviar foto do perfil";
+$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Envie uma foto para o seu perfil, caso ainda não tenha feito isso. Estudos indicam que pessoas que publicam fotos reais delas mesmas têm 10 vezes mais chances de encontrar novos amigos do que as que não o fazem.";
+$a->strings["Edit Your Profile"] = "Editar seu perfil";
+$a->strings["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."] = "Edite o seu perfil <strong>padrão</strong> a seu gosto. Revise as configurações de ocultação da sua lista de amigos e do seu perfil de visitantes desconhecidos.";
+$a->strings["Profile Keywords"] = "Palavras-chave do perfil";
+$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."] = "Defina algumas palavras-chave públicas para o seu perfil padrão, que descrevam os seus interesses. Nós podemos encontrar outras pessoas com interesses similares e sugerir novas amizades.";
+$a->strings["Connecting"] = "Conexões";
+$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."] = "Autorize o Conector com Facebook, caso você tenha uma conta lá e nós (opcionalmente) importaremos todos os seus amigos e conversas do Facebook.";
+$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Se</em> esse é o seu servidor pessoal, instalar o complemento do Facebook talvez facilite a transição para a rede social livre.";
+$a->strings["Importing Emails"] = "Importação de e-mails";
+$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Forneça a informação de acesso ao seu e-mail na sua página de Configuração de Conector se você deseja importar e interagir com amigos ou listas de discussão da sua Caixa de Entrada de e-mail";
+$a->strings["Go to Your Contacts Page"] = "Ir para a sua página de contatos";
+$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Sua página de contatos é sua rota para o gerenciamento de amizades e conexão com amigos em outras redes. Geralmente você fornece o endereço deles ou a URL do site na janela de diálogo <em>Adicionar Novo Contato</em>.";
+$a->strings["Go to Your Site's Directory"] = "Ir para o diretório do seu site";
+$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 página de Diretório permite que você encontre outras pessoas nesta rede ou em outras redes federadas. Procure por um link <em>Conectar</em> ou <em>Seguir</em> no perfil que deseja acompanhar. Forneça o seu Endereço de Identidade próprio, se solicitado.";
+$a->strings["Finding New People"] = "Pesquisar por novas pessoas";
+$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."] = "No painel lateral da página de Contatos existem várias ferramentas para encontrar novos amigos. Você pode descobrir pessoas com os mesmos interesses, procurar por nomes ou interesses e fornecer sugestões baseadas nos relacionamentos da rede. Em um site completamente novo, as sugestões de amizades geralmente começam a ser populadas dentro de 24 horas.";
+$a->strings["Groups"] = "Grupos";
+$a->strings["Group Your Contacts"] = "Agrupe seus contatos";
+$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."] = "Após fazer novas amizades, organize-as em grupos de conversa privados, a partir da barra lateral na sua página de Contatos. A partir daí, você poderá interagir com cada grupo privativamente, na sua página de Rede.";
+$a->strings["Why Aren't My Posts Public?"] = "Por que as minhas publicações não são públicas?";
+$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "A friendica respeita sua privacidade. Por padrão, suas publicações estarão visíveis apenas para as pessoas que você adicionou como amigos. Para mais informações, veja a página de ajuda, a partir do link acima.";
+$a->strings["Getting Help"] = "Obtendo ajuda";
+$a->strings["Go to the Help Section"] = "Ir para a seção de ajuda";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Nossas páginas de <strong>ajuda</strong> podem ser consultadas para mais detalhes sobre características e recursos do programa.";
+$a->strings["Remove term"] = "Remover o termo";
+$a->strings["Saved Searches"] = "Pesquisas salvas";
+$a->strings["Search"] = "Pesquisar";
+$a->strings["No results."] = "Nenhum resultado.";
+$a->strings["Total invitation limit exceeded."] = "Limite de convites totais excedido.";
+$a->strings["%s : Not a valid email address."] = "%s : Não é um endereço de e-mail válido.";
+$a->strings["Please join us on Friendica"] = "Por favor, junte-se à nós na Friendica";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite de convites ultrapassado. Favor contactar o administrador do sítio.";
+$a->strings["%s : Message delivery failed."] = "%s : Não foi possível enviar a mensagem.";
+$a->strings["%d message sent."] = array(
+       0 => "%d mensagem enviada.",
+       1 => "%d mensagens enviadas.",
+);
+$a->strings["You have no more invitations available"] = "Você não possui mais convites disponíveis";
+$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."] = "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público.";
+$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."] = "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros.";
+$a->strings["Send invitations"] = "Enviar convites.";
+$a->strings["Enter email addresses, one per line:"] = "Digite os endereços de e-mail, um por linha:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Você preciso informar este código de convite: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com.";
 $a->strings["Additional features"] = "Funcionalidades adicionais";
-$a->strings["Display settings"] = "Configurações de exibição";
-$a->strings["Connector settings"] = "Configurações do conector";
-$a->strings["Plugin settings"] = "Configurações dos plugins";
+$a->strings["Display"] = "Tela";
+$a->strings["Social Networks"] = "Redes Sociais";
+$a->strings["Delegations"] = "Delegações";
 $a->strings["Connected apps"] = "Aplicações conectadas";
 $a->strings["Export personal data"] = "Exportar dados pessoais";
 $a->strings["Remove account"] = "Remover a conta";
 $a->strings["Missing some important data!"] = "Está faltando algum dado importante!";
-$a->strings["Update"] = "Atualizar";
 $a->strings["Failed to connect with email account using the settings provided."] = "Não foi possível conectar à conta de e-mail com as configurações fornecidas.";
 $a->strings["Email settings updated."] = "As configurações de e-mail foram atualizadas.";
 $a->strings["Features updated"] = "Funcionalidades atualizadas";
@@ -827,7 +804,6 @@ $a->strings["enabled"] = "habilitado";
 $a->strings["disabled"] = "desabilitado";
 $a->strings["StatusNet"] = "StatusNet";
 $a->strings["Email access is disabled on this site."] = "O acesso ao e-mail está desabilitado neste site.";
-$a->strings["Connector Settings"] = "Configurações do conector";
 $a->strings["Email/Mailbox Setup"] = "Configurações do e-mail/caixa postal";
 $a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Caso você deseje se comunicar com contatos de e-mail usando este serviço (opcional), por favor especifique como se conectar à sua caixa postal.";
 $a->strings["Last successful email check:"] = "Última checagem bem sucedida de e-mail:";
@@ -852,7 +828,10 @@ $a->strings["Number of items to display per page:"] = "Número de itens a serem
 $a->strings["Maximum of 100 items"] = "Máximo de 100 itens";
 $a->strings["Number of items to display per page when viewed from mobile device:"] = "Número de itens a serem exibidos por página quando visualizando em um dispositivo móvel:";
 $a->strings["Don't show emoticons"] = "Não exibir emoticons";
+$a->strings["Don't show notices"] = "Não mostra avisos";
 $a->strings["Infinite scroll"] = "rolamento infinito";
+$a->strings["User Types"] = "Tipos de Usuários";
+$a->strings["Community Types"] = "Tipos de Comunidades";
 $a->strings["Normal Account Page"] = "Página de conta normal";
 $a->strings["This account is a normal personal profile"] = "Essa conta é um perfil pessoal normal";
 $a->strings["Soapbox Page"] = "Página de vitrine";
@@ -904,8 +883,6 @@ $a->strings["Maximum Friend Requests/Day:"] = "Número máximo de requisições
 $a->strings["(to prevent spam abuse)"] = "(para prevenir abuso de spammers)";
 $a->strings["Default Post Permissions"] = "Permissões padrão de publicação";
 $a->strings["(click to open/close)"] = "(clique para abrir/fechar)";
-$a->strings["Show to Groups"] = "Mostre para Grupos";
-$a->strings["Show to Contacts"] = "Mostre para Contatos";
 $a->strings["Default Private Post"] = "Publicação Privada Padrão";
 $a->strings["Default Public Post"] = "Publicação Pública Padrão";
 $a->strings["Default Permissions for New Posts"] = "Permissões Padrão para Publicações Novas";
@@ -929,6 +906,9 @@ $a->strings["Change the behaviour of this account for special situations"] = "Mo
 $a->strings["Relocate"] = "Relocação";
 $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."] = "Se você moveu esse perfil de outro servidor e algum dos seus contatos não recebe atualizações, pressione esse botão.";
 $a->strings["Resend relocate message to contacts"] = "Reenviar mensagem de relocação para os contatos";
+$a->strings["Item has been removed."] = "O item foi removido.";
+$a->strings["People Search"] = "Pesquisar pessoas";
+$a->strings["No matches"] = "Nenhuma correspondência";
 $a->strings["Profile deleted."] = "O perfil foi excluído.";
 $a->strings["Profile-"] = "Perfil-";
 $a->strings["New profile created."] = "O novo perfil foi criado.";
@@ -985,152 +965,99 @@ $a->strings["Likes:"] = "Gosta de:";
 $a->strings["Dislikes:"] = "Não gosta de:";
 $a->strings["Example: fishing photography software"] = "Exemplo: pesca fotografia software";
 $a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Usado para sugerir amigos em potencial, pode ser visto pelos outros)";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(Usado na pesquisa de perfis, nunca é exibido para os outros)";
-$a->strings["Tell us about yourself..."] = "Fale um pouco sobre você...";
-$a->strings["Hobbies/Interests"] = "Passatempos/Interesses";
-$a->strings["Contact information and Social Networks"] = "Informações de contato e redes sociais";
-$a->strings["Musical interests"] = "Preferências musicais";
-$a->strings["Books, literature"] = "Livros, literatura";
-$a->strings["Television"] = "Televisão";
-$a->strings["Film/dance/culture/entertainment"] = "Filme/dança/cultura/entretenimento";
-$a->strings["Love/romance"] = "Amor/romance";
-$a->strings["Work/employment"] = "Trabalho/emprego";
-$a->strings["School/education"] = "Escola/educação";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Este é o seu perfil <strong>público</strong>.<br />Ele <strong>pode</strong> estar visível para qualquer um que acesse a Internet.";
-$a->strings["Edit/Manage Profiles"] = "Editar/Gerenciar perfis";
-$a->strings["Group created."] = "O grupo foi criado.";
-$a->strings["Could not create group."] = "Não foi possível criar o grupo.";
-$a->strings["Group not found."] = "O grupo não foi encontrado.";
-$a->strings["Group name changed."] = "O nome do grupo foi alterado.";
-$a->strings["Save Group"] = "Salvar o grupo";
-$a->strings["Create a group of contacts/friends."] = "Criar um grupo de contatos/amigos.";
-$a->strings["Group Name: "] = "Nome do grupo: ";
-$a->strings["Group removed."] = "O grupo foi removido.";
-$a->strings["Unable to remove group."] = "Não foi possível remover o grupo.";
-$a->strings["Group Editor"] = "Editor de grupo";
-$a->strings["Members"] = "Membros";
-$a->strings["Click on a contact to add or remove."] = "Clique em um contato para adicionar ou remover.";
-$a->strings["Source (bbcode) text:"] = "Texto fonte (bbcode):";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Texto fonte (Diaspora) a converter para BBcode:";
-$a->strings["Source input: "] = "Entrada fonte:";
-$a->strings["bb2html (raw HTML): "] = "bb2html (HTML puro):";
-$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): "] = "Fonte de entrada (formato Diaspora):";
-$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(Usado na pesquisa de perfis, nunca é exibido para os outros)";
+$a->strings["Tell us about yourself..."] = "Fale um pouco sobre você...";
+$a->strings["Hobbies/Interests"] = "Passatempos/Interesses";
+$a->strings["Contact information and Social Networks"] = "Informações de contato e redes sociais";
+$a->strings["Musical interests"] = "Preferências musicais";
+$a->strings["Books, literature"] = "Livros, literatura";
+$a->strings["Television"] = "Televisão";
+$a->strings["Film/dance/culture/entertainment"] = "Filme/dança/cultura/entretenimento";
+$a->strings["Love/romance"] = "Amor/romance";
+$a->strings["Work/employment"] = "Trabalho/emprego";
+$a->strings["School/education"] = "Escola/educação";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Este é o seu perfil <strong>público</strong>.<br />Ele <strong>pode</strong> estar visível para qualquer um que acesse a Internet.";
+$a->strings["Age: "] = "Idade: ";
+$a->strings["Edit/Manage Profiles"] = "Editar/Gerenciar perfis";
+$a->strings["Change profile photo"] = "Mudar a foto do perfil";
+$a->strings["Create New Profile"] = "Criar um novo perfil";
+$a->strings["Profile Image"] = "Imagem do perfil";
+$a->strings["visible to everybody"] = "visível para todos";
+$a->strings["Edit visibility"] = "Editar a visibilidade";
+$a->strings["link"] = "ligação";
+$a->strings["Export account"] = "Exportar conta";
+$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."] = "Exporta suas informações de conta e contatos. Use para fazer uma cópia de segurança de sua conta e/ou para movê-la para outro servidor.";
+$a->strings["Export all"] = "Exportar tudo";
+$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)"] = "Exportar as informações de sua conta, contatos e todos os seus items como JSON. Pode ser um arquivo muito grande, e pode levar bastante tempo. Use isto para fazer uma cópia de segurança completa da sua conta (fotos não são exportadas)";
+$a->strings["{0} wants to be your friend"] = "{0} deseja ser seu amigo";
+$a->strings["{0} sent you a message"] = "{0} lhe enviou uma mensagem";
+$a->strings["{0} requested registration"] = "{0} solicitou registro";
+$a->strings["{0} commented %s's post"] = "{0} comentou a publicação de %s";
+$a->strings["{0} liked %s's post"] = "{0} gostou da publicação de %s";
+$a->strings["{0} disliked %s's post"] = "{0} desgostou da publicação de %s";
+$a->strings["{0} is now friends with %s"] = "{0} agora é amigo de %s";
+$a->strings["{0} posted"] = "{0} publicou";
+$a->strings["{0} tagged %s's post with #%s"] = "{0} etiquetou a publicação de %s com #%s";
+$a->strings["{0} mentioned you in a post"] = "{0} mencionou você em uma publicação";
+$a->strings["Nothing new here"] = "Nada de novo aqui";
+$a->strings["Clear notifications"] = "Descartar notificações";
 $a->strings["Not available."] = "Não disponível.";
-$a->strings["Contact added"] = "O contato foi adicionado";
-$a->strings["No more system notifications."] = "Não fazer notificações de sistema.";
-$a->strings["System Notifications"] = "Notificações de sistema";
-$a->strings["New Message"] = "Nova mensagem";
-$a->strings["Unable to locate contact information."] = "Não foi possível localizar informação do contato.";
-$a->strings["Messages"] = "Mensagens";
-$a->strings["Do you really want to delete this message?"] = "Você realmente deseja deletar essa mensagem?";
-$a->strings["Message deleted."] = "A mensagem foi excluída.";
-$a->strings["Conversation removed."] = "A conversa foi removida.";
-$a->strings["No messages."] = "Nenhuma mensagem.";
-$a->strings["Unknown sender - %s"] = "Remetente desconhecido - %s";
-$a->strings["You and %s"] = "Você e %s";
-$a->strings["%s and You"] = "%s e você";
-$a->strings["Delete conversation"] = "Excluir conversa";
-$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d mensagem",
-       1 => "%d mensagens",
-);
-$a->strings["Message not available."] = "A mensagem não está disponível.";
-$a->strings["Delete message"] = "Excluir a mensagem";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Não foi encontrada nenhuma comunicação segura. Você <strong>pode</strong> ser capaz de responder a partir da página de perfil do remetente.";
-$a->strings["Send Reply"] = "Enviar resposta";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s não gosta de %3\$s de %2\$s";
-$a->strings["Post successful."] = "Publicado com sucesso.";
-$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ H:i";
-$a->strings["Time Conversion"] = "Conversão de tempo";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica provê esse serviço para compartilhar eventos com outras redes e amigos em fuso-horários desconhecidos.";
-$a->strings["UTC time: %s"] = "Hora UTC: %s";
-$a->strings["Current timezone: %s"] = "Fuso horário atual: %s";
-$a->strings["Converted localtime: %s"] = "Horário local convertido: %s";
-$a->strings["Please select your timezone:"] = "Por favor, selecione seu fuso horário:";
+$a->strings["Community"] = "Comunidade";
 $a->strings["Save to Folder:"] = "Salvar na pasta:";
 $a->strings["- select -"] = "-selecione-";
+$a->strings["Save"] = "Salvar";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Lamento, talvez seu envio seja maior do que as configurações do PHP permitem";
+$a->strings["Or - did you try to upload an empty file?"] = "Ou - você tentou enviar um arquivo vazio?";
+$a->strings["File exceeds size limit of %d"] = "O arquivo excedeu o tamanho limite de %d";
+$a->strings["File upload failed."] = "Não foi possível enviar o arquivo.";
 $a->strings["Invalid profile identifier."] = "Identificador de perfil inválido.";
 $a->strings["Profile Visibility Editor"] = "Editor de visibilidade do perfil";
+$a->strings["Click on a contact to add or remove."] = "Clique em um contato para adicionar ou remover.";
 $a->strings["Visible To"] = "Visível para";
 $a->strings["All Contacts (with secure profile access)"] = "Todos os contatos (com acesso a perfil seguro)";
+$a->strings["Do you really want to delete this suggestion?"] = "Você realmente deseja deletar essa sugestão?";
+$a->strings["Friend Suggestions"] = "Sugestões de amigos";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Não existe nenhuma sugestão disponível. Se este for um site novo, por favor tente novamente em 24 horas.";
+$a->strings["Connect"] = "Conectar";
+$a->strings["Ignore/Hide"] = "Ignorar/Ocultar";
+$a->strings["Access denied."] = "Acesso negado.";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s dá as boas vinda à %2\$s";
+$a->strings["Manage Identities and/or Pages"] = "Gerenciar identidades e/ou páginas";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\"";
+$a->strings["Select an identity to manage: "] = "Selecione uma identidade para gerenciar: ";
+$a->strings["No potential page delegates located."] = "Nenhuma página delegada potencial localizada.";
+$a->strings["Delegate Page Management"] = "Delegar Administração de Página";
+$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."] = "Delegados podem administrar todos os aspectos dessa página/conta exceto por configurações básicas da conta.\nFavor não delegar sua conta pessoal para ninguém que você não confie inteiramente.";
+$a->strings["Existing Page Managers"] = "Administradores de Páginas Existentes";
+$a->strings["Existing Page Delegates"] = "Delegados de Páginas Existentes";
+$a->strings["Potential Delegates"] = "Delegados Potenciais";
+$a->strings["Add"] = "Adicionar";
+$a->strings["No entries."] = "Sem entradas.";
 $a->strings["No contacts."] = "Nenhum contato.";
 $a->strings["View Contacts"] = "Ver contatos";
-$a->strings["People Search"] = "Pesquisar pessoas";
-$a->strings["No matches"] = "Nenhuma correspondência";
-$a->strings["Upload New Photos"] = "Enviar novas fotos";
-$a->strings["Contact information unavailable"] = "A informação de contato não está disponível";
-$a->strings["Album not found."] = "O álbum não foi encontrado.";
-$a->strings["Delete Album"] = "Excluir o álbum";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?";
-$a->strings["Delete Photo"] = "Excluir a foto";
-$a->strings["Do you really want to delete this photo?"] = "Você realmente deseja deletar essa foto?";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s foi marcado em %2\$s por %3\$s";
-$a->strings["a photo"] = "uma foto";
-$a->strings["Image exceeds size limit of "] = "A imagem excede o tamanho máximo de ";
-$a->strings["Image file is empty."] = "O arquivo de imagem está vazio.";
-$a->strings["Unable to process image."] = "Não foi possível processar a imagem.";
-$a->strings["Image upload failed."] = "Não foi possível enviar a imagem.";
-$a->strings["No photos selected"] = "Não foi selecionada nenhuma foto";
-$a->strings["Access to this item is restricted."] = "O acesso a este item é restrito.";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Você está usando %1$.2f Mbytes dos %2$.2f Mbytes liberados para armazenamento de fotos.";
-$a->strings["Upload Photos"] = "Enviar fotos";
-$a->strings["New album name: "] = "Nome do novo álbum: ";
-$a->strings["or existing album name: "] = "ou o nome de um álbum já existente: ";
-$a->strings["Do not show a status post for this upload"] = "Não exiba uma publicação de status para este envio";
-$a->strings["Permissions"] = "Permissões";
-$a->strings["Private Photo"] = "Foto Privada";
-$a->strings["Public Photo"] = "Foto Pública";
-$a->strings["Edit Album"] = "Editar o álbum";
-$a->strings["Show Newest First"] = "Exibir as mais recentes primeiro";
-$a->strings["Show Oldest First"] = "Exibir as mais antigas primeiro";
-$a->strings["View Photo"] = "Ver a foto";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Permissão negada. O acesso a este item pode estar restrito.";
-$a->strings["Photo not available"] = "A foto não está disponível";
-$a->strings["View photo"] = "Ver a imagem";
-$a->strings["Edit photo"] = "Editar a foto";
-$a->strings["Use as profile photo"] = "Usar como uma foto de perfil";
-$a->strings["View Full Size"] = "Ver no tamanho real";
-$a->strings["Tags: "] = "Etiquetas: ";
-$a->strings["[Remove any tag]"] = "[Remover qualquer etiqueta]";
-$a->strings["Rotate CW (right)"] = "Rotacionar para direita";
-$a->strings["Rotate CCW (left)"] = "Rotacionar para esquerda";
-$a->strings["New album name"] = "Novo nome para o álbum";
-$a->strings["Caption"] = "Legenda";
-$a->strings["Add a Tag"] = "Adicionar uma etiqueta";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento";
-$a->strings["Private photo"] = "Foto privada";
-$a->strings["Public photo"] = "Foto pública";
-$a->strings["Share"] = "Compartilhar";
-$a->strings["View Album"] = "Ver álbum";
-$a->strings["Recent Photos"] = "Fotos recentes";
-$a->strings["File exceeds size limit of %d"] = "O arquivo excedeu o tamanho limite de %d";
-$a->strings["File upload failed."] = "Não foi possível enviar o arquivo.";
-$a->strings["No videos selected"] = "Nenhum vídeo selecionado";
-$a->strings["View Video"] = "Ver Vídeo";
-$a->strings["Recent Videos"] = "Vídeos Recentes";
-$a->strings["Upload New Videos"] = "Envie Novos Vídeos";
+$a->strings["Personal Notes"] = "Notas pessoais";
 $a->strings["Poke/Prod"] = "Cutucar/Incitar";
 $a->strings["poke, prod or do other things to somebody"] = "Cutuca, incita ou faz outras coisas com alguém";
 $a->strings["Recipient"] = "Destinatário";
 $a->strings["Choose what you wish to do to recipient"] = "Selecione o que você deseja fazer com o destinatário";
 $a->strings["Make this post private"] = "Fazer com que essa publicação se torne privada";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está seguindo %2\$s's %3\$s";
-$a->strings["Export account"] = "Exportar conta";
-$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."] = "Exporta suas informações de conta e contatos. Use para fazer uma cópia de segurança de sua conta e/ou para movê-la para outro servidor.";
-$a->strings["Export all"] = "Exportar tudo";
-$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)"] = "Exportar as informações de sua conta, contatos e todos os seus items como JSON. Pode ser um arquivo muito grande, e pode levar bastante tempo. Use isto para fazer uma cópia de segurança completa da sua conta (fotos não são exportadas)";
-$a->strings["Common Friends"] = "Amigos em Comum";
-$a->strings["No contacts in common."] = "Nenhum contato em comum.";
-$a->strings["Image exceeds size limit of %d"] = "A imagem excede o limite de tamanho de %d";
-$a->strings["Wall Photos"] = "Fotos do mural";
+$a->strings["Global Directory"] = "Diretório global";
+$a->strings["Find on this site"] = "Pesquisar neste site";
+$a->strings["Site Directory"] = "Diretório do site";
+$a->strings["Gender: "] = "Gênero: ";
+$a->strings["Gender:"] = "Gênero:";
+$a->strings["Status:"] = "Situação:";
+$a->strings["Homepage:"] = "Página web:";
+$a->strings["About:"] = "Sobre:";
+$a->strings["No entries (some entries may be hidden)."] = "Nenhuma entrada (algumas entradas podem estar ocultas).";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ H:i";
+$a->strings["Time Conversion"] = "Conversão de tempo";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica provê esse serviço para compartilhar eventos com outras redes e amigos em fuso-horários desconhecidos.";
+$a->strings["UTC time: %s"] = "Hora UTC: %s";
+$a->strings["Current timezone: %s"] = "Fuso horário atual: %s";
+$a->strings["Converted localtime: %s"] = "Horário local convertido: %s";
+$a->strings["Please select your timezone:"] = "Por favor, selecione seu fuso horário:";
+$a->strings["Post successful."] = "Publicado com sucesso.";
 $a->strings["Image uploaded but image cropping failed."] = "A imagem foi enviada, mas não foi possível cortá-la.";
 $a->strings["Image size reduction [%s] failed."] = "Não foi possível reduzir o tamanho da imagem [%s].";
 $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recarregue a página pressionando a tecla Shift ou limpe o cache do navegador caso a nova foto não apareça imediatamente";
@@ -1144,51 +1071,89 @@ $a->strings["Crop Image"] = "Cortar a imagem";
 $a->strings["Please adjust the image cropping for optimum viewing."] = "Por favor, ajuste o corte da imagem para a melhor visualização.";
 $a->strings["Done Editing"] = "Encerrar a edição";
 $a->strings["Image uploaded successfully."] = "A imagem foi enviada com sucesso.";
-$a->strings["Applications"] = "Aplicativos";
-$a->strings["No installed applications."] = "Nenhum aplicativo instalado";
-$a->strings["Nothing new here"] = "Nada de novo aqui";
-$a->strings["Clear notifications"] = "Descartar notificações";
+$a->strings["Friendica Communications Server - Setup"] = "Servidor de Comunicações Friendica - Configuração";
+$a->strings["Could not connect to database."] = "Não foi possível conectar ao banco de dados.";
+$a->strings["Could not create table."] = "Não foi possível criar tabela.";
+$a->strings["Your Friendica site database has been installed."] = "O banco de dados do seu site Friendica foi instalado.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Você provavelmente precisará importar o arquivo \"database.sql\" manualmente, usando o phpmyadmin ou o mysql.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Por favor, dê uma olhada no arquivo \"INSTALL.TXT\".";
+$a->strings["System check"] = "Checagem do sistema";
+$a->strings["Check again"] = "Checar novamente";
+$a->strings["Database connection"] = "Conexão de banco de dados";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "À fim de instalar o Friendica, você precisa saber como se conectar ao seu banco de dados.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a essas configurações.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "O banco de dados que você especificou abaixo já deve existir. Caso contrário, por favor crie-o antes de continuar.";
+$a->strings["Database Server Name"] = "Nome do servidor de banco de dados";
+$a->strings["Database Login Name"] = "Nome do usuário do banco de dados";
+$a->strings["Database Login Password"] = "Senha do usuário do banco de dados";
+$a->strings["Database Name"] = "Nome do banco de dados";
+$a->strings["Site administrator email address"] = "Endereço de email do administrador do site";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web.";
+$a->strings["Please select a default timezone for your website"] = "Por favor, selecione o fuso horário padrão para o seu site";
+$a->strings["Site settings"] = "Configurações do site";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu servidor web.";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Caso você não tenha uma versão de linha de comando do PHP instalado no seu servidor, você não será capaz de executar a captação em segundo plano. Dê uma olhada em <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
+$a->strings["PHP executable path"] = "Caminho para o executável do PhP";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação.";
+$a->strings["Command line PHP"] = "PHP em linha de comando";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "O executável do PHP não é o binário do php cli (could be cgi-fcgi version)";
+$a->strings["Found PHP version: "] = "Encontrado PHP versão:";
+$a->strings["PHP cli binary"] = "Binário cli do PHP";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema.";
+$a->strings["This is required for message delivery to work."] = "Isto é necessário para o funcionamento do envio de mensagens.";
+$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\".";
+$a->strings["Generate encryption keys"] = "Gerar chaves de encriptação";
+$a->strings["libCurl PHP module"] = "Módulo PHP libCurl";
+$a->strings["GD graphics PHP module"] = "Módulo PHP GD graphics";
+$a->strings["OpenSSL PHP module"] = "Módulo PHP OpenSSL";
+$a->strings["mysqli PHP module"] = "Módulo PHP mysqli";
+$a->strings["mb_string PHP module"] = "Módulo PHP mb_string ";
+$a->strings["Apache mod_rewrite module"] = "Módulo mod_rewrite do Apache";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Erro: o módulo libCURL do PHP é necessário, mas não está instalado.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Erro: o módulo openssl do PHP é necessário, mas não está instalado.";
+$a->strings["Error: mysqli PHP module required but not installed."] = "Erro: o módulo mysqli do PHP é necessário, mas não está instalado.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Erro: o módulo mb_string PHP é necessário, mas não está instalado.";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo.";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta.";
+$a->strings["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."] = "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome. htconfig.php, na pasta raiz da instalação do seu Friendica.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"INSTALL.TXT\" para instruções.";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php tem permissão de escrita";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa o engine de template Smarty3 para renderizar suas web views. Smarty3 compila templates para PHP para acelerar a renderização.";
+$a->strings["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."] = "Para guardar os templates compilados, o servidor web necessita de permissão de escrita no diretório view/smarty3/ no diretório raíz do Friendica.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Favor se certificar que o usuário sob o qual o servidor web roda (ex: www-data) tenha permissão de escrita nesse diretório.";
+$a->strings["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."] = "Nota: como uma medida de segurança, você deve fornecer ao servidor web permissão de escrita em view/smarty3/ somente--não aos arquivos de template (.tpl) que ele contém.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 tem escrita permitida";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "A reescrita de URLs definida no .htaccess não está funcionando. Por favor, verifique as configurações do seu servidor.";
+$a->strings["Url rewrite is working"] = "A reescrita de URLs está funcionando";
+$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web.";
+$a->strings["Errors encountered creating database tables."] = "Foram encontrados erros durante a criação das tabelas do banco de dados.";
+$a->strings["<h1>What next</h1>"] = "<h1>A seguir</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o captador.";
+$a->strings["Group created."] = "O grupo foi criado.";
+$a->strings["Could not create group."] = "Não foi possível criar o grupo.";
+$a->strings["Group not found."] = "O grupo não foi encontrado.";
+$a->strings["Group name changed."] = "O nome do grupo foi alterado.";
+$a->strings["Save Group"] = "Salvar o grupo";
+$a->strings["Create a group of contacts/friends."] = "Criar um grupo de contatos/amigos.";
+$a->strings["Group Name: "] = "Nome do grupo: ";
+$a->strings["Group removed."] = "O grupo foi removido.";
+$a->strings["Unable to remove group."] = "Não foi possível remover o grupo.";
+$a->strings["Group Editor"] = "Editor de grupo";
+$a->strings["Members"] = "Membros";
+$a->strings["No such group"] = "Este grupo não existe";
+$a->strings["Group is empty"] = "O grupo está vazio";
+$a->strings["Group: "] = "Grupo: ";
+$a->strings["View in context"] = "Ver no contexto";
+$a->strings["Account approved."] = "A conta foi aprovada.";
+$a->strings["Registration revoked for %s"] = "O registro de %s foi revogado";
+$a->strings["Please login."] = "Por favor, autentique-se.";
 $a->strings["Profile Match"] = "Correspondência de perfil";
 $a->strings["No keywords to match. Please add keywords to your default profile."] = "Não foi encontrada nenhuma palavra-chave associada a você. Por favor, adicione algumas ao seu perfil padrão.";
 $a->strings["is interested in:"] = "se interessa por:";
-$a->strings["Tag removed"] = "A etiqueta foi removida";
-$a->strings["Remove Item Tag"] = "Remover a etiqueta do item";
-$a->strings["Select a tag to remove: "] = "Selecione uma etiqueta para remover: ";
-$a->strings["Remove"] = "Remover";
-$a->strings["Event title and start time are required."] = "O título do evento e a hora de início são obrigatórios.";
-$a->strings["l, F j"] = "l, F j";
-$a->strings["Edit event"] = "Editar o evento";
-$a->strings["link to source"] = "exibir a origem";
-$a->strings["Create New Event"] = "Criar um novo evento";
-$a->strings["Previous"] = "Anterior";
-$a->strings["hour:minute"] = "hora:minuto";
-$a->strings["Event details"] = "Detalhes do evento";
-$a->strings["Format is %s %s. Starting date and Title are required."] = "O formato é %s %s. O título e a data de início são obrigatórios.";
-$a->strings["Event Starts:"] = "Início do evento:";
-$a->strings["Required"] = "Obrigatório";
-$a->strings["Finish date/time is not known or not relevant"] = "A data/hora de término não é conhecida ou não é relevante";
-$a->strings["Event Finishes:"] = "Término do evento:";
-$a->strings["Adjust for viewer timezone"] = "Ajustar para o fuso horário do visualizador";
-$a->strings["Description:"] = "Descrição:";
-$a->strings["Title:"] = "Título:";
-$a->strings["Share this event"] = "Compartilhar este evento";
-$a->strings["No potential page delegates located."] = "Nenhuma página delegada potencial localizada.";
-$a->strings["Delegate Page Management"] = "Delegar Administração de Página";
-$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."] = "Delegados podem administrar todos os aspectos dessa página/conta exceto por configurações básicas da conta.\nFavor não delegar sua conta pessoal para ninguém que você não confie inteiramente.";
-$a->strings["Existing Page Managers"] = "Administradores de Páginas Existentes";
-$a->strings["Existing Page Delegates"] = "Delegados de Páginas Existentes";
-$a->strings["Potential Delegates"] = "Delegados Potenciais";
-$a->strings["Add"] = "Adicionar";
-$a->strings["No entries."] = "Sem entradas.";
-$a->strings["Contacts who are not members of a group"] = "Contatos que não são membros de um grupo";
-$a->strings["Files"] = "Arquivos";
-$a->strings["System down for maintenance"] = "Sistema em manutenção";
-$a->strings["Remove My Account"] = "Remover minha conta";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la.";
-$a->strings["Please enter your password for verification:"] = "Por favor, digite a sua senha para verificação:";
-$a->strings["Friend suggestion sent."] = "A sugestão de amigo foi enviada";
-$a->strings["Suggest Friends"] = "Sugerir amigos";
-$a->strings["Suggest a friend for %s"] = "Sugerir um amigo para %s";
 $a->strings["Unable to locate original post."] = "Não foi possível localizar a publicação original.";
 $a->strings["Empty post discarded."] = "A publicação em branco foi descartada.";
 $a->strings["System error. Post not saved."] = "Erro no sistema. A publicação não foi salva.";
@@ -1196,168 +1161,187 @@ $a->strings["This message was sent to you by %s, a member of the Friendica socia
 $a->strings["You may visit them online at %s"] = "Você pode visitá-lo em %s";
 $a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Por favor, entre em contato com o remetente respondendo a esta publicação, caso você não queira mais receber estas mensagens.";
 $a->strings["%s posted an update."] = "%s publicou uma atualização.";
-$a->strings["{0} wants to be your friend"] = "{0} deseja ser seu amigo";
-$a->strings["{0} sent you a message"] = "{0} lhe enviou uma mensagem";
-$a->strings["{0} requested registration"] = "{0} solicitou registro";
-$a->strings["{0} commented %s's post"] = "{0} comentou a publicação de %s";
-$a->strings["{0} liked %s's post"] = "{0} gostou da publicação de %s";
-$a->strings["{0} disliked %s's post"] = "{0} desgostou da publicação de %s";
-$a->strings["{0} is now friends with %s"] = "{0} agora é amigo de %s";
-$a->strings["{0} posted"] = "{0} publicou";
-$a->strings["{0} tagged %s's post with #%s"] = "{0} etiquetou a publicação de %s com #%s";
-$a->strings["{0} mentioned you in a post"] = "{0} mencionou você em uma publicação";
-$a->strings["OpenID protocol error. No ID returned."] = "Erro no protocolo OpenID. Não foi retornada nenhuma ID.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "A conta não foi encontrada e não são permitidos registros via OpenID nesse site.";
-$a->strings["Login failed."] = "Não foi possível autenticar.";
-$a->strings["Invalid request identifier."] = "Identificador de solicitação inválido";
-$a->strings["Discard"] = "Descartar";
-$a->strings["System"] = "Sistema";
-$a->strings["Network"] = "Rede";
-$a->strings["Introductions"] = "Apresentações";
-$a->strings["Show Ignored Requests"] = "Exibir solicitações ignoradas";
-$a->strings["Hide Ignored Requests"] = "Ocultar solicitações ignoradas";
-$a->strings["Notification type: "] = "Tipo de notificação:";
-$a->strings["Friend Suggestion"] = "Sugestão de amigo";
-$a->strings["suggested by %s"] = "sugerido por %s";
-$a->strings["Post a new friend activity"] = "Publicar a adição de amigo";
-$a->strings["if applicable"] = "se aplicável";
-$a->strings["Claims to be known to you: "] = "Alega ser conhecido por você: ";
-$a->strings["yes"] = "sim";
-$a->strings["no"] = "não";
-$a->strings["Approve as: "] = "Aprovar como:";
-$a->strings["Friend"] = "Amigo";
-$a->strings["Sharer"] = "Compartilhador";
-$a->strings["Fan/Admirer"] = "Fã/Admirador";
-$a->strings["Friend/Connect Request"] = "Solicitação de amizade/conexão";
-$a->strings["New Follower"] = "Novo acompanhante";
-$a->strings["No introductions."] = "Sem apresentações.";
-$a->strings["Notifications"] = "Notificações";
-$a->strings["%s liked %s's post"] = "%s gostou da publicação de %s";
-$a->strings["%s disliked %s's post"] = "%s desgostou da publicação de %s";
-$a->strings["%s is now friends with %s"] = "%s agora é amigo de %s";
-$a->strings["%s created a new post"] = "%s criou uma nova publicação";
-$a->strings["%s commented on %s's post"] = "%s comentou uma publicação de %s";
-$a->strings["No more network notifications."] = "Nenhuma notificação de rede.";
-$a->strings["Network Notifications"] = "Notificações de rede";
-$a->strings["No more personal notifications."] = "Nenhuma notificação pessoal.";
-$a->strings["Personal Notifications"] = "Notificações pessoais";
-$a->strings["No more home notifications."] = "Não existe mais nenhuma notificação pessoal.";
-$a->strings["Home Notifications"] = "Notificações pessoais";
-$a->strings["Total invitation limit exceeded."] = "Limite de convites totais excedido.";
-$a->strings["%s : Not a valid email address."] = "%s : Não é um endereço de e-mail válido.";
-$a->strings["Please join us on Friendica"] = "Por favor, junte-se à nós na Friendica";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite de convites ultrapassado. Favor contactar o administrador do sítio.";
-$a->strings["%s : Message delivery failed."] = "%s : Não foi possível enviar a mensagem.";
-$a->strings["%d message sent."] = array(
-       0 => "%d mensagem enviada.",
-       1 => "%d mensagens enviadas.",
-);
-$a->strings["You have no more invitations available"] = "Você não possui mais convites disponíveis";
-$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."] = "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público.";
-$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."] = "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros.";
-$a->strings["Send invitations"] = "Enviar convites.";
-$a->strings["Enter email addresses, one per line:"] = "Digite os endereços de e-mail, um por linha:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Você preciso informar este código de convite: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com.";
-$a->strings["Manage Identities and/or Pages"] = "Gerenciar identidades e/ou páginas";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\"";
-$a->strings["Select an identity to manage: "] = "Selecione uma identidade para gerenciar: ";
-$a->strings["Welcome to %s"] = "Bem-vindo(a) a %s";
-$a->strings["Friends of %s"] = "Amigos de %s";
-$a->strings["No friends to display."] = "Nenhum amigo para exibir.";
-$a->strings["Add New Contact"] = "Adicionar Contato Novo";
-$a->strings["Enter address or web location"] = "Forneça endereço ou localização web";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Por exemplo: joao@exemplo.com, http://exemplo.com/maria";
-$a->strings["%d invitation available"] = array(
-       0 => "%d convite disponível",
-       1 => "%d convites disponíveis",
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s atualmente está %2\$s";
+$a->strings["Mood"] = "Humor";
+$a->strings["Set your current mood and tell your friends"] = "Defina o seu humor e conte aos seus amigos";
+$a->strings["Search Results For:"] = "Resultados de Busca Por:";
+$a->strings["add"] = "adicionar";
+$a->strings["Commented Order"] = "Ordem dos comentários";
+$a->strings["Sort by Comment Date"] = "Ordenar pela data do comentário";
+$a->strings["Posted Order"] = "Ordem das publicações";
+$a->strings["Sort by Post Date"] = "Ordenar pela data de publicação";
+$a->strings["Posts that mention or involve you"] = "Publicações que mencionem ou envolvam você";
+$a->strings["New"] = "Nova";
+$a->strings["Activity Stream - by date"] = "Fluxo de atividades - por data";
+$a->strings["Shared Links"] = "Links compartilhados";
+$a->strings["Interesting Links"] = "Links interessantes";
+$a->strings["Starred"] = "Destacada";
+$a->strings["Favourite Posts"] = "Publicações favoritas";
+$a->strings["Warning: This group contains %s member from an insecure network."] = array(
+       0 => "Aviso: Este grupo contém %s membro de uma rede insegura.",
+       1 => "Aviso: Este grupo contém %s membros de uma rede insegura.",
 );
-$a->strings["Find People"] = "Pesquisar por pessoas";
-$a->strings["Enter name or interest"] = "Fornecer nome ou interesse";
-$a->strings["Connect/Follow"] = "Conectar-se/acompanhar";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Examplos: Robert Morgenstein, Fishing";
-$a->strings["Random Profile"] = "Perfil Randômico";
-$a->strings["Networks"] = "Redes";
-$a->strings["All Networks"] = "Todas as redes";
+$a->strings["Private messages to this group are at risk of public disclosure."] = "Mensagens privadas para este grupo correm o risco de sofrerem divulgação pública.";
+$a->strings["Contact: "] = "Contato: ";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação pública.";
+$a->strings["Invalid contact."] = "Contato inválido.";
+$a->strings["Contact settings applied."] = "As configurações do contato foram aplicadas.";
+$a->strings["Contact update failed."] = "Não foi possível atualizar o contato.";
+$a->strings["Repair Contact Settings"] = "Corrigir configurações do contato";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATENÇÃO: Isso é muito avançado</strong>, se você digitar informações incorretas, suas comunicações com esse contato pode parar de funcionar.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Por favor, use o botão 'Voltar' do seu navegador <strong>agora</strong>, caso você não tenha certeza do que está fazendo.";
+$a->strings["Return to contact editor"] = "Voltar ao editor de contatos";
+$a->strings["Account Nickname"] = "Identificação da conta";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - sobrescreve Nome/Identificação";
+$a->strings["Account URL"] = "URL da conta";
+$a->strings["Friend Request URL"] = "URL da requisição de amizade";
+$a->strings["Friend Confirm URL"] = "URL da confirmação de amizade";
+$a->strings["Notification Endpoint URL"] = "URL do ponto final da notificação";
+$a->strings["Poll/Feed URL"] = "URL do captador/fonte de notícias";
+$a->strings["New photo from this URL"] = "Nova imagem desta URL";
+$a->strings["Remote Self"] = "Auto remoto";
+$a->strings["Mirror postings from this contact"] = "Espelhar publicações deste contato";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Marcar este contato como auto remoto fará com que o friendica republique novas entradas deste usuário.";
+$a->strings["Your posts and conversations"] = "Suas publicações e conversas";
+$a->strings["Your profile page"] = "Sua página de perfil";
+$a->strings["Your contacts"] = "Seus contatos";
+$a->strings["Your photos"] = "Suas fotos";
+$a->strings["Your events"] = "Seus eventos";
+$a->strings["Personal notes"] = "Suas anotações pessoais";
+$a->strings["Your personal photos"] = "Suas fotos pessoais";
+$a->strings["Community Pages"] = "Páginas da Comunidade";
+$a->strings["Community Profiles"] = "Profiles Comunitários";
+$a->strings["Last users"] = "Últimos usuários";
+$a->strings["Last likes"] = "Últimas gostadas";
+$a->strings["event"] = "evento";
+$a->strings["Last photos"] = "Últimas fotos";
+$a->strings["Find Friends"] = "Encontrar amigos";
+$a->strings["Local Directory"] = "Diretório Local";
+$a->strings["Similar Interests"] = "Interesses Parecidos";
+$a->strings["Invite Friends"] = "Convidar amigos";
+$a->strings["Earth Layers"] = "Camadas da Terra";
+$a->strings["Set zoomfactor for Earth Layers"] = "Configure o zoom para Camadas da Terra";
+$a->strings["Set longitude (X) for Earth Layers"] = "Configure longitude (X) para Camadas da Terra";
+$a->strings["Set latitude (Y) for Earth Layers"] = "Configure latitude (Y) para Camadas da Terra";
+$a->strings["Help or @NewHere ?"] = "Ajuda ou @NewHere ?";
+$a->strings["Connect Services"] = "Conectar serviços";
+$a->strings["don't show"] = "não exibir";
+$a->strings["show"] = "exibir";
+$a->strings["Show/hide boxes at right-hand column:"] = "Mostre/esconda caixas na coluna à direita:";
+$a->strings["Theme settings"] = "Configurações do tema";
+$a->strings["Set font-size for posts and comments"] = "Escolha o tamanho da fonte para publicações e comentários";
+$a->strings["Set line-height for posts and comments"] = "Escolha comprimento da linha para publicações e comentários";
+$a->strings["Set resolution for middle column"] = "Escolha a resolução para a coluna do meio";
+$a->strings["Set color scheme"] = "Configure o esquema de cores";
+$a->strings["Set zoomfactor for Earth Layer"] = "Configure o zoom para Camadas da Terra";
+$a->strings["Set style"] = "escolha estilo";
+$a->strings["Set colour scheme"] = "Configure o esquema de cores";
+$a->strings["Alignment"] = "Alinhamento";
+$a->strings["Left"] = "Esquerda";
+$a->strings["Center"] = "Centro";
+$a->strings["Color scheme"] = "Esquema de cores";
+$a->strings["Posts font size"] = "Tamanho da fonte para publicações";
+$a->strings["Textareas font size"] = "Tamanho da fonte para campos texto";
+$a->strings["Set resize level for images in posts and comments (width and height)"] = "Configure o nível de redimensionamento para imagens em publicações e comentários (largura e altura)";
+$a->strings["Set theme width"] = "Configure a largura do tema";
+$a->strings["Delete this item?"] = "Excluir este item?";
+$a->strings["show fewer"] = "exibir menos";
+$a->strings["Update %s failed. See error logs."] = "Atualização %s falhou. Vide registro de erros (log).";
+$a->strings["Update Error at %s"] = "Erro de Atualização em %s";
+$a->strings["Create a New Account"] = "Criar uma nova conta";
+$a->strings["Logout"] = "Sair";
+$a->strings["Login"] = "Entrar";
+$a->strings["Nickname or Email address: "] = "Identificação ou endereço de e-mail: ";
+$a->strings["Password: "] = "Senha: ";
+$a->strings["Remember me"] = "Lembre-se de mim";
+$a->strings["Or login using OpenID: "] = "Ou login usando OpendID:";
+$a->strings["Forgot your password?"] = "Esqueceu a sua senha?";
+$a->strings["Website Terms of Service"] = "Termos de Serviço do Website";
+$a->strings["terms of service"] = "termos de serviço";
+$a->strings["Website Privacy Policy"] = "Política de Privacidade do Website";
+$a->strings["privacy policy"] = "política de privacidade";
+$a->strings["Requested account is not available."] = "Conta solicitada não disponível";
+$a->strings["Edit profile"] = "Editar perfil";
+$a->strings["Message"] = "Mensagem";
+$a->strings["Profiles"] = "Perfis";
+$a->strings["Manage/edit profiles"] = "Gerenciar/editar perfis";
+$a->strings["g A l F d"] = "G l d F";
+$a->strings["F d"] = "F d";
+$a->strings["[today]"] = "[hoje]";
+$a->strings["Birthday Reminders"] = "Lembretes de aniversário";
+$a->strings["Birthdays this week:"] = "Aniversários nesta semana:";
+$a->strings["[No description]"] = "[Sem descrição]";
+$a->strings["Event Reminders"] = "Lembretes de eventos";
+$a->strings["Events this week:"] = "Eventos esta semana:";
+$a->strings["Status"] = "Status";
+$a->strings["Status Messages and Posts"] = "Mensagem de Estado (status) e Publicações";
+$a->strings["Profile Details"] = "Detalhe do Perfil";
+$a->strings["Videos"] = "Vídeos";
+$a->strings["Events and Calendar"] = "Eventos e Agenda";
+$a->strings["Only You Can See This"] = "Somente Você Pode Ver Isso";
+$a->strings["General Features"] = "Funcionalidades Gerais";
+$a->strings["Multiple Profiles"] = "Perfís Múltiplos";
+$a->strings["Ability to create multiple profiles"] = "Capacidade de criar perfis múltiplos";
+$a->strings["Post Composition Features"] = "Funcionalidades de Composição de Publicações";
+$a->strings["Richtext Editor"] = "Editor Richtext";
+$a->strings["Enable richtext editor"] = "Habilite editor richtext";
+$a->strings["Post Preview"] = "Pré-visualização da Publicação";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Permite pré-visualizar publicações e comentários antes de publicá-los";
+$a->strings["Auto-mention Forums"] = "Auto-menção Fóruns";
+$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Adiciona/Remove menções quando uma página de fórum é selecionada/deselecionada na janela ACL";
+$a->strings["Network Sidebar Widgets"] = "Widgets da Barra Lateral da Rede";
+$a->strings["Search by Date"] = "Buscar por Data";
+$a->strings["Ability to select posts by date ranges"] = "Capacidade de selecionar publicações por intervalos de data";
+$a->strings["Group Filter"] = "Filtrar Grupo";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Habilita widget para mostrar publicações da Rede somente de grupos selecionados";
+$a->strings["Network Filter"] = "Filtrar Rede";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Habilita widget para mostrar publicações da Rede de redes selecionadas";
+$a->strings["Save search terms for re-use"] = "Guarde as palavras-chaves para reuso";
+$a->strings["Network Tabs"] = "Abas da Rede";
+$a->strings["Network Personal Tab"] = "Aba Pessoal da Rede";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido";
+$a->strings["Network New Tab"] = "Aba Nova da Rede";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)";
+$a->strings["Network Shared Links Tab"] = "Aba de Links Compartilhados da Rede";
+$a->strings["Enable tab to display only Network posts with links in them"] = "Habilite aba para mostrar somente publicações da Rede que contenham links";
+$a->strings["Post/Comment Tools"] = "Ferramentas de Publicação/Comentário";
+$a->strings["Multiple Deletion"] = "Deleção Multipla";
+$a->strings["Select and delete multiple posts/comments at once"] = "Selecione e delete múltiplas publicações/comentário imediatamente";
+$a->strings["Edit Sent Posts"] = "Editar Publicações Enviadas";
+$a->strings["Edit and correct posts and comments after sending"] = "Editar e corrigir publicações e comentários após envio";
+$a->strings["Tagging"] = "Etiquetagem";
+$a->strings["Ability to tag existing posts"] = "Capacidade de colocar etiquetas em publicações existentes";
+$a->strings["Post Categories"] = "Categorias de Publicações";
+$a->strings["Add categories to your posts"] = "Adicione Categorias ás Publicações";
 $a->strings["Saved Folders"] = "Pastas salvas";
-$a->strings["Everything"] = "Tudo";
-$a->strings["Categories"] = "Categorias";
-$a->strings["Click here to upgrade."] = "Clique aqui para atualização (upgrade).";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "Essa ação excede o limite definido para o seu plano de assinatura.";
-$a->strings["This action is not available under your subscription plan."] = "Essa ação não está disponível em seu plano de assinatura.";
-$a->strings["view full size"] = "ver na tela inteira";
-$a->strings["Starts:"] = "Início:";
-$a->strings["Finishes:"] = "Término:";
-$a->strings["(no subject)"] = "(sem assunto)";
-$a->strings["noreply"] = "naoresponda";
-$a->strings["An invitation is required."] = "É necessário um convite.";
-$a->strings["Invitation could not be verified."] = "Não foi possível verificar o convite.";
-$a->strings["Invalid OpenID url"] = "A URL do OpenID é inválida";
+$a->strings["Ability to file posts under folders"] = "Capacidade de arquivar publicações em pastas";
+$a->strings["Dislike Posts"] = "Desgostar de publicações";
+$a->strings["Ability to dislike posts/comments"] = "Capacidade de desgostar de publicações/comentários";
+$a->strings["Star Posts"] = "Destacar publicações";
+$a->strings["Ability to mark special posts with a star indicator"] = "Capacidade de marcar publicações especiais com uma estrela indicadora";
+$a->strings["Logged out."] = "Saiu.";
 $a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Foi encontrado um erro ao tentar conectar usando o OpenID que você forneceu. Por favor, verifique se sua ID está escrita corretamente.";
 $a->strings["The error message was:"] = "A mensagem de erro foi:";
-$a->strings["Please enter the required information."] = "Por favor, forneça a informação solicitada.";
-$a->strings["Please use a shorter name."] = "Por favor, use um nome mais curto.";
-$a->strings["Name too short."] = "O nome é muito curto.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Isso não parece ser o seu nome completo (Nome Sobrenome).";
-$a->strings["Your email domain is not among those allowed on this site."] = "O domínio do seu e-mail não está entre os permitidos neste site.";
-$a->strings["Not a valid email address."] = "Não é um endereço de e-mail válido.";
-$a->strings["Cannot use that email."] = "Não é possível usar esse e-mail.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "A sua identificação pode conter somente os caracteres \"a-z\", \"0-9\", \"-\", e \"_\", além disso, deve começar com uma letra.";
-$a->strings["Nickname is already registered. Please choose another."] = "Esta identificação já foi registrada. Por favor, escolha outra.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Essa identificação já foi registrada e não pode ser reutilizada. Por favor, escolha outra.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRO GRAVE: Não foi possível gerar as chaves de segurança.";
-$a->strings["An error occurred during registration. Please try again."] = "Ocorreu um erro durante o registro. Por favor, tente novamente.";
-$a->strings["An error occurred creating your default profile. Please try again."] = "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente.";
-$a->strings["Friends"] = "Amigos";
-$a->strings["%1\$s poked %2\$s"] = "%1\$s cutucou %2\$s";
-$a->strings["poked"] = "cutucado";
-$a->strings["post/item"] = "postagem/item";
-$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s marcou %3\$s de %2\$s como favorito";
-$a->strings["remove"] = "remover";
-$a->strings["Delete Selected Items"] = "Excluir os itens selecionados";
-$a->strings["Follow Thread"] = "Seguir o Thread";
-$a->strings["View Status"] = "Ver Status";
-$a->strings["View Profile"] = "Ver Perfil";
-$a->strings["View Photos"] = "Ver Fotos";
-$a->strings["Network Posts"] = "Publicações da Rede";
-$a->strings["Edit Contact"] = "Editar Contato";
-$a->strings["Send PM"] = "Enviar MP";
-$a->strings["Poke"] = "Cutucar";
-$a->strings["%s likes this."] = "%s gostou disso.";
-$a->strings["%s doesn't like this."] = "%s não gostou disso.";
-$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d pessoas</span> gostaram disso";
-$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d pessoas</span> não gostaram disso";
-$a->strings["and"] = "e";
-$a->strings[", and %d other people"] = ", e mais %d outras pessoas";
-$a->strings["%s like this."] = "%s gostaram disso.";
-$a->strings["%s don't like this."] = "%s não gostaram disso.";
-$a->strings["Visible to <strong>everybody</strong>"] = "Visível para <strong>todos</strong>";
-$a->strings["Please enter a video link/URL:"] = "Favor fornecer um link/URL de vídeo";
-$a->strings["Please enter an audio link/URL:"] = "Favor fornecer um link/URL de áudio";
-$a->strings["Tag term:"] = "Etiqueta:";
-$a->strings["Where are you right now?"] = "Onde você está agora?";
-$a->strings["Delete item(s)?"] = "Deletar item(s)?";
-$a->strings["Post to Email"] = "Enviar por e-mail";
-$a->strings["permissions"] = "permissões";
-$a->strings["Post to Groups"] = "Postar em Grupos";
-$a->strings["Post to Contacts"] = "Publique para Contatos";
-$a->strings["Private post"] = "Publicação privada";
-$a->strings["Logged out."] = "Saiu.";
-$a->strings["Error decoding account file"] = "Erro ao decodificar arquivo de conta";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?";
-$a->strings["Error! Cannot check nickname"] = "Erro! Não consigo conferir o apelido (nickname)";
-$a->strings["User '%s' already exists on this server!"] = "User '%s' já existe nesse servidor!";
-$a->strings["User creation error"] = "Erro na criação do usuário";
-$a->strings["User profile creation error"] = "Erro na criação do perfil do Usuário";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d contato não foi importado",
-       1 => "%d contatos não foram importados",
-);
-$a->strings["Done. You can now login with your username and password"] = "Feito. Você agora pode entrar com seu nome de usuário e senha";
+$a->strings["Starts:"] = "Início:";
+$a->strings["Finishes:"] = "Término:";
+$a->strings["j F, Y"] = "j de F, Y";
+$a->strings["j F"] = "j de F";
+$a->strings["Birthday:"] = "Aniversário:";
+$a->strings["Age:"] = "Idade:";
+$a->strings["for %1\$d %2\$s"] = "para %1\$d %2\$s";
+$a->strings["Tags:"] = "Etiquetas:";
+$a->strings["Religion:"] = "Religião:";
+$a->strings["Hobbies/Interests:"] = "Passatempos/Interesses:";
+$a->strings["Contact information and Social Networks:"] = "Informações de contato e redes sociais:";
+$a->strings["Musical interests:"] = "Preferências musicais:";
+$a->strings["Books, literature:"] = "Livros, literatura:";
+$a->strings["Television:"] = "Televisão:";
+$a->strings["Film/dance/culture/entertainment:"] = "Filmes/dança/cultura/entretenimento:";
+$a->strings["Love/Romance:"] = "Amor/romance:";
+$a->strings["Work/employment:"] = "Trabalho/emprego:";
+$a->strings["School/education:"] = "Escola/educação:";
+$a->strings["[no subject]"] = "[sem assunto]";
+$a->strings[" on Last.fm"] = "na Last.fm";
 $a->strings["newer"] = "mais recente";
 $a->strings["older"] = "antigo";
 $a->strings["prev"] = "anterior";
@@ -1370,6 +1354,7 @@ $a->strings["%d Contact"] = array(
        1 => "%d contatos",
 );
 $a->strings["poke"] = "cutucar";
+$a->strings["poked"] = "cutucado";
 $a->strings["ping"] = "ping";
 $a->strings["pinged"] = "pingado";
 $a->strings["prod"] = "incentivar";
@@ -1421,200 +1406,37 @@ $a->strings["November"] = "Novembro";
 $a->strings["December"] = "Dezembro";
 $a->strings["bytes"] = "bytes";
 $a->strings["Click to open/close"] = "Clique para abrir/fechar";
+$a->strings["default"] = "padrão";
 $a->strings["Select an alternate language"] = "Selecione um idioma alternativo";
 $a->strings["activity"] = "atividade";
-$a->strings["post"] = "publicação";
-$a->strings["Item filed"] = "O item foi arquivado";
-$a->strings["Friendica Notification"] = "Notificação Friendica";
-$a->strings["Thank You,"] = "Obrigado,";
-$a->strings["%s Administrator"] = "%s Administrador";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Nova mensagem recebida em %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s lhe enviou uma mensagem privativa em %2\$s.";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s lhe enviou %2\$s.";
-$a->strings["a private message"] = "uma mensagem privada";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Favor visitar %s para ver e/ou responder às suas mensagens privadas.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s comentou uma [url=%2\$s] %3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s comentou na %4\$s de [url=%2\$s]%3\$s [/url]";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s comentou [url=%2\$s]sua %3\$s[/url]";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify] Comentário na conversa #%1\$d por %2\$s";
-$a->strings["%s commented on an item/conversation you have been following."] = "%s comentou um item/conversa que você está seguindo.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Favor visitar %s para ver e/ou responder à conversa.";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s publicou no mural do seu perfil";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s publicou no mural do seu perfil em %2\$s";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s publicou para [url=%2\$s]seu mural[/url]";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s etiquetou você";
-$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s etiquetou você em %2\$s";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]etiquetou você[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s cutucou você";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s cutucou você em %2\$s";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]cutucou você[/url].";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s etiquetou sua publicação";
-$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s etiquetou sua publicação em %2\$s";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s etiquetou [url=%2\$s]sua publicação[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] Você recebeu uma apresentação";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Você recebeu uma apresentação de '%1\$s' em %2\$s";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Você recebeu [url=%1\$s]uma apresentação[/url] de %2\$s.";
-$a->strings["You may visit their profile at %s"] = "Você pode visitar o perfil deles em %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Favor visitar %s para aprovar ou rejeitar a apresentação.";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] Você recebeu uma sugestão de amigo";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Você recebeu uma sugestão de amigo de '%1\$s' em %2\$s";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Você recebeu [url=%1\$s]uma sugestão de amigo[/url] de %2\$s em %3\$s";
-$a->strings["Name:"] = "Nome:";
-$a->strings["Photo:"] = "Foto:";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Favor visitar %s para aprovar ou rejeitar a sugestão.";
-$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."] = "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes <strong>poderão</strong> ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente.";
-$a->strings["Default privacy group for new contacts"] = "Grupo de privacidade padrão para novos contatos";
-$a->strings["Everybody"] = "Todos";
-$a->strings["edit"] = "editar";
-$a->strings["Edit group"] = "Editar grupo";
-$a->strings["Create a new group"] = "Criar um novo grupo";
-$a->strings["Contacts not in any group"] = "Contatos não estão dentro de nenhum grupo";
-$a->strings["Connect URL missing."] = "URL de conexão faltando.";
-$a->strings["This site is not configured to allow communications with other networks."] = "Este site não está configurado para permitir comunicações com outras redes.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Não foi descoberto nenhum protocolo de comunicação ou fonte de notícias compatível.";
-$a->strings["The profile address specified does not provide adequate information."] = "O endereço de perfil especificado não fornece informação adequada.";
-$a->strings["An author or name was not found."] = "Não foi encontrado nenhum autor ou nome.";
-$a->strings["No browser URL could be matched to this address."] = "Não foi possível encontrar nenhuma URL de navegação neste endereço.";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Não foi possível  casa o estilo @ de Endereço de Identidade com um protocolo conhecido ou contato de email.";
-$a->strings["Use mailto: in front of address to force email check."] = "Use mailto: antes do endereço para forçar a checagem de email.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "O endereço de perfil especificado pertence a uma rede que foi desabilitada neste site.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Perfil limitado. Essa pessoa não poderá receber notificações diretas/pessoais de você.";
-$a->strings["Unable to retrieve contact information."] = "Não foi possível recuperar a informação do contato.";
-$a->strings["following"] = "acompanhando";
-$a->strings["[no subject]"] = "[sem assunto]";
-$a->strings["End this session"] = "Terminar esta sessão";
-$a->strings["Sign in"] = "Entrar";
-$a->strings["Home Page"] = "Página pessoal";
-$a->strings["Create an account"] = "Criar uma conta";
-$a->strings["Help and documentation"] = "Ajuda e documentação";
-$a->strings["Apps"] = "Aplicativos";
-$a->strings["Addon applications, utilities, games"] = "Complementos, utilitários, jogos";
-$a->strings["Search site content"] = "Pesquisar conteúdo no site";
-$a->strings["Conversations on this site"] = "Conversas neste site";
-$a->strings["Directory"] = "Diretório";
-$a->strings["People directory"] = "Diretório de pessoas";
-$a->strings["Conversations from your friends"] = "Conversas dos seus amigos";
-$a->strings["Network Reset"] = "Reiniciar Rede";
-$a->strings["Load Network page with no filters"] = "Carregar página Rede sem filtros";
-$a->strings["Friend Requests"] = "Requisições de Amizade";
-$a->strings["See all notifications"] = "Ver todas notificações";
-$a->strings["Mark all system notifications seen"] = "Marcar todas as notificações de sistema como vistas";
-$a->strings["Private mail"] = "Mensagem privada";
-$a->strings["Inbox"] = "Recebidas";
-$a->strings["Outbox"] = "Enviadas";
-$a->strings["Manage"] = "Gerenciar";
-$a->strings["Manage other pages"] = "Gerenciar outras páginas";
-$a->strings["Delegations"] = "Delegações";
-$a->strings["Manage/Edit Profiles"] = "Administrar/Editar Perfis";
-$a->strings["Manage/edit friends and contacts"] = "Gerenciar/editar amigos e contatos";
-$a->strings["Site setup and configuration"] = "Configurações do site";
-$a->strings["Navigation"] = "Navegação";
-$a->strings["Site map"] = "Mapa do Site";
-$a->strings["j F, Y"] = "j de F, Y";
-$a->strings["j F"] = "j de F";
-$a->strings["Birthday:"] = "Aniversário:";
-$a->strings["Age:"] = "Idade:";
-$a->strings["for %1\$d %2\$s"] = "para %1\$d %2\$s";
-$a->strings["Tags:"] = "Etiquetas:";
-$a->strings["Religion:"] = "Religião:";
-$a->strings["Hobbies/Interests:"] = "Passatempos/Interesses:";
-$a->strings["Contact information and Social Networks:"] = "Informações de contato e redes sociais:";
-$a->strings["Musical interests:"] = "Preferências musicais:";
-$a->strings["Books, literature:"] = "Livros, literatura:";
-$a->strings["Television:"] = "Televisão:";
-$a->strings["Film/dance/culture/entertainment:"] = "Filmes/dança/cultura/entretenimento:";
-$a->strings["Love/Romance:"] = "Amor/romance:";
-$a->strings["Work/employment:"] = "Trabalho/emprego:";
-$a->strings["School/education:"] = "Escola/educação:";
-$a->strings["Image/photo"] = "Imagem/foto";
-$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "<span><a href=\"%s\" target=\"external-link\">%s</a>escreveu o seguinte<a href=\"%s\" target=\"external-link\">publicação</a>";
-$a->strings["$1 wrote:"] = "$1 escreveu:";
-$a->strings["Encrypted content"] = "Conteúdo criptografado";
-$a->strings["Unknown | Not categorised"] = "Desconhecido | Não categorizado";
-$a->strings["Block immediately"] = "Bloquear imediatamente";
-$a->strings["Shady, spammer, self-marketer"] = "Dissimulado, spammer, propagandista";
-$a->strings["Known to me, but no opinion"] = "Eu conheço, mas não possuo nenhuma opinião acerca";
-$a->strings["OK, probably harmless"] = "Ok, provavelmente inofensivo";
-$a->strings["Reputable, has my trust"] = "Boa reputação, tem minha confiança";
-$a->strings["Weekly"] = "Semanalmente";
-$a->strings["Monthly"] = "Mensalmente";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Zot!"] = "Zot!";
-$a->strings["LinkedIn"] = "LinkedIn";
-$a->strings["XMPP/IM"] = "XMPP/IM";
-$a->strings["MySpace"] = "MySpace";
-$a->strings["Google+"] = "Google+";
-$a->strings["pump.io"] = "pump.io";
-$a->strings["Twitter"] = "Twitter";
-$a->strings["Miscellaneous"] = "Miscelânea";
-$a->strings["year"] = "ano";
-$a->strings["month"] = "mês";
-$a->strings["day"] = "dia";
-$a->strings["never"] = "nunca";
-$a->strings["less than a second ago"] = "menos de um segundo atrás";
-$a->strings["years"] = "anos";
-$a->strings["months"] = "meses";
-$a->strings["week"] = "semana";
-$a->strings["weeks"] = "semanas";
-$a->strings["days"] = "dias";
-$a->strings["hour"] = "hora";
-$a->strings["hours"] = "horas";
-$a->strings["minute"] = "minuto";
-$a->strings["minutes"] = "minutos";
-$a->strings["second"] = "segundo";
-$a->strings["seconds"] = "segundos";
-$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s atrás";
+$a->strings["post"] = "publicação";
+$a->strings["Item filed"] = "O item foi arquivado";
+$a->strings["User not found."] = "Usuário não encontrado.";
+$a->strings["There is no status with this id."] = "Não existe status com esse id.";
+$a->strings["There is no conversation with this id."] = "Não existe conversas com esse id.";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'";
 $a->strings["%s's birthday"] = "aniversários de %s's";
 $a->strings["Happy Birthday %s"] = "Feliz Aniversário %s";
-$a->strings["General Features"] = "Funcionalidades Gerais";
-$a->strings["Multiple Profiles"] = "Perfís Múltiplos";
-$a->strings["Ability to create multiple profiles"] = "Capacidade de criar perfis múltiplos";
-$a->strings["Post Composition Features"] = "Funcionalidades de Composição de Publicações";
-$a->strings["Richtext Editor"] = "Editor Richtext";
-$a->strings["Enable richtext editor"] = "Habilite editor richtext";
-$a->strings["Post Preview"] = "Pré-visualização da Publicação";
-$a->strings["Allow previewing posts and comments before publishing them"] = "Permite pré-visualizar publicações e comentários antes de publicá-los";
-$a->strings["Network Sidebar Widgets"] = "Widgets da Barra Lateral da Rede";
-$a->strings["Search by Date"] = "Buscar por Data";
-$a->strings["Ability to select posts by date ranges"] = "Capacidade de selecionar publicações por intervalos de data";
-$a->strings["Group Filter"] = "Filtrar Grupo";
-$a->strings["Enable widget to display Network posts only from selected group"] = "Habilita widget para mostrar publicações da Rede somente de grupos selecionados";
-$a->strings["Network Filter"] = "Filtrar Rede";
-$a->strings["Enable widget to display Network posts only from selected network"] = "Habilita widget para mostrar publicações da Rede de redes selecionadas";
-$a->strings["Save search terms for re-use"] = "Guarde as palavras-chaves para reuso";
-$a->strings["Network Tabs"] = "Abas da Rede";
-$a->strings["Network Personal Tab"] = "Aba Pessoal da Rede";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido";
-$a->strings["Network New Tab"] = "Aba Nova da Rede";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)";
-$a->strings["Network Shared Links Tab"] = "Aba de Links Compartilhados da Rede";
-$a->strings["Enable tab to display only Network posts with links in them"] = "Habilite aba para mostrar somente publicações da Rede que contenham links";
-$a->strings["Post/Comment Tools"] = "Ferramentas de Publicação/Comentário";
-$a->strings["Multiple Deletion"] = "Deleção Multipla";
-$a->strings["Select and delete multiple posts/comments at once"] = "Selecione e delete múltiplas publicações/comentário imediatamente";
-$a->strings["Edit Sent Posts"] = "Editar Publicações Enviadas";
-$a->strings["Edit and correct posts and comments after sending"] = "Editar e corrigir publicações e comentários após envio";
-$a->strings["Tagging"] = "Etiquetagem";
-$a->strings["Ability to tag existing posts"] = "Capacidade de colocar etiquetas em publicações existentes";
-$a->strings["Post Categories"] = "Categorias de Publicações";
-$a->strings["Add categories to your posts"] = "Adicione Categorias ás Publicações";
-$a->strings["Ability to file posts under folders"] = "Capacidade de arquivar publicações em pastas";
-$a->strings["Dislike Posts"] = "Desgostar de publicações";
-$a->strings["Ability to dislike posts/comments"] = "Capacidade de desgostar de publicações/comentários";
-$a->strings["Star Posts"] = "Destacar publicações";
-$a->strings["Ability to mark special posts with a star indicator"] = "Capacidade de marcar publicações especiais com uma estrela indicadora";
-$a->strings["Sharing notification from Diaspora network"] = "Notificação de compartilhamento da rede Diaspora";
-$a->strings["Attachments:"] = "Anexos:";
-$a->strings["Visible to everybody"] = "Visível para todos";
 $a->strings["A new person is sharing with you at "] = "Uma nova pessoa está compartilhando com você em ";
 $a->strings["You have a new follower at "] = "Você tem um novo acompanhante em ";
 $a->strings["Do you really want to delete this item?"] = "Você realmente deseja deletar esse item?";
 $a->strings["Archives"] = "Arquivos";
-$a->strings["Embedded content"] = "Conteúdo incorporado";
-$a->strings["Embedding disabled"] = "A incorporação está desabilitada";
+$a->strings["(no subject)"] = "(sem assunto)";
+$a->strings["noreply"] = "naoresponda";
+$a->strings["Sharing notification from Diaspora network"] = "Notificação de compartilhamento da rede Diaspora";
+$a->strings["Attachments:"] = "Anexos:";
+$a->strings["Connect URL missing."] = "URL de conexão faltando.";
+$a->strings["This site is not configured to allow communications with other networks."] = "Este site não está configurado para permitir comunicações com outras redes.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Não foi descoberto nenhum protocolo de comunicação ou fonte de notícias compatível.";
+$a->strings["The profile address specified does not provide adequate information."] = "O endereço de perfil especificado não fornece informação adequada.";
+$a->strings["An author or name was not found."] = "Não foi encontrado nenhum autor ou nome.";
+$a->strings["No browser URL could be matched to this address."] = "Não foi possível encontrar nenhuma URL de navegação neste endereço.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Não foi possível  casa o estilo @ de Endereço de Identidade com um protocolo conhecido ou contato de email.";
+$a->strings["Use mailto: in front of address to force email check."] = "Use mailto: antes do endereço para forçar a checagem de email.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "O endereço de perfil especificado pertence a uma rede que foi desabilitada neste site.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Perfil limitado. Essa pessoa não poderá receber notificações diretas/pessoais de você.";
+$a->strings["Unable to retrieve contact information."] = "Não foi possível recuperar a informação do contato.";
+$a->strings["following"] = "acompanhando";
 $a->strings["Welcome "] = "Bem-vindo(a) ";
 $a->strings["Please upload a profile photo."] = "Por favor, envie uma foto para o perfil.";
 $a->strings["Welcome back "] = "Bem-vindo(a) de volta ";
@@ -1655,6 +1477,7 @@ $a->strings["Infatuated"] = "Apaixonado";
 $a->strings["Dating"] = "Saindo com alguém";
 $a->strings["Unfaithful"] = "Infiel";
 $a->strings["Sex Addict"] = "Viciado(a) em sexo";
+$a->strings["Friends"] = "Amigos";
 $a->strings["Friends/Benefits"] = "Amigos/Benefícios";
 $a->strings["Casual"] = "Casual";
 $a->strings["Engaged"] = "Envolvido(a)";
@@ -1676,6 +1499,208 @@ $a->strings["Uncertain"] = "Incerto(a)";
 $a->strings["It's complicated"] = "É complicado";
 $a->strings["Don't care"] = "Não importa";
 $a->strings["Ask me"] = "Pergunte-me";
+$a->strings["Error decoding account file"] = "Erro ao decodificar arquivo de conta";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?";
+$a->strings["Error! Cannot check nickname"] = "Erro! Não consigo conferir o apelido (nickname)";
+$a->strings["User '%s' already exists on this server!"] = "User '%s' já existe nesse servidor!";
+$a->strings["User creation error"] = "Erro na criação do usuário";
+$a->strings["User profile creation error"] = "Erro na criação do perfil do Usuário";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d contato não foi importado",
+       1 => "%d contatos não foram importados",
+);
+$a->strings["Done. You can now login with your username and password"] = "Feito. Você agora pode entrar com seu nome de usuário e senha";
+$a->strings["Click here to upgrade."] = "Clique aqui para atualização (upgrade).";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Essa ação excede o limite definido para o seu plano de assinatura.";
+$a->strings["This action is not available under your subscription plan."] = "Essa ação não está disponível em seu plano de assinatura.";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s cutucou %2\$s";
+$a->strings["post/item"] = "postagem/item";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s marcou %3\$s de %2\$s como favorito";
+$a->strings["remove"] = "remover";
+$a->strings["Delete Selected Items"] = "Excluir os itens selecionados";
+$a->strings["Follow Thread"] = "Seguir o Thread";
+$a->strings["View Status"] = "Ver Status";
+$a->strings["View Profile"] = "Ver Perfil";
+$a->strings["View Photos"] = "Ver Fotos";
+$a->strings["Network Posts"] = "Publicações da Rede";
+$a->strings["Edit Contact"] = "Editar Contato";
+$a->strings["Send PM"] = "Enviar MP";
+$a->strings["Poke"] = "Cutucar";
+$a->strings["%s likes this."] = "%s gostou disso.";
+$a->strings["%s doesn't like this."] = "%s não gostou disso.";
+$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d pessoas</span> gostaram disso";
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d pessoas</span> não gostaram disso";
+$a->strings["and"] = "e";
+$a->strings[", and %d other people"] = ", e mais %d outras pessoas";
+$a->strings["%s like this."] = "%s gostaram disso.";
+$a->strings["%s don't like this."] = "%s não gostaram disso.";
+$a->strings["Visible to <strong>everybody</strong>"] = "Visível para <strong>todos</strong>";
+$a->strings["Please enter a video link/URL:"] = "Favor fornecer um link/URL de vídeo";
+$a->strings["Please enter an audio link/URL:"] = "Favor fornecer um link/URL de áudio";
+$a->strings["Tag term:"] = "Etiqueta:";
+$a->strings["Where are you right now?"] = "Onde você está agora?";
+$a->strings["Delete item(s)?"] = "Deletar item(s)?";
+$a->strings["Post to Email"] = "Enviar por e-mail";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Conectores desabilitados, desde \"%s\" está habilitado.";
+$a->strings["permissions"] = "permissões";
+$a->strings["Post to Groups"] = "Postar em Grupos";
+$a->strings["Post to Contacts"] = "Publique para Contatos";
+$a->strings["Private post"] = "Publicação privada";
+$a->strings["Add New Contact"] = "Adicionar Contato Novo";
+$a->strings["Enter address or web location"] = "Forneça endereço ou localização web";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Por exemplo: joao@exemplo.com, http://exemplo.com/maria";
+$a->strings["%d invitation available"] = array(
+       0 => "%d convite disponível",
+       1 => "%d convites disponíveis",
+);
+$a->strings["Find People"] = "Pesquisar por pessoas";
+$a->strings["Enter name or interest"] = "Fornecer nome ou interesse";
+$a->strings["Connect/Follow"] = "Conectar-se/acompanhar";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Examplos: Robert Morgenstein, Fishing";
+$a->strings["Random Profile"] = "Perfil Randômico";
+$a->strings["Networks"] = "Redes";
+$a->strings["All Networks"] = "Todas as redes";
+$a->strings["Everything"] = "Tudo";
+$a->strings["Categories"] = "Categorias";
+$a->strings["End this session"] = "Terminar esta sessão";
+$a->strings["Sign in"] = "Entrar";
+$a->strings["Home Page"] = "Página pessoal";
+$a->strings["Create an account"] = "Criar uma conta";
+$a->strings["Help and documentation"] = "Ajuda e documentação";
+$a->strings["Apps"] = "Aplicativos";
+$a->strings["Addon applications, utilities, games"] = "Complementos, utilitários, jogos";
+$a->strings["Search site content"] = "Pesquisar conteúdo no site";
+$a->strings["Conversations on this site"] = "Conversas neste site";
+$a->strings["Directory"] = "Diretório";
+$a->strings["People directory"] = "Diretório de pessoas";
+$a->strings["Information"] = "Informação";
+$a->strings["Information about this friendica instance"] = "Informação sobre esta instância do friendica";
+$a->strings["Conversations from your friends"] = "Conversas dos seus amigos";
+$a->strings["Network Reset"] = "Reiniciar Rede";
+$a->strings["Load Network page with no filters"] = "Carregar página Rede sem filtros";
+$a->strings["Friend Requests"] = "Requisições de Amizade";
+$a->strings["See all notifications"] = "Ver todas notificações";
+$a->strings["Mark all system notifications seen"] = "Marcar todas as notificações de sistema como vistas";
+$a->strings["Private mail"] = "Mensagem privada";
+$a->strings["Inbox"] = "Recebidas";
+$a->strings["Outbox"] = "Enviadas";
+$a->strings["Manage"] = "Gerenciar";
+$a->strings["Manage other pages"] = "Gerenciar outras páginas";
+$a->strings["Account settings"] = "Configurações da conta";
+$a->strings["Manage/Edit Profiles"] = "Administrar/Editar Perfis";
+$a->strings["Manage/edit friends and contacts"] = "Gerenciar/editar amigos e contatos";
+$a->strings["Site setup and configuration"] = "Configurações do site";
+$a->strings["Navigation"] = "Navegação";
+$a->strings["Site map"] = "Mapa do Site";
+$a->strings["Unknown | Not categorised"] = "Desconhecido | Não categorizado";
+$a->strings["Block immediately"] = "Bloquear imediatamente";
+$a->strings["Shady, spammer, self-marketer"] = "Dissimulado, spammer, propagandista";
+$a->strings["Known to me, but no opinion"] = "Eu conheço, mas não possuo nenhuma opinião acerca";
+$a->strings["OK, probably harmless"] = "Ok, provavelmente inofensivo";
+$a->strings["Reputable, has my trust"] = "Boa reputação, tem minha confiança";
+$a->strings["Weekly"] = "Semanalmente";
+$a->strings["Monthly"] = "Mensalmente";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Zot!"] = "Zot!";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "Google+";
+$a->strings["pump.io"] = "pump.io";
+$a->strings["Twitter"] = "Twitter";
+$a->strings["Diaspora Connector"] = "Conector do Diáspora";
+$a->strings["Statusnet"] = "Statusnet";
+$a->strings["Friendica Notification"] = "Notificação Friendica";
+$a->strings["Thank You,"] = "Obrigado,";
+$a->strings["%s Administrator"] = "%s Administrador";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Nova mensagem recebida em %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s lhe enviou uma mensagem privativa em %2\$s.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s lhe enviou %2\$s.";
+$a->strings["a private message"] = "uma mensagem privada";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Favor visitar %s para ver e/ou responder às suas mensagens privadas.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s comentou uma [url=%2\$s] %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s comentou na %4\$s de [url=%2\$s]%3\$s [/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s comentou [url=%2\$s]sua %3\$s[/url]";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify] Comentário na conversa #%1\$d por %2\$s";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s comentou um item/conversa que você está seguindo.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Favor visitar %s para ver e/ou responder à conversa.";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s publicou no mural do seu perfil";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s publicou no mural do seu perfil em %2\$s";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s publicou para [url=%2\$s]seu mural[/url]";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s etiquetou você";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s etiquetou você em %2\$s";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]etiquetou você[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s compartilhado uma nova publicação";
+$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s compartilhou uma nova publicação em %2\$s";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]compartilhou uma publicação[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s cutucou você";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s cutucou você em %2\$s";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]cutucou você[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s etiquetou sua publicação";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s etiquetou sua publicação em %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s etiquetou [url=%2\$s]sua publicação[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] Você recebeu uma apresentação";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Você recebeu uma apresentação de '%1\$s' em %2\$s";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Você recebeu [url=%1\$s]uma apresentação[/url] de %2\$s.";
+$a->strings["You may visit their profile at %s"] = "Você pode visitar o perfil deles em %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Favor visitar %s para aprovar ou rejeitar a apresentação.";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] Você recebeu uma sugestão de amigo";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Você recebeu uma sugestão de amigo de '%1\$s' em %2\$s";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Você recebeu [url=%1\$s]uma sugestão de amigo[/url] de %2\$s em %3\$s";
+$a->strings["Name:"] = "Nome:";
+$a->strings["Photo:"] = "Foto:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Favor visitar %s para aprovar ou rejeitar a sugestão.";
+$a->strings["An invitation is required."] = "É necessário um convite.";
+$a->strings["Invitation could not be verified."] = "Não foi possível verificar o convite.";
+$a->strings["Invalid OpenID url"] = "A URL do OpenID é inválida";
+$a->strings["Please enter the required information."] = "Por favor, forneça a informação solicitada.";
+$a->strings["Please use a shorter name."] = "Por favor, use um nome mais curto.";
+$a->strings["Name too short."] = "O nome é muito curto.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Isso não parece ser o seu nome completo (Nome Sobrenome).";
+$a->strings["Your email domain is not among those allowed on this site."] = "O domínio do seu e-mail não está entre os permitidos neste site.";
+$a->strings["Not a valid email address."] = "Não é um endereço de e-mail válido.";
+$a->strings["Cannot use that email."] = "Não é possível usar esse e-mail.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "A sua identificação pode conter somente os caracteres \"a-z\", \"0-9\", \"-\", e \"_\", além disso, deve começar com uma letra.";
+$a->strings["Nickname is already registered. Please choose another."] = "Esta identificação já foi registrada. Por favor, escolha outra.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Essa identificação já foi registrada e não pode ser reutilizada. Por favor, escolha outra.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRO GRAVE: Não foi possível gerar as chaves de segurança.";
+$a->strings["An error occurred during registration. Please try again."] = "Ocorreu um erro durante o registro. Por favor, tente novamente.";
+$a->strings["An error occurred creating your default profile. Please try again."] = "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente.";
+$a->strings["Visible to everybody"] = "Visível para todos";
+$a->strings["Image/photo"] = "Imagem/foto";
+$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "<span><a href=\"%s\" target=\"_blank\">%s</a> escreveu a seguinte <a href=\"%s\" target=\"_blank\">publicação</a>";
+$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
+$a->strings["$1 wrote:"] = "$1 escreveu:";
+$a->strings["Encrypted content"] = "Conteúdo criptografado";
+$a->strings["Embedded content"] = "Conteúdo incorporado";
+$a->strings["Embedding disabled"] = "A incorporação está desabilitada";
+$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."] = "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes <strong>poderão</strong> ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente.";
+$a->strings["Default privacy group for new contacts"] = "Grupo de privacidade padrão para novos contatos";
+$a->strings["Everybody"] = "Todos";
+$a->strings["edit"] = "editar";
+$a->strings["Edit group"] = "Editar grupo";
+$a->strings["Create a new group"] = "Criar um novo grupo";
+$a->strings["Contacts not in any group"] = "Contatos não estão dentro de nenhum grupo";
 $a->strings["stopped following"] = "parou de acompanhar";
 $a->strings["Drop Contact"] = "Excluir o contato";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'";
+$a->strings["Miscellaneous"] = "Miscelânea";
+$a->strings["year"] = "ano";
+$a->strings["month"] = "mês";
+$a->strings["day"] = "dia";
+$a->strings["never"] = "nunca";
+$a->strings["less than a second ago"] = "menos de um segundo atrás";
+$a->strings["years"] = "anos";
+$a->strings["months"] = "meses";
+$a->strings["week"] = "semana";
+$a->strings["weeks"] = "semanas";
+$a->strings["days"] = "dias";
+$a->strings["hour"] = "hora";
+$a->strings["hours"] = "horas";
+$a->strings["minute"] = "minuto";
+$a->strings["minutes"] = "minutos";
+$a->strings["second"] = "segundo";
+$a->strings["seconds"] = "segundos";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s atrás";
+$a->strings["view full size"] = "ver na tela inteira";
index 15fcf29938aa27eee580897942cae39a07aae1c8..aacf76529ea91a893395733f528728c67bc6b3bb 100644 (file)
@@ -61,7 +61,7 @@
 
 <h3>{{$importh}}</h3>
        <div id ="import-profile">
-               <a href="/uimport">{{$importt}}</a>
+               <a href="uimport">{{$importt}}</a>
        </div>
 </form>
 
index 13a52afd64098b238cad34e7099ff2075f7ef157..403eb7e13e60b9a838c9f5af856627b8a4f8c79d 100644 (file)
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-12-31 18:07+0100\n"
-"PO-Revision-Date: 2014-01-04 20:35+0000\n"
+"POT-Creation-Date: 2014-04-26 09:22+0200\n"
+"PO-Revision-Date: 2014-04-28 04:03+0000\n"
 "Last-Translator: matthew_exon <transifex.mexon@spamgourmet.com>\n"
 "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/friendica/language/zh_CN/)\n"
 "MIME-Version: 1.0\n"
@@ -25,24 +25,24 @@ msgid "This entry was edited"
 msgstr "这个文章被编辑了"
 
 #: ../../object/Item.php:113 ../../mod/content.php:619
-#: ../../mod/photos.php:1351
+#: ../../mod/photos.php:1355
 msgid "Private Message"
 msgstr "私人的新闻"
 
 #: ../../object/Item.php:117 ../../mod/editpost.php:109
-#: ../../mod/content.php:727 ../../mod/settings.php:663
+#: ../../mod/content.php:727 ../../mod/settings.php:670
 msgid "Edit"
 msgstr "编辑"
 
 #: ../../object/Item.php:126 ../../mod/content.php:437
-#: ../../mod/content.php:739 ../../include/conversation.php:611
+#: ../../mod/content.php:739 ../../include/conversation.php:612
 msgid "Select"
 msgstr "选择"
 
-#: ../../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
+#: ../../object/Item.php:127 ../../mod/admin.php:908 ../../mod/content.php:438
+#: ../../mod/content.php:740 ../../mod/contacts.php:703
+#: ../../mod/settings.php:671 ../../mod/group.php:171
+#: ../../mod/photos.php:1646 ../../include/conversation.php:613
 msgid "Delete"
 msgstr "删除"
 
@@ -71,7 +71,7 @@ msgid "add tag"
 msgstr "加标签"
 
 #: ../../object/Item.php:213 ../../mod/content.php:683
-#: ../../mod/photos.php:1529
+#: ../../mod/photos.php:1538
 msgid "I like this (toggle)"
 msgstr "我喜欢这(交替)"
 
@@ -80,7 +80,7 @@ msgid "like"
 msgstr "喜欢"
 
 #: ../../object/Item.php:214 ../../mod/content.php:684
-#: ../../mod/photos.php:1530
+#: ../../mod/photos.php:1539
 msgid "I don't like this (toggle)"
 msgstr "我不喜欢这(交替)"
 
@@ -96,197 +96,198 @@ msgstr "分享这个"
 msgid "share"
 msgstr "分享"
 
-#: ../../object/Item.php:278 ../../include/conversation.php:663
+#: ../../object/Item.php:298 ../../include/conversation.php:665
 msgid "Categories:"
 msgstr "种类:"
 
-#: ../../object/Item.php:279 ../../include/conversation.php:664
+#: ../../object/Item.php:299 ../../include/conversation.php:666
 msgid "Filed under:"
 msgstr "归档在:"
 
-#: ../../object/Item.php:287 ../../object/Item.php:288
+#: ../../object/Item.php:307 ../../object/Item.php:308
 #: ../../mod/content.php:471 ../../mod/content.php:851
-#: ../../mod/content.php:852 ../../include/conversation.php:651
+#: ../../mod/content.php:852 ../../include/conversation.php:653
 #, php-format
 msgid "View %s's profile @ %s"
 msgstr "看%s的简介@ %s"
 
-#: ../../object/Item.php:289 ../../mod/content.php:853
+#: ../../object/Item.php:309 ../../mod/content.php:853
 msgid "to"
 msgstr "至"
 
-#: ../../object/Item.php:290
+#: ../../object/Item.php:310
 msgid "via"
 msgstr "经过"
 
-#: ../../object/Item.php:291 ../../mod/content.php:854
+#: ../../object/Item.php:311 ../../mod/content.php:854
 msgid "Wall-to-Wall"
 msgstr "从墙到墙"
 
-#: ../../object/Item.php:292 ../../mod/content.php:855
+#: ../../object/Item.php:312 ../../mod/content.php:855
 msgid "via Wall-To-Wall:"
 msgstr "通过从墙到墙"
 
-#: ../../object/Item.php:301 ../../mod/content.php:481
-#: ../../mod/content.php:863 ../../include/conversation.php:671
+#: ../../object/Item.php:321 ../../mod/content.php:481
+#: ../../mod/content.php:863 ../../include/conversation.php:673
 #, php-format
 msgid "%s from %s"
 msgstr "%s从%s"
 
-#: ../../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
+#: ../../object/Item.php:341 ../../object/Item.php:657 ../../boot.php:693
+#: ../../mod/content.php:708 ../../mod/photos.php:1560
+#: ../../mod/photos.php:1604 ../../mod/photos.php:1687
 msgid "Comment"
 msgstr "评论"
 
-#: ../../object/Item.php:322 ../../mod/wallmessage.php:156
+#: ../../object/Item.php:344 ../../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
+#: ../../mod/message.php:565 ../../mod/photos.php:1541
+#: ../../include/conversation.php:690 ../../include/conversation.php:1102
 msgid "Please wait"
 msgstr "请等一下"
 
-#: ../../object/Item.php:345 ../../mod/content.php:602
+#: ../../object/Item.php:367 ../../mod/content.php:602
 #, php-format
 msgid "%d comment"
 msgid_plural "%d comments"
 msgstr[0] "%d评论"
 
-#: ../../object/Item.php:347 ../../object/Item.php:360
-#: ../../mod/content.php:604 ../../include/text.php:1928
+#: ../../object/Item.php:369 ../../object/Item.php:382
+#: ../../mod/content.php:604 ../../include/text.php:1946
 msgid "comment"
 msgid_plural "comments"
 msgstr[0] "评论"
 
-#: ../../object/Item.php:348 ../../boot.php:686 ../../mod/content.php:605
+#: ../../object/Item.php:370 ../../boot.php:694 ../../mod/content.php:605
 #: ../../include/contact_widgets.php:204
 msgid "show more"
 msgstr "看多"
 
-#: ../../object/Item.php:633 ../../mod/content.php:706
-#: ../../mod/photos.php:1549 ../../mod/photos.php:1593
-#: ../../mod/photos.php:1676
+#: ../../object/Item.php:655 ../../mod/content.php:706
+#: ../../mod/photos.php:1558 ../../mod/photos.php:1602
+#: ../../mod/photos.php:1685
 msgid "This is you"
 msgstr "这是你"
 
-#: ../../object/Item.php:636 ../../view/theme/perihel/config.php:95
+#: ../../object/Item.php:658 ../../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
+#: ../../view/theme/cleanzero/config.php:80
+#: ../../view/theme/vier/config.php:47 ../../mod/mood.php:137
 #: ../../mod/install.php:248 ../../mod/install.php:286
 #: ../../mod/crepair.php:171 ../../mod/content.php:709
-#: ../../mod/contacts.php:458 ../../mod/profiles.php:630
+#: ../../mod/contacts.php:464 ../../mod/profiles.php:634
 #: ../../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/localtime.php:45 ../../mod/photos.php:1082
+#: ../../mod/photos.php:1203 ../../mod/photos.php:1510
+#: ../../mod/photos.php:1561 ../../mod/photos.php:1605
+#: ../../mod/photos.php:1688 ../../mod/poke.php:199 ../../mod/events.php:478
 #: ../../mod/fsuggest.php:107 ../../mod/invite.php:140
 #: ../../mod/manage.php:110
 msgid "Submit"
 msgstr "提交"
 
-#: ../../object/Item.php:637 ../../mod/content.php:710
+#: ../../object/Item.php:659 ../../mod/content.php:710
 msgid "Bold"
 msgstr "粗体字 "
 
-#: ../../object/Item.php:638 ../../mod/content.php:711
+#: ../../object/Item.php:660 ../../mod/content.php:711
 msgid "Italic"
 msgstr "斜体 "
 
-#: ../../object/Item.php:639 ../../mod/content.php:712
+#: ../../object/Item.php:661 ../../mod/content.php:712
 msgid "Underline"
 msgstr "下划线"
 
-#: ../../object/Item.php:640 ../../mod/content.php:713
+#: ../../object/Item.php:662 ../../mod/content.php:713
 msgid "Quote"
 msgstr "引语"
 
-#: ../../object/Item.php:641 ../../mod/content.php:714
+#: ../../object/Item.php:663 ../../mod/content.php:714
 msgid "Code"
 msgstr "源代码"
 
-#: ../../object/Item.php:642 ../../mod/content.php:715
+#: ../../object/Item.php:664 ../../mod/content.php:715
 msgid "Image"
 msgstr "图片"
 
-#: ../../object/Item.php:643 ../../mod/content.php:716
+#: ../../object/Item.php:665 ../../mod/content.php:716
 msgid "Link"
 msgstr "环节"
 
-#: ../../object/Item.php:644 ../../mod/content.php:717
+#: ../../object/Item.php:666 ../../mod/content.php:717
 msgid "Video"
 msgstr "录像"
 
-#: ../../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
+#: ../../object/Item.php:667 ../../mod/editpost.php:145
+#: ../../mod/content.php:718 ../../mod/photos.php:1562
+#: ../../mod/photos.php:1606 ../../mod/photos.php:1689
+#: ../../include/conversation.php:1119
 msgid "Preview"
 msgstr "预演"
 
-#: ../../index.php:199 ../../mod/apps.php:7
+#: ../../index.php:203 ../../mod/apps.php:7
 msgid "You must be logged in to use addons. "
 msgstr "您用插件前要登录"
 
-#: ../../index.php:243 ../../mod/help.php:90
+#: ../../index.php:247 ../../mod/help.php:90
 msgid "Not Found"
 msgstr "未发现"
 
-#: ../../index.php:246 ../../mod/help.php:93
+#: ../../index.php:250 ../../mod/help.php:93
 msgid "Page not found."
 msgstr "页发现。"
 
-#: ../../index.php:355 ../../mod/group.php:72 ../../mod/profperm.php:19
+#: ../../index.php:359 ../../mod/group.php:72 ../../mod/profperm.php:19
 msgid "Permission denied"
 msgstr "权限不够"
 
-#: ../../index.php:356 ../../mod/mood.php:114 ../../mod/display.php:242
-#: ../../mod/register.php:40 ../../mod/dfrn_confirm.php:53
+#: ../../index.php:360 ../../mod/mood.php:114 ../../mod/display.php:266
+#: ../../mod/register.php:41 ../../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/network.php:4 ../../mod/install.php:151 ../../mod/editpost.php:10
 #: ../../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/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:246
+#: ../../mod/settings.php:101 ../../mod/settings.php:590
+#: ../../mod/settings.php:595 ../../mod/profiles.php:146
+#: ../../mod/profiles.php:575 ../../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/viewcontacts.php:22 ../../mod/photos.php:134
+#: ../../mod/photos.php:1048 ../../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/fsuggest.php:78 ../../mod/item.php:145 ../../mod/item.php:161
 #: ../../mod/notifications.php:66 ../../mod/invite.php:15
 #: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9
-#: ../../include/items.php:4215
+#: ../../wall_attach.php:55 ../../include/items.php:4373
 msgid "Permission denied."
 msgstr "权限不够。"
 
-#: ../../index.php:415
+#: ../../index.php:419
 msgid "toggle mobile"
 msgstr "交替手机"
 
 #: ../../view/theme/perihel/theme.php:33
 #: ../../view/theme/diabook/theme.php:123 ../../mod/notifications.php:93
-#: ../../include/nav.php:104 ../../include/nav.php:143
+#: ../../include/nav.php:104 ../../include/nav.php:145
 msgid "Home"
 msgstr "主页"
 
 #: ../../view/theme/perihel/theme.php:33
 #: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
-#: ../../include/nav.php:143
+#: ../../include/nav.php:145
 msgid "Your posts and conversations"
 msgstr "你的消息和交谈"
 
 #: ../../view/theme/perihel/theme.php:34
-#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1967
+#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979
 #: ../../mod/newmember.php:32 ../../mod/profperm.php:103
 #: ../../include/nav.php:77 ../../include/profile_advanced.php:7
 #: ../../include/profile_advanced.php:84
@@ -299,7 +300,7 @@ msgid "Your profile page"
 msgstr "你的简介页"
 
 #: ../../view/theme/perihel/theme.php:35
-#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1974
+#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1986
 #: ../../mod/fbrowser.php:25 ../../include/nav.php:78
 msgid "Photos"
 msgstr "照片"
@@ -310,7 +311,7 @@ msgid "Your photos"
 msgstr "你的照片"
 
 #: ../../view/theme/perihel/theme.php:36
-#: ../../view/theme/diabook/theme.php:127 ../../boot.php:1991
+#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2003
 #: ../../mod/events.php:370 ../../include/nav.php:79
 msgid "Events"
 msgstr "事件"
@@ -338,13 +339,13 @@ msgstr "社会"
 
 #: ../../view/theme/perihel/config.php:89
 #: ../../view/theme/diabook/theme.php:621
-#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328
 msgid "don't show"
 msgstr "别著"
 
 #: ../../view/theme/perihel/config.php:89
 #: ../../view/theme/diabook/theme.php:621
-#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:326
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327
 msgid "show"
 msgstr "著"
 
@@ -353,6 +354,7 @@ msgstr "著"
 #: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72
 #: ../../view/theme/clean/config.php:73
 #: ../../view/theme/cleanzero/config.php:82
+#: ../../view/theme/vier/config.php:49
 msgid "Theme settings"
 msgstr "主题设置"
 
@@ -374,8 +376,8 @@ msgstr "决定行高在文章和评论"
 msgid "Set resolution for middle column"
 msgstr "决定中栏的显示分辨率列表"
 
-#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:680
-#: ../../include/nav.php:171
+#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:688
+#: ../../include/nav.php:173
 msgid "Contacts"
 msgstr "熟人"
 
@@ -409,28 +411,28 @@ msgid "Last likes"
 msgstr "上次喜欢"
 
 #: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118
-#: ../../include/conversation.php:246 ../../include/text.php:1922
+#: ../../include/conversation.php:246 ../../include/text.php:1940
 msgid "event"
 msgstr "项目"
 
 #: ../../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
+#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/subthread.php:87
 #: ../../include/conversation.php:121 ../../include/conversation.php:130
 #: ../../include/conversation.php:249 ../../include/conversation.php:258
-#: ../../include/diaspora.php:1878
+#: ../../include/diaspora.php:1908
 msgid "status"
 msgstr "现状"
 
 #: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62
-#: ../../mod/like.php:151 ../../mod/subthread.php:87
+#: ../../mod/like.php:150 ../../mod/subthread.php:87
 #: ../../include/conversation.php:126 ../../include/conversation.php:254
-#: ../../include/text.php:1924 ../../include/diaspora.php:1878
+#: ../../include/text.php:1942 ../../include/diaspora.php:1908
 msgid "photo"
 msgstr "照片"
 
-#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:168
-#: ../../include/conversation.php:137 ../../include/diaspora.php:1894
+#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:167
+#: ../../include/conversation.php:137 ../../include/diaspora.php:1924
 #, php-format
 msgid "%1$s likes %2$s's %3$s"
 msgstr "%1$s喜欢%2$s的%3$s"
@@ -441,16 +443,16 @@ msgstr "%1$s喜欢%2$s的%3$s"
 msgid "Last photos"
 msgstr "上次照片"
 
-#: ../../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
+#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60
+#: ../../mod/photos.php:155 ../../mod/photos.php:1062
+#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
+#: ../../mod/photos.php:1751 ../../mod/photos.php:1763
 msgid "Contact Photos"
 msgstr "熟人照片"
 
-#: ../../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
+#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:155
+#: ../../mod/photos.php:729 ../../mod/photos.php:1187
+#: ../../mod/photos.php:1210 ../../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:334
@@ -487,8 +489,8 @@ msgstr "邀请朋友们"
 
 #: ../../view/theme/diabook/theme.php:544
 #: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22
-#: ../../mod/admin.php:1004 ../../mod/admin.php:1212 ../../mod/settings.php:79
-#: ../../mod/uexport.php:48 ../../include/nav.php:167
+#: ../../mod/admin.php:1005 ../../mod/admin.php:1213 ../../mod/settings.php:84
+#: ../../include/nav.php:169
 msgid "Settings"
 msgstr "配置"
 
@@ -566,7 +568,7 @@ msgid "Set colour scheme"
 msgstr "选择色彩设计"
 
 #: ../../view/theme/clean/config.php:54 ../../include/user.php:246
-#: ../../include/text.php:1658
+#: ../../include/text.php:1676
 msgid "default"
 msgstr "默认"
 
@@ -604,210 +606,214 @@ msgstr "选择图片在文章和评论的重设尺寸(宽和高)"
 msgid "Set theme width"
 msgstr "选择主题宽"
 
-#: ../../boot.php:684
+#: ../../view/theme/vier/config.php:50
+msgid "Set style"
+msgstr "选择款式"
+
+#: ../../boot.php:692
 msgid "Delete this item?"
 msgstr "删除这个项目?"
 
-#: ../../boot.php:687
+#: ../../boot.php:695
 msgid "show fewer"
 msgstr "显示更小"
 
-#: ../../boot.php:1015
+#: ../../boot.php:1023
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "更新%s美通过。看错误记录。"
 
-#: ../../boot.php:1017
+#: ../../boot.php:1025
 #, php-format
 msgid "Update Error at %s"
 msgstr "更新错误在%s"
 
-#: ../../boot.php:1127
+#: ../../boot.php:1135
 msgid "Create a New Account"
 msgstr "创造新的账户"
 
-#: ../../boot.php:1128 ../../mod/register.php:278 ../../include/nav.php:108
+#: ../../boot.php:1136 ../../mod/register.php:279 ../../include/nav.php:108
 msgid "Register"
 msgstr "注册"
 
-#: ../../boot.php:1152 ../../include/nav.php:73
+#: ../../boot.php:1160 ../../include/nav.php:73
 msgid "Logout"
 msgstr "注销"
 
-#: ../../boot.php:1153 ../../include/nav.php:91
+#: ../../boot.php:1161 ../../include/nav.php:91
 msgid "Login"
 msgstr "登录"
 
-#: ../../boot.php:1155
+#: ../../boot.php:1163
 msgid "Nickname or Email address: "
 msgstr "绰号或电子邮件地址: "
 
-#: ../../boot.php:1156
+#: ../../boot.php:1164
 msgid "Password: "
 msgstr "密码: "
 
-#: ../../boot.php:1157
+#: ../../boot.php:1165
 msgid "Remember me"
 msgstr "记住我"
 
-#: ../../boot.php:1160
+#: ../../boot.php:1168
 msgid "Or login using OpenID: "
 msgstr "或者用OpenID登记:"
 
-#: ../../boot.php:1166
+#: ../../boot.php:1174
 msgid "Forgot your password?"
 msgstr "忘记你的密码吗?"
 
-#: ../../boot.php:1167 ../../mod/lostpass.php:84
+#: ../../boot.php:1175 ../../mod/lostpass.php:84
 msgid "Password Reset"
 msgstr "复位密码"
 
-#: ../../boot.php:1169
+#: ../../boot.php:1177
 msgid "Website Terms of Service"
 msgstr "网站的各项规定"
 
-#: ../../boot.php:1170
+#: ../../boot.php:1178
 msgid "terms of service"
 msgstr "各项规定"
 
-#: ../../boot.php:1172
+#: ../../boot.php:1180
 msgid "Website Privacy Policy"
 msgstr "网站隐私政策"
 
-#: ../../boot.php:1173
+#: ../../boot.php:1181
 msgid "privacy policy"
 msgstr "隐私政策"
 
-#: ../../boot.php:1302
+#: ../../boot.php:1314
 msgid "Requested account is not available."
 msgstr "要求的账户不可用。"
 
-#: ../../boot.php:1341 ../../mod/profile.php:21
+#: ../../boot.php:1353 ../../mod/profile.php:21
 msgid "Requested profile is not available."
 msgstr "要求的简介联系不上的。"
 
-#: ../../boot.php:1381 ../../boot.php:1485
+#: ../../boot.php:1393 ../../boot.php:1497
 msgid "Edit profile"
 msgstr "修改简介"
 
-#: ../../boot.php:1433 ../../mod/suggest.php:88 ../../mod/match.php:58
+#: ../../boot.php:1445 ../../mod/suggest.php:88 ../../mod/match.php:58
 #: ../../include/contact_widgets.php:9
 msgid "Connect"
 msgstr "连接"
 
-#: ../../boot.php:1447
+#: ../../boot.php:1459
 msgid "Message"
 msgstr "通知"
 
-#: ../../boot.php:1455 ../../include/nav.php:169
+#: ../../boot.php:1467 ../../include/nav.php:171
 msgid "Profiles"
 msgstr "简介"
 
-#: ../../boot.php:1455
+#: ../../boot.php:1467
 msgid "Manage/edit profiles"
 msgstr "管理/修改简介"
 
-#: ../../boot.php:1461 ../../boot.php:1487 ../../mod/profiles.php:726
+#: ../../boot.php:1473 ../../boot.php:1499 ../../mod/profiles.php:730
 msgid "Change profile photo"
 msgstr "换简介照片"
 
-#: ../../boot.php:1462 ../../mod/profiles.php:727
+#: ../../boot.php:1474 ../../mod/profiles.php:731
 msgid "Create New Profile"
 msgstr "创造新的简介"
 
-#: ../../boot.php:1472 ../../mod/profiles.php:738
+#: ../../boot.php:1484 ../../mod/profiles.php:742
 msgid "Profile Image"
 msgstr "简介图像"
 
-#: ../../boot.php:1475 ../../mod/profiles.php:740
+#: ../../boot.php:1487 ../../mod/profiles.php:744
 msgid "visible to everybody"
 msgstr "给打假可见的"
 
-#: ../../boot.php:1476 ../../mod/profiles.php:741
+#: ../../boot.php:1488 ../../mod/profiles.php:745
 msgid "Edit visibility"
 msgstr "修改能见度"
 
-#: ../../boot.php:1501 ../../mod/directory.php:134 ../../mod/events.php:471
-#: ../../include/event.php:40 ../../include/bb2diaspora.php:415
+#: ../../boot.php:1513 ../../mod/directory.php:134 ../../mod/events.php:471
+#: ../../include/event.php:40 ../../include/bb2diaspora.php:155
 msgid "Location:"
 msgstr "位置:"
 
-#: ../../boot.php:1503 ../../mod/directory.php:136
+#: ../../boot.php:1515 ../../mod/directory.php:136
 #: ../../include/profile_advanced.php:17
 msgid "Gender:"
 msgstr "性别:"
 
-#: ../../boot.php:1506 ../../mod/directory.php:138
+#: ../../boot.php:1518 ../../mod/directory.php:138
 #: ../../include/profile_advanced.php:37
 msgid "Status:"
 msgstr "现状:"
 
-#: ../../boot.php:1508 ../../mod/directory.php:140
+#: ../../boot.php:1520 ../../mod/directory.php:140
 #: ../../include/profile_advanced.php:48
 msgid "Homepage:"
 msgstr "主页:"
 
-#: ../../boot.php:1584 ../../boot.php:1670
+#: ../../boot.php:1596 ../../boot.php:1682
 msgid "g A l F d"
 msgstr "g A l d F"
 
-#: ../../boot.php:1585 ../../boot.php:1671
+#: ../../boot.php:1597 ../../boot.php:1683
 msgid "F d"
 msgstr "F d"
 
-#: ../../boot.php:1630 ../../boot.php:1711
+#: ../../boot.php:1642 ../../boot.php:1723
 msgid "[today]"
 msgstr "[今天]"
 
-#: ../../boot.php:1642
+#: ../../boot.php:1654
 msgid "Birthday Reminders"
 msgstr "提醒生日"
 
-#: ../../boot.php:1643
+#: ../../boot.php:1655
 msgid "Birthdays this week:"
 msgstr "这周的生日:"
 
-#: ../../boot.php:1704
+#: ../../boot.php:1716
 msgid "[No description]"
 msgstr "[无描述]"
 
-#: ../../boot.php:1722
+#: ../../boot.php:1734
 msgid "Event Reminders"
 msgstr "事件提醒"
 
-#: ../../boot.php:1723
+#: ../../boot.php:1735
 msgid "Events this week:"
 msgstr "这周的事件:"
 
-#: ../../boot.php:1960 ../../include/nav.php:76
+#: ../../boot.php:1972 ../../include/nav.php:76
 msgid "Status"
 msgstr "现状"
 
-#: ../../boot.php:1963
+#: ../../boot.php:1975
 msgid "Status Messages and Posts"
 msgstr "现状通知和文章"
 
-#: ../../boot.php:1970
+#: ../../boot.php:1982
 msgid "Profile Details"
 msgstr "简介内容"
 
-#: ../../boot.php:1977 ../../mod/photos.php:51
+#: ../../boot.php:1989 ../../mod/photos.php:52
 msgid "Photo Albums"
 msgstr "相册"
 
-#: ../../boot.php:1981 ../../boot.php:1984
+#: ../../boot.php:1993 ../../boot.php:1996
 msgid "Videos"
 msgstr "视频"
 
-#: ../../boot.php:1994
+#: ../../boot.php:2006
 msgid "Events and Calendar"
 msgstr "项目和日历"
 
-#: ../../boot.php:1998 ../../mod/notes.php:44
+#: ../../boot.php:2010 ../../mod/notes.php:44
 msgid "Personal Notes"
 msgstr "私人便条"
 
-#: ../../boot.php:2001
+#: ../../boot.php:2013
 msgid "Only You Can See This"
 msgstr "只您许看这个"
 
@@ -827,15 +833,15 @@ msgstr "选择现在的心情而告诉朋友们"
 #: ../../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/viewcontacts.php:17 ../../mod/photos.php:918
 #: ../../mod/videos.php:115
 msgid "Public access denied."
 msgstr "公众看拒绝"
 
-#: ../../mod/display.php:51 ../../mod/display.php:246 ../../mod/decrypt.php:15
-#: ../../mod/admin.php:163 ../../mod/admin.php:952 ../../mod/admin.php:1152
+#: ../../mod/display.php:51 ../../mod/display.php:270 ../../mod/decrypt.php:15
+#: ../../mod/admin.php:163 ../../mod/admin.php:953 ../../mod/admin.php:1153
 #: ../../mod/notice.php:15 ../../mod/viewsrc.php:15
-#: ../../include/items.php:4023
+#: ../../include/items.php:4177
 msgid "Item not found."
 msgstr "项目找不到。"
 
@@ -843,7 +849,7 @@ msgstr "项目找不到。"
 msgid "Access to this profile has been restricted."
 msgstr "使用权这个简介被限制了."
 
-#: ../../mod/display.php:239
+#: ../../mod/display.php:263
 msgid "Item has been removed."
 msgstr "项目被删除了。"
 
@@ -888,126 +894,126 @@ msgstr "没有安装的插件/应用"
 msgid "%1$s welcomes %2$s"
 msgstr "%1$s欢迎%2$s"
 
-#: ../../mod/register.php:91 ../../mod/admin.php:734 ../../mod/regmod.php:54
+#: ../../mod/register.php:92 ../../mod/admin.php:735 ../../mod/regmod.php:54
 #, php-format
 msgid "Registration details for %s"
 msgstr "注册信息为%s"
 
-#: ../../mod/register.php:99
+#: ../../mod/register.php:100
 msgid ""
 "Registration successful. Please check your email for further instructions."
 msgstr "注册成功了。请咨询说明再您的收件箱。"
 
-#: ../../mod/register.php:103
+#: ../../mod/register.php:104
 msgid "Failed to send email message. Here is the message that failed."
 msgstr "发邮件失败了。这条试失败的消息。"
 
-#: ../../mod/register.php:108
+#: ../../mod/register.php:109
 msgid "Your registration can not be processed."
 msgstr "处理不了您的注册。"
 
-#: ../../mod/register.php:148
+#: ../../mod/register.php:149
 #, php-format
 msgid "Registration request at %s"
 msgstr "注册要求再%s"
 
-#: ../../mod/register.php:157
+#: ../../mod/register.php:158
 msgid "Your registration is pending approval by the site owner."
 msgstr "您的注册等网页主的批准。"
 
-#: ../../mod/register.php:195 ../../mod/uimport.php:50
+#: ../../mod/register.php:196 ../../mod/uimport.php:50
 msgid ""
 "This site has exceeded the number of allowed daily account registrations. "
 "Please try again tomorrow."
 msgstr "这个网站超过一天最多账户注册。请明天再试。"
 
-#: ../../mod/register.php:223
+#: ../../mod/register.php:224
 msgid ""
 "You may (optionally) fill in this form via OpenID by supplying your OpenID "
 "and clicking 'Register'."
 msgstr "您会(可选的)用OpenID填这个表格通过提供您的OpenID和点击「注册」。"
 
-#: ../../mod/register.php:224
+#: ../../mod/register.php:225
 msgid ""
 "If you are not familiar with OpenID, please leave that field blank and fill "
 "in the rest of the items."
 msgstr "如果您没熟悉OpenID,请留空这个栏和填另些栏。"
 
-#: ../../mod/register.php:225
+#: ../../mod/register.php:226
 msgid "Your OpenID (optional): "
 msgstr "您的OpenID(可选的):"
 
-#: ../../mod/register.php:239
+#: ../../mod/register.php:240
 msgid "Include your profile in member directory?"
 msgstr "放您的简介再员目录?"
 
-#: ../../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
+#: ../../mod/register.php:243 ../../mod/api.php:105 ../../mod/suggest.php:29
+#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:326
+#: ../../mod/settings.php:998 ../../mod/settings.php:1004
+#: ../../mod/settings.php:1012 ../../mod/settings.php:1016
+#: ../../mod/settings.php:1021 ../../mod/settings.php:1027
+#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
+#: ../../mod/settings.php:1069 ../../mod/settings.php:1070
+#: ../../mod/settings.php:1071 ../../mod/settings.php:1072
+#: ../../mod/settings.php:1073 ../../mod/profiles.php:614
+#: ../../mod/message.php:209 ../../include/items.php:4218
 msgid "Yes"
 msgstr "是"
 
-#: ../../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
+#: ../../mod/register.php:244 ../../mod/api.php:106
+#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:998
+#: ../../mod/settings.php:1004 ../../mod/settings.php:1012
+#: ../../mod/settings.php:1016 ../../mod/settings.php:1021
+#: ../../mod/settings.php:1027 ../../mod/settings.php:1033
+#: ../../mod/settings.php:1039 ../../mod/settings.php:1069
+#: ../../mod/settings.php:1070 ../../mod/settings.php:1071
+#: ../../mod/settings.php:1072 ../../mod/settings.php:1073
+#: ../../mod/profiles.php:615
 msgid "No"
 msgstr "否"
 
-#: ../../mod/register.php:260
+#: ../../mod/register.php:261
 msgid "Membership on this site is by invitation only."
 msgstr "会员身份在这个网站是光通过邀请。"
 
-#: ../../mod/register.php:261
+#: ../../mod/register.php:262
 msgid "Your invitation ID: "
 msgstr "您邀请ID:"
 
-#: ../../mod/register.php:264 ../../mod/admin.php:572
+#: ../../mod/register.php:265 ../../mod/admin.php:573
 msgid "Registration"
 msgstr "注册"
 
-#: ../../mod/register.php:272
+#: ../../mod/register.php:273
 msgid "Your Full Name (e.g. Joe Smith): "
 msgstr "您姓名(例如「张三」):"
 
-#: ../../mod/register.php:273
+#: ../../mod/register.php:274
 msgid "Your Email Address: "
 msgstr "你的电子邮件地址:"
 
-#: ../../mod/register.php:274
+#: ../../mod/register.php:275
 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 "选择简介昵称。昵称头一字必须拉丁字。您再这个网站的简介地址将「<strong>example@$sitename</strong>」."
 
-#: ../../mod/register.php:275
+#: ../../mod/register.php:276
 msgid "Choose a nickname: "
 msgstr "选择昵称:"
 
-#: ../../mod/register.php:284 ../../mod/uimport.php:64
+#: ../../mod/register.php:285 ../../mod/uimport.php:64
 msgid "Import"
 msgstr "进口"
 
-#: ../../mod/register.php:285
+#: ../../mod/register.php:286
 msgid "Import your profile to this friendica instance"
 msgstr "进口您的简介到这个friendica服务器"
 
 #: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18
 #: ../../mod/profiles.php:133 ../../mod/profiles.php:160
-#: ../../mod/profiles.php:583
+#: ../../mod/profiles.php:587
 msgid "Profile not found."
 msgstr "找不到简介。"
 
@@ -1052,7 +1058,7 @@ msgid "Unable to set contact photo."
 msgstr "不会指定熟人照片。"
 
 #: ../../mod/dfrn_confirm.php:477 ../../include/conversation.php:172
-#: ../../include/diaspora.php:621
+#: ../../include/diaspora.php:620
 #, php-format
 msgid "%1$s is now friends with %2$s"
 msgstr "%1$s是成为%2$s的朋友"
@@ -1217,7 +1223,7 @@ 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
+#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
 msgid "Please enter a link URL:"
 msgstr "请输入环节URL:"
 
@@ -1249,13 +1255,13 @@ msgstr "你的消息:"
 
 #: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
 #: ../../mod/message.php:332 ../../mod/message.php:562
-#: ../../include/conversation.php:1081
+#: ../../include/conversation.php:1084
 msgid "Upload photo"
 msgstr "上传照片"
 
 #: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114
 #: ../../mod/message.php:333 ../../mod/message.php:563
-#: ../../include/conversation.php:1085
+#: ../../include/conversation.php:1088
 msgid "Insert web link"
 msgstr "插入网页环节"
 
@@ -1454,12 +1460,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:323
-#: ../../mod/settings.php:602 ../../mod/settings.php:628
-#: ../../mod/message.php:212 ../../mod/photos.php:202 ../../mod/photos.php:290
+#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:329
+#: ../../mod/settings.php:609 ../../mod/settings.php:635
+#: ../../mod/message.php:212 ../../mod/photos.php:203 ../../mod/photos.php:292
 #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81
-#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1119
-#: ../../include/items.php:4067
+#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1122
+#: ../../include/items.php:4221
 msgid "Cancel"
 msgstr "退消"
 
@@ -1473,103 +1479,103 @@ msgstr "没有建议。如果这是新网站,请24小时后再试。"
 msgid "Ignore/Hide"
 msgstr "不理/隐藏"
 
-#: ../../mod/network.php:179
+#: ../../mod/network.php:136
 msgid "Search Results For:"
 msgstr "搜索结果为:"
 
-#: ../../mod/network.php:222 ../../mod/_search.php:21 ../../mod/search.php:21
+#: ../../mod/network.php:179 ../../mod/_search.php:21 ../../mod/search.php:21
 msgid "Remove term"
 msgstr "删除关键字"
 
-#: ../../mod/network.php:231 ../../mod/_search.php:30 ../../mod/search.php:30
-#: ../../include/features.php:41
+#: ../../mod/network.php:188 ../../mod/_search.php:30 ../../mod/search.php:30
+#: ../../include/features.php:42
 msgid "Saved Searches"
 msgstr "保存的搜索"
 
-#: ../../mod/network.php:232 ../../include/group.php:275
+#: ../../mod/network.php:189 ../../include/group.php:275
 msgid "add"
 msgstr "添加"
 
-#: ../../mod/network.php:394
+#: ../../mod/network.php:350
 msgid "Commented Order"
 msgstr "评论时间顺序"
 
-#: ../../mod/network.php:397
+#: ../../mod/network.php:353
 msgid "Sort by Comment Date"
 msgstr "按评论日期顺序排列"
 
-#: ../../mod/network.php:400
+#: ../../mod/network.php:356
 msgid "Posted Order"
 msgstr "贴时间顺序"
 
-#: ../../mod/network.php:403
+#: ../../mod/network.php:359
 msgid "Sort by Post Date"
 msgstr "按发布日期顺序排列"
 
-#: ../../mod/network.php:441 ../../mod/notifications.php:88
+#: ../../mod/network.php:365 ../../mod/notifications.php:88
 msgid "Personal"
 msgstr "私人"
 
-#: ../../mod/network.php:444
+#: ../../mod/network.php:368
 msgid "Posts that mention or involve you"
 msgstr "提或关您的文章"
 
-#: ../../mod/network.php:450
+#: ../../mod/network.php:374
 msgid "New"
 msgstr "新"
 
-#: ../../mod/network.php:453
+#: ../../mod/network.php:377
 msgid "Activity Stream - by date"
 msgstr "活动河流-按日期"
 
-#: ../../mod/network.php:459
+#: ../../mod/network.php:383
 msgid "Shared Links"
 msgstr "共同环节"
 
-#: ../../mod/network.php:462
+#: ../../mod/network.php:386
 msgid "Interesting Links"
 msgstr "有意思的超链接"
 
-#: ../../mod/network.php:468
+#: ../../mod/network.php:392
 msgid "Starred"
 msgstr "被星"
 
-#: ../../mod/network.php:471
+#: ../../mod/network.php:395
 msgid "Favourite Posts"
 msgstr "最喜欢的文章"
 
-#: ../../mod/network.php:539
+#: ../../mod/network.php:457
 #, 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] "警告:这个组bao han%s成员从不安全网络。"
 
-#: ../../mod/network.php:542
+#: ../../mod/network.php:460
 msgid "Private messages to this group are at risk of public disclosure."
 msgstr "私人通信给这组回被公开。"
 
-#: ../../mod/network.php:588 ../../mod/content.php:119
+#: ../../mod/network.php:514 ../../mod/content.php:119
 msgid "No such group"
 msgstr "没有这个组"
 
-#: ../../mod/network.php:599 ../../mod/content.php:130
+#: ../../mod/network.php:531 ../../mod/content.php:130
 msgid "Group is empty"
 msgstr "组没有成员"
 
-#: ../../mod/network.php:605 ../../mod/content.php:134
+#: ../../mod/network.php:538 ../../mod/content.php:134
 msgid "Group: "
 msgstr "组:"
 
-#: ../../mod/network.php:617
+#: ../../mod/network.php:548
 msgid "Contact: "
 msgstr "熟人:"
 
-#: ../../mod/network.php:619
+#: ../../mod/network.php:550
 msgid "Private messages to this person are at risk of public disclosure."
 msgstr "私人通信给这个人回被公开。"
 
-#: ../../mod/network.php:624
+#: ../../mod/network.php:555
 msgid "Invalid contact."
 msgstr "无效熟人。"
 
@@ -1876,19 +1882,20 @@ msgstr "重要:您要[手工地]准备安排的任务给喂器。"
 msgid "Theme settings updated."
 msgstr "主题设置更新了。"
 
-#: ../../mod/admin.php:101 ../../mod/admin.php:570
+#: ../../mod/admin.php:101 ../../mod/admin.php:571
 msgid "Site"
 msgstr "网站"
 
-#: ../../mod/admin.php:102 ../../mod/admin.php:898 ../../mod/admin.php:913
+#: ../../mod/admin.php:102 ../../mod/admin.php:899 ../../mod/admin.php:914
 msgid "Users"
 msgstr "用户"
 
-#: ../../mod/admin.php:103 ../../mod/admin.php:1002 ../../mod/admin.php:1044
+#: ../../mod/admin.php:103 ../../mod/admin.php:1003 ../../mod/admin.php:1045
+#: ../../mod/settings.php:56
 msgid "Plugins"
 msgstr "插件"
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:1210 ../../mod/admin.php:1244
+#: ../../mod/admin.php:104 ../../mod/admin.php:1211 ../../mod/admin.php:1245
 msgid "Themes"
 msgstr "主题"
 
@@ -1896,11 +1903,11 @@ msgstr "主题"
 msgid "DB updates"
 msgstr "数据库更新"
 
-#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1331
+#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1332
 msgid "Logs"
 msgstr "记录"
 
-#: ../../mod/admin.php:125 ../../include/nav.php:178
+#: ../../mod/admin.php:125 ../../include/nav.php:180
 msgid "Admin"
 msgstr "管理"
 
@@ -1912,19 +1919,19 @@ msgstr "插件特点"
 msgid "User registrations waiting for confirmation"
 msgstr "用户注册等确认"
 
-#: ../../mod/admin.php:187 ../../mod/admin.php:852
+#: ../../mod/admin.php:187 ../../mod/admin.php:853
 msgid "Normal Account"
 msgstr "正常帐户"
 
-#: ../../mod/admin.php:188 ../../mod/admin.php:853
+#: ../../mod/admin.php:188 ../../mod/admin.php:854
 msgid "Soapbox Account"
 msgstr "演讲台帐户"
 
-#: ../../mod/admin.php:189 ../../mod/admin.php:854
+#: ../../mod/admin.php:189 ../../mod/admin.php:855
 msgid "Community/Celebrity Account"
 msgstr "社会/名人帐户"
 
-#: ../../mod/admin.php:190 ../../mod/admin.php:855
+#: ../../mod/admin.php:190 ../../mod/admin.php:856
 msgid "Automatic Friend Account"
 msgstr "自动朋友帐户"
 
@@ -1940,9 +1947,9 @@ msgstr "私人评坛"
 msgid "Message queues"
 msgstr "通知排队"
 
-#: ../../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
+#: ../../mod/admin.php:216 ../../mod/admin.php:570 ../../mod/admin.php:898
+#: ../../mod/admin.php:1002 ../../mod/admin.php:1044 ../../mod/admin.php:1210
+#: ../../mod/admin.php:1244 ../../mod/admin.php:1331
 msgid "Administration"
 msgstr "管理"
 
@@ -1974,316 +1981,320 @@ msgstr "不能分析基础URL。至少要<scheme>://<domain>"
 msgid "Site settings updated."
 msgstr "网站设置更新了。"
 
-#: ../../mod/admin.php:512 ../../mod/settings.php:810
+#: ../../mod/admin.php:512 ../../mod/settings.php:822
 msgid "No special theme for mobile devices"
 msgstr "没专门适合手机的主题"
 
-#: ../../mod/admin.php:529 ../../mod/contacts.php:402
+#: ../../mod/admin.php:529 ../../mod/contacts.php:408
 msgid "Never"
 msgstr "从未"
 
-#: ../../mod/admin.php:530 ../../include/contact_selectors.php:56
+#: ../../mod/admin.php:530
+msgid "At post arrival"
+msgstr "收件的时候"
+
+#: ../../mod/admin.php:531 ../../include/contact_selectors.php:56
 msgid "Frequently"
 msgstr "时常"
 
-#: ../../mod/admin.php:531 ../../include/contact_selectors.php:57
+#: ../../mod/admin.php:532 ../../include/contact_selectors.php:57
 msgid "Hourly"
 msgstr "每小时"
 
-#: ../../mod/admin.php:532 ../../include/contact_selectors.php:58
+#: ../../mod/admin.php:533 ../../include/contact_selectors.php:58
 msgid "Twice daily"
 msgstr "每日两次"
 
-#: ../../mod/admin.php:533 ../../include/contact_selectors.php:59
+#: ../../mod/admin.php:534 ../../include/contact_selectors.php:59
 msgid "Daily"
 msgstr "每日"
 
-#: ../../mod/admin.php:538
+#: ../../mod/admin.php:539
 msgid "Multi user instance"
 msgstr "多用户网站"
 
-#: ../../mod/admin.php:556
+#: ../../mod/admin.php:557
 msgid "Closed"
 msgstr "关闭"
 
-#: ../../mod/admin.php:557
+#: ../../mod/admin.php:558
 msgid "Requires approval"
 msgstr "要批准"
 
-#: ../../mod/admin.php:558
+#: ../../mod/admin.php:559
 msgid "Open"
 msgstr "打开"
 
-#: ../../mod/admin.php:562
+#: ../../mod/admin.php:563
 msgid "No SSL policy, links will track page SSL state"
 msgstr "没SSL方针,环节将追踪页SSL现状"
 
-#: ../../mod/admin.php:563
+#: ../../mod/admin.php:564
 msgid "Force all links to use SSL"
 msgstr "让所有的环节用SSL"
 
-#: ../../mod/admin.php:564
+#: ../../mod/admin.php:565
 msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr "自签证书,用SSL再光本地环节(劝止的)"
 
-#: ../../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
+#: ../../mod/admin.php:572 ../../mod/admin.php:1046 ../../mod/admin.php:1246
+#: ../../mod/admin.php:1333 ../../mod/settings.php:608
+#: ../../mod/settings.php:718 ../../mod/settings.php:792
+#: ../../mod/settings.php:871 ../../mod/settings.php:1101
 msgid "Save Settings"
 msgstr "保存设置"
 
-#: ../../mod/admin.php:573
+#: ../../mod/admin.php:574
 msgid "File upload"
 msgstr "文件上传"
 
-#: ../../mod/admin.php:574
+#: ../../mod/admin.php:575
 msgid "Policies"
 msgstr "政策"
 
-#: ../../mod/admin.php:575
+#: ../../mod/admin.php:576
 msgid "Advanced"
 msgstr "高等"
 
-#: ../../mod/admin.php:576
+#: ../../mod/admin.php:577
 msgid "Performance"
 msgstr "性能"
 
-#: ../../mod/admin.php:577
+#: ../../mod/admin.php:578
 msgid ""
 "Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr "调动:注意先进的功能。能吧服务器使不能联系。"
 
-#: ../../mod/admin.php:580
+#: ../../mod/admin.php:581
 msgid "Site name"
 msgstr "网页名字"
 
-#: ../../mod/admin.php:581
+#: ../../mod/admin.php:582
 msgid "Banner/Logo"
 msgstr "标题/标志"
 
-#: ../../mod/admin.php:582
+#: ../../mod/admin.php:583
 msgid "Additional Info"
 msgstr "别的消息"
 
-#: ../../mod/admin.php:582
+#: ../../mod/admin.php:583
 msgid ""
 "For public servers: you can add additional information here that will be "
 "listed at dir.friendica.com/siteinfo."
 msgstr "公共服务器:您会这里添加消息要列在dir.friendica.com/siteinfo。"
 
-#: ../../mod/admin.php:583
+#: ../../mod/admin.php:584
 msgid "System language"
 msgstr "系统语言"
 
-#: ../../mod/admin.php:584
+#: ../../mod/admin.php:585
 msgid "System theme"
 msgstr "系统主题"
 
-#: ../../mod/admin.php:584
+#: ../../mod/admin.php:585
 msgid ""
 "Default system theme - may be over-ridden by user profiles - <a href='#' "
 "id='cnftheme'>change theme settings</a>"
 msgstr "默认系统主题-会被用户简介超驰-<a href='#' id='cnftheme'>把主题设置变化</a>"
 
-#: ../../mod/admin.php:585
+#: ../../mod/admin.php:586
 msgid "Mobile system theme"
 msgstr "手机系统主题"
 
-#: ../../mod/admin.php:585
+#: ../../mod/admin.php:586
 msgid "Theme for mobile devices"
 msgstr "主题适合手机"
 
-#: ../../mod/admin.php:586
+#: ../../mod/admin.php:587
 msgid "SSL link policy"
 msgstr "SSL环节方针"
 
-#: ../../mod/admin.php:586
+#: ../../mod/admin.php:587
 msgid "Determines whether generated links should be forced to use SSL"
 msgstr "决定产生的环节否则被强迫用SSL"
 
-#: ../../mod/admin.php:587
+#: ../../mod/admin.php:588
 msgid "Old style 'Share'"
 msgstr "老款式'分享'"
 
-#: ../../mod/admin.php:587
+#: ../../mod/admin.php:588
 msgid "Deactivates the bbcode element 'share' for repeating items."
 msgstr "为重复的项目吧bbcode“share”代码使不活跃"
 
-#: ../../mod/admin.php:588
+#: ../../mod/admin.php:589
 msgid "Hide help entry from navigation menu"
 msgstr "隐藏帮助在航行选单"
 
-#: ../../mod/admin.php:588
+#: ../../mod/admin.php:589
 msgid ""
 "Hides the menu entry for the Help pages from the navigation menu. You can "
 "still access it calling /help directly."
 msgstr "隐藏帮助项目在航行选单。您还能用它经过手动的输入「/help」"
 
-#: ../../mod/admin.php:589
+#: ../../mod/admin.php:590
 msgid "Single user instance"
 msgstr "单用户网站"
 
-#: ../../mod/admin.php:589
+#: ../../mod/admin.php:590
 msgid "Make this instance multi-user or single-user for the named user"
 msgstr "弄这网站多用户或单用户为选择的用户"
 
-#: ../../mod/admin.php:590
+#: ../../mod/admin.php:591
 msgid "Maximum image size"
 msgstr "图片最大尺寸"
 
-#: ../../mod/admin.php:590
+#: ../../mod/admin.php:591
 msgid ""
 "Maximum size in bytes of uploaded images. Default is 0, which means no "
 "limits."
 msgstr "最多上传照相的字节。默认是零,意思是无限。"
 
-#: ../../mod/admin.php:591
+#: ../../mod/admin.php:592
 msgid "Maximum image length"
 msgstr "最大图片大小"
 
-#: ../../mod/admin.php:591
+#: ../../mod/admin.php:592
 msgid ""
 "Maximum length in pixels of the longest side of uploaded images. Default is "
 "-1, which means no limits."
 msgstr "最多像素在上传图片的长度。默认-1,意思是无限。"
 
-#: ../../mod/admin.php:592
+#: ../../mod/admin.php:593
 msgid "JPEG image quality"
 msgstr "JPEG图片质量"
 
-#: ../../mod/admin.php:592
+#: ../../mod/admin.php:593
 msgid ""
 "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
 "100, which is full quality."
 msgstr "上传的JPEG被用这质量[0-100]保存。默认100,最高。"
 
-#: ../../mod/admin.php:594
+#: ../../mod/admin.php:595
 msgid "Register policy"
 msgstr "注册政策"
 
-#: ../../mod/admin.php:595
+#: ../../mod/admin.php:596
 msgid "Maximum Daily Registrations"
 msgstr "一天最多注册"
 
-#: ../../mod/admin.php:595
+#: ../../mod/admin.php:596
 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:596
+#: ../../mod/admin.php:597
 msgid "Register text"
 msgstr "注册正文"
 
-#: ../../mod/admin.php:596
+#: ../../mod/admin.php:597
 msgid "Will be displayed prominently on the registration page."
 msgstr "被显著的在注册页表示。"
 
-#: ../../mod/admin.php:597
+#: ../../mod/admin.php:598
 msgid "Accounts abandoned after x days"
 msgstr "账户丢弃X天后"
 
-#: ../../mod/admin.php:597
+#: ../../mod/admin.php:598
 msgid ""
 "Will not waste system resources polling external sites for abandonded "
 "accounts. Enter 0 for no time limit."
 msgstr "拒绝浪费系统资源看外网站找丢弃的账户。输入0为无时限。"
 
-#: ../../mod/admin.php:598
+#: ../../mod/admin.php:599
 msgid "Allowed friend domains"
 msgstr "允许的朋友域"
 
-#: ../../mod/admin.php:598
+#: ../../mod/admin.php:599
 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:599
+#: ../../mod/admin.php:600
 msgid "Allowed email domains"
 msgstr "允许的电子邮件域"
 
-#: ../../mod/admin.php:599
+#: ../../mod/admin.php:600
 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:600
+#: ../../mod/admin.php:601
 msgid "Block public"
 msgstr "拦公开"
 
-#: ../../mod/admin.php:600
+#: ../../mod/admin.php:601
 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:601
+#: ../../mod/admin.php:602
 msgid "Force publish"
 msgstr "需要出版"
 
-#: ../../mod/admin.php:601
+#: ../../mod/admin.php:602
 msgid ""
 "Check to force all profiles on this site to be listed in the site directory."
 msgstr "让所有这网站的的简介表明在网站目录。"
 
-#: ../../mod/admin.php:602
+#: ../../mod/admin.php:603
 msgid "Global directory update URL"
 msgstr "综合目录更新URL"
 
-#: ../../mod/admin.php:602
+#: ../../mod/admin.php:603
 msgid ""
 "URL to update the global directory. If this is not set, the global directory"
 " is completely unavailable to the application."
 msgstr "URL为更新综合目录。如果没有,这个应用用不了综合目录。"
 
-#: ../../mod/admin.php:603
+#: ../../mod/admin.php:604
 msgid "Allow threaded items"
 msgstr "允许线绳项目"
 
-#: ../../mod/admin.php:603
+#: ../../mod/admin.php:604
 msgid "Allow infinite level threading for items on this site."
 msgstr "允许无限水平线绳为这网站的项目。"
 
-#: ../../mod/admin.php:604
+#: ../../mod/admin.php:605
 msgid "Private posts by default for new users"
 msgstr "新用户默认写私人文章"
 
-#: ../../mod/admin.php:604
+#: ../../mod/admin.php:605
 msgid ""
 "Set default post permissions for all new members to the default privacy "
 "group rather than public."
 msgstr "默认新用户文章批准使默认隐私组,没有公开。"
 
-#: ../../mod/admin.php:605
+#: ../../mod/admin.php:606
 msgid "Don't include post content in email notifications"
 msgstr "别包含文章内容在邮件消息"
 
-#: ../../mod/admin.php:605
+#: ../../mod/admin.php:606
 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:606
+#: ../../mod/admin.php:607
 msgid "Disallow public access to addons listed in the apps menu."
 msgstr "不允许插件的公众使用权在应用选单。"
 
-#: ../../mod/admin.php:606
+#: ../../mod/admin.php:607
 msgid ""
 "Checking this box will restrict addons listed in the apps menu to members "
 "only."
 msgstr "复选这个框为把应用选内插件限制仅成员"
 
-#: ../../mod/admin.php:607
+#: ../../mod/admin.php:608
 msgid "Don't embed private images in posts"
 msgstr "别嵌入私人图案在文章里"
 
-#: ../../mod/admin.php:607
+#: ../../mod/admin.php:608
 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,499 +2302,499 @@ msgid ""
 "while."
 msgstr "别把复制嵌入的照相代替本网站的私人照相在文章里。结果是收包括私人照相的熟人要认证才卸载个张照片,会花许久。"
 
-#: ../../mod/admin.php:608
+#: ../../mod/admin.php:609
 msgid "Allow Users to set remote_self"
 msgstr "允许用户用遥远的自身"
 
-#: ../../mod/admin.php:608
+#: ../../mod/admin.php:609
 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
+#: ../../mod/admin.php:610
 msgid "Block multiple registrations"
 msgstr "拦一人多注册"
 
-#: ../../mod/admin.php:609
+#: ../../mod/admin.php:610
 msgid "Disallow users to register additional accounts for use as pages."
 msgstr "不允许用户注册别的账户为当页。"
 
-#: ../../mod/admin.php:610
+#: ../../mod/admin.php:611
 msgid "OpenID support"
 msgstr "OpenID支持"
 
-#: ../../mod/admin.php:610
+#: ../../mod/admin.php:611
 msgid "OpenID support for registration and logins."
 msgstr "OpenID支持注册和登录。"
 
-#: ../../mod/admin.php:611
+#: ../../mod/admin.php:612
 msgid "Fullname check"
 msgstr "全名核实"
 
-#: ../../mod/admin.php:611
+#: ../../mod/admin.php:612
 msgid ""
 "Force users to register with a space between firstname and lastname in Full "
 "name, as an antispam measure"
 msgstr "让用户注册的时候放空格姓名中间,省得垃圾注册。"
 
-#: ../../mod/admin.php:612
+#: ../../mod/admin.php:613
 msgid "UTF-8 Regular expressions"
 msgstr "UTF-8正则表达式"
 
-#: ../../mod/admin.php:612
+#: ../../mod/admin.php:613
 msgid "Use PHP UTF8 regular expressions"
 msgstr "用PHP UTF8正则表达式"
 
-#: ../../mod/admin.php:613
+#: ../../mod/admin.php:614
 msgid "Show Community Page"
 msgstr "表示社会页"
 
-#: ../../mod/admin.php:613
+#: ../../mod/admin.php:614
 msgid ""
 "Display a Community page showing all recent public postings on this site."
 msgstr "表示社会页表明这网站所有最近公开的文章"
 
-#: ../../mod/admin.php:614
+#: ../../mod/admin.php:615
 msgid "Enable OStatus support"
 msgstr "使OStatus支持可用"
 
-#: ../../mod/admin.php:614
+#: ../../mod/admin.php:615
 msgid ""
-"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
 "communications in OStatus are public, so privacy warnings will be "
 "occasionally displayed."
-msgstr "提供内装的OStatus(identi.ca, status.net, 等)兼容。OStatus内,什么通知是公开的,所以偶尔隐私警告被表示。"
+msgstr "提供OStatus(StatusNet,GNU Social,等)兼容性。所有OStatus的交通是公开的,所以私事警告偶尔来表示。"
 
-#: ../../mod/admin.php:615
+#: ../../mod/admin.php:616
 msgid "OStatus conversation completion interval"
 msgstr "OStatus对话完成间隔"
 
-#: ../../mod/admin.php:615
+#: ../../mod/admin.php:616
 msgid ""
 "How often shall the poller check for new entries in OStatus conversations? "
 "This can be a very ressource task."
 msgstr "喂器要多久查一次新文章在OStatus交流?这会花许多系统资源。"
 
-#: ../../mod/admin.php:616
+#: ../../mod/admin.php:617
 msgid "Enable Diaspora support"
 msgstr "使Diaspora支持能够"
 
-#: ../../mod/admin.php:616
+#: ../../mod/admin.php:617
 msgid "Provide built-in Diaspora network compatibility."
 msgstr "提供内装Diaspora网络兼容。"
 
-#: ../../mod/admin.php:617
+#: ../../mod/admin.php:618
 msgid "Only allow Friendica contacts"
 msgstr "只许Friendica熟人"
 
-#: ../../mod/admin.php:617
+#: ../../mod/admin.php:618
 msgid ""
 "All contacts must use Friendica protocols. All other built-in communication "
 "protocols disabled."
 msgstr "所有的熟人要用Friendica协议 。别的内装的沟通协议都不能用。"
 
-#: ../../mod/admin.php:618
+#: ../../mod/admin.php:619
 msgid "Verify SSL"
 msgstr "证实"
 
-#: ../../mod/admin.php:618
+#: ../../mod/admin.php:619
 msgid ""
 "If you wish, you can turn on strict certificate checking. This will mean you"
 " cannot connect (at all) to self-signed SSL sites."
 msgstr "你想的话,您会使严格证书核实可用。意思是您不能根自签的SSL网站交流。"
 
-#: ../../mod/admin.php:619
+#: ../../mod/admin.php:620
 msgid "Proxy user"
 msgstr "代理用户"
 
-#: ../../mod/admin.php:620
+#: ../../mod/admin.php:621
 msgid "Proxy URL"
 msgstr "代理URL"
 
-#: ../../mod/admin.php:621
+#: ../../mod/admin.php:622
 msgid "Network timeout"
 msgstr "网络超时"
 
-#: ../../mod/admin.php:621
+#: ../../mod/admin.php:622
 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr "输入秒数。输入零为无限(不推荐的)。"
 
-#: ../../mod/admin.php:622
+#: ../../mod/admin.php:623
 msgid "Delivery interval"
 msgstr "传送间隔"
 
-#: ../../mod/admin.php:622
+#: ../../mod/admin.php:623
 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 "把背景传送过程耽误这多秒为减少系统工作量。推荐:4-5在共用服务器,2-3在私人服务器。0-1在大专门服务器。"
 
-#: ../../mod/admin.php:623
+#: ../../mod/admin.php:624
 msgid "Poll interval"
 msgstr "检查时间"
 
-#: ../../mod/admin.php:623
+#: ../../mod/admin.php:624
 msgid ""
 "Delay background polling processes by this many seconds to reduce system "
 "load. If 0, use delivery interval."
 msgstr "把背景检查行程耽误这数秒为减少系统负荷。如果是0,用发布时间。"
 
-#: ../../mod/admin.php:624
+#: ../../mod/admin.php:625
 msgid "Maximum Load Average"
 msgstr "最大负荷平均"
 
-#: ../../mod/admin.php:624
+#: ../../mod/admin.php:625
 msgid ""
 "Maximum system load before delivery and poll processes are deferred - "
 "default 50."
 msgstr "系统负荷平均以上转播和检查行程会被耽误-默认50。"
 
-#: ../../mod/admin.php:626
+#: ../../mod/admin.php:627
 msgid "Use MySQL full text engine"
 msgstr "用MySQL全正文机车"
 
-#: ../../mod/admin.php:626
+#: ../../mod/admin.php:627
 msgid ""
 "Activates the full text engine. Speeds up search - but can only search for "
 "four and more characters."
 msgstr "使全正文机车可用。把搜索催-可是只能搜索4字以上"
 
-#: ../../mod/admin.php:627
+#: ../../mod/admin.php:628
 msgid "Suppress Language"
 msgstr "封锁语言"
 
-#: ../../mod/admin.php:627
+#: ../../mod/admin.php:628
 msgid "Suppress language information in meta information about a posting."
 msgstr "遗漏语言消息从文章的描述"
 
-#: ../../mod/admin.php:628
+#: ../../mod/admin.php:629
 msgid "Path to item cache"
 msgstr "路线到项目缓存"
 
-#: ../../mod/admin.php:629
+#: ../../mod/admin.php:630
 msgid "Cache duration in seconds"
 msgstr "缓存时间秒"
 
-#: ../../mod/admin.php:629
+#: ../../mod/admin.php:630
 msgid ""
 "How long should the cache files be hold? Default value is 86400 seconds (One"
 " day)."
 msgstr "缓存文件应该保存多久?默认是86400秒(一天)。"
 
-#: ../../mod/admin.php:630
+#: ../../mod/admin.php:631
 msgid "Path for lock file"
 msgstr "路线到锁文件"
 
-#: ../../mod/admin.php:631
+#: ../../mod/admin.php:632
 msgid "Temp path"
 msgstr "临时文件路线"
 
-#: ../../mod/admin.php:632
+#: ../../mod/admin.php:633
 msgid "Base path to installation"
 msgstr "基础安装路线"
 
-#: ../../mod/admin.php:634
+#: ../../mod/admin.php:635
 msgid "New base url"
 msgstr "新基础URL"
 
-#: ../../mod/admin.php:652
+#: ../../mod/admin.php:653
 msgid "Update has been marked successful"
 msgstr "更新当成功标签了"
 
-#: ../../mod/admin.php:662
+#: ../../mod/admin.php:663
 #, php-format
 msgid "Executing %s failed. Check system logs."
 msgstr "把%s实行没通过了。看系统记录。"
 
-#: ../../mod/admin.php:665
+#: ../../mod/admin.php:666
 #, php-format
 msgid "Update %s was successfully applied."
 msgstr "把%s更新成功地实行。"
 
-#: ../../mod/admin.php:669
+#: ../../mod/admin.php:670
 #, php-format
 msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr "%s更新没回答现状。不知道是否成功。"
 
-#: ../../mod/admin.php:672
+#: ../../mod/admin.php:673
 #, php-format
 msgid "Update function %s could not be found."
 msgstr "找不到更新功能%s。"
 
-#: ../../mod/admin.php:687
+#: ../../mod/admin.php:688
 msgid "No failed updates."
 msgstr "没有不通过地更新。"
 
-#: ../../mod/admin.php:691
+#: ../../mod/admin.php:692
 msgid "Failed Updates"
 msgstr "没通过的更新"
 
-#: ../../mod/admin.php:692
+#: ../../mod/admin.php:693
 msgid ""
 "This does not include updates prior to 1139, which did not return a status."
 msgstr "这个不包括1139号更新之前,它们没回答装线。"
 
-#: ../../mod/admin.php:693
+#: ../../mod/admin.php:694
 msgid "Mark success (if update was manually applied)"
 msgstr "标注成功(如果手动地把更新实行了)"
 
-#: ../../mod/admin.php:694
+#: ../../mod/admin.php:695
 msgid "Attempt to execute this update step automatically"
 msgstr "试图自动地把这步更新实行"
 
-#: ../../mod/admin.php:740
+#: ../../mod/admin.php:741
 msgid "Registration successful. Email send to user"
 msgstr "注册成功。邮件寄给用户。"
 
-#: ../../mod/admin.php:750
+#: ../../mod/admin.php:751
 #, php-format
 msgid "%s user blocked/unblocked"
 msgid_plural "%s users blocked/unblocked"
 msgstr[0] "%s用户拦/不拦了"
 
-#: ../../mod/admin.php:757
+#: ../../mod/admin.php:758
 #, php-format
 msgid "%s user deleted"
 msgid_plural "%s users deleted"
 msgstr[0] "%s用户删除了"
 
-#: ../../mod/admin.php:796
+#: ../../mod/admin.php:797
 #, php-format
 msgid "User '%s' deleted"
 msgstr "用户「%s」删除了"
 
-#: ../../mod/admin.php:804
+#: ../../mod/admin.php:805
 #, php-format
 msgid "User '%s' unblocked"
 msgstr "用户「%s」无拦了"
 
-#: ../../mod/admin.php:804
+#: ../../mod/admin.php:805
 #, php-format
 msgid "User '%s' blocked"
 msgstr "用户「%s」拦了"
 
-#: ../../mod/admin.php:899
+#: ../../mod/admin.php:900
 msgid "Add User"
 msgstr "添加用户"
 
-#: ../../mod/admin.php:900
+#: ../../mod/admin.php:901
 msgid "select all"
 msgstr "都选"
 
-#: ../../mod/admin.php:901
+#: ../../mod/admin.php:902
 msgid "User registrations waiting for confirm"
 msgstr "用户注册等待确认"
 
-#: ../../mod/admin.php:902
+#: ../../mod/admin.php:903
 msgid "User waiting for permanent deletion"
 msgstr "用户等待长久删除"
 
-#: ../../mod/admin.php:903
+#: ../../mod/admin.php:904
 msgid "Request date"
 msgstr "要求日期"
 
-#: ../../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
+#: ../../mod/admin.php:904 ../../mod/admin.php:916 ../../mod/admin.php:917
+#: ../../mod/admin.php:930 ../../mod/crepair.php:150
+#: ../../mod/settings.php:610 ../../mod/settings.php:636
 msgid "Name"
 msgstr "名字"
 
-#: ../../mod/admin.php:903 ../../mod/admin.php:915 ../../mod/admin.php:916
-#: ../../mod/admin.php:931 ../../include/contact_selectors.php:79
+#: ../../mod/admin.php:904 ../../mod/admin.php:916 ../../mod/admin.php:917
+#: ../../mod/admin.php:932 ../../include/contact_selectors.php:79
 #: ../../include/contact_selectors.php:86
 msgid "Email"
 msgstr "电子邮件"
 
-#: ../../mod/admin.php:904
+#: ../../mod/admin.php:905
 msgid "No registrations."
 msgstr "没有注册。"
 
-#: ../../mod/admin.php:905 ../../mod/notifications.php:161
+#: ../../mod/admin.php:906 ../../mod/notifications.php:161
 #: ../../mod/notifications.php:208
 msgid "Approve"
 msgstr "批准"
 
-#: ../../mod/admin.php:906
+#: ../../mod/admin.php:907
 msgid "Deny"
 msgstr "否定"
 
-#: ../../mod/admin.php:908 ../../mod/contacts.php:425
-#: ../../mod/contacts.php:484 ../../mod/contacts.php:692
+#: ../../mod/admin.php:909 ../../mod/contacts.php:431
+#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
 msgid "Block"
 msgstr "拦"
 
-#: ../../mod/admin.php:909 ../../mod/contacts.php:425
-#: ../../mod/contacts.php:484 ../../mod/contacts.php:692
+#: ../../mod/admin.php:910 ../../mod/contacts.php:431
+#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
 msgid "Unblock"
 msgstr "不拦"
 
-#: ../../mod/admin.php:910
+#: ../../mod/admin.php:911
 msgid "Site admin"
 msgstr "网站管理员"
 
-#: ../../mod/admin.php:911
+#: ../../mod/admin.php:912
 msgid "Account expired"
 msgstr "帐户过期了"
 
-#: ../../mod/admin.php:914
+#: ../../mod/admin.php:915
 msgid "New User"
 msgstr "新用户"
 
-#: ../../mod/admin.php:915 ../../mod/admin.php:916
+#: ../../mod/admin.php:916 ../../mod/admin.php:917
 msgid "Register date"
 msgstr "注册日期"
 
-#: ../../mod/admin.php:915 ../../mod/admin.php:916
+#: ../../mod/admin.php:916 ../../mod/admin.php:917
 msgid "Last login"
 msgstr "上次登录"
 
-#: ../../mod/admin.php:915 ../../mod/admin.php:916
+#: ../../mod/admin.php:916 ../../mod/admin.php:917
 msgid "Last item"
 msgstr "上项目"
 
-#: ../../mod/admin.php:915
+#: ../../mod/admin.php:916
 msgid "Deleted since"
 msgstr "删除从"
 
-#: ../../mod/admin.php:916
+#: ../../mod/admin.php:917 ../../mod/settings.php:35
 msgid "Account"
 msgstr "帐户"
 
-#: ../../mod/admin.php:918
+#: ../../mod/admin.php:919
 msgid ""
 "Selected users will be deleted!\\n\\nEverything these users had posted on "
 "this site will be permanently deleted!\\n\\nAre you sure?"
 msgstr "特定的用户被删除!\\n\\n什么这些用户放在这个网站被永远删除!\\n\\n您肯定吗?"
 
-#: ../../mod/admin.php:919
+#: ../../mod/admin.php:920
 msgid ""
 "The user {0} will be deleted!\\n\\nEverything this user has posted on this "
 "site will be permanently deleted!\\n\\nAre you sure?"
 msgstr "用户{0}将被删除!\\n\\n什么这个用户放在这个网站被永远删除!\\n\\n您肯定吗?"
 
-#: ../../mod/admin.php:929
+#: ../../mod/admin.php:930
 msgid "Name of the new user."
 msgstr "新用户的名"
 
-#: ../../mod/admin.php:930
+#: ../../mod/admin.php:931
 msgid "Nickname"
 msgstr "昵称"
 
-#: ../../mod/admin.php:930
+#: ../../mod/admin.php:931
 msgid "Nickname of the new user."
 msgstr "新用户的昵称"
 
-#: ../../mod/admin.php:931
+#: ../../mod/admin.php:932
 msgid "Email address of the new user."
 msgstr "新用户的邮件地址"
 
-#: ../../mod/admin.php:964
+#: ../../mod/admin.php:965
 #, php-format
 msgid "Plugin %s disabled."
 msgstr "使插件%s不能用。"
 
-#: ../../mod/admin.php:968
+#: ../../mod/admin.php:969
 #, php-format
 msgid "Plugin %s enabled."
 msgstr "使插件%s能用。"
 
-#: ../../mod/admin.php:978 ../../mod/admin.php:1181
+#: ../../mod/admin.php:979 ../../mod/admin.php:1182
 msgid "Disable"
 msgstr "使不能用"
 
-#: ../../mod/admin.php:980 ../../mod/admin.php:1183
+#: ../../mod/admin.php:981 ../../mod/admin.php:1184
 msgid "Enable"
 msgstr "使能用"
 
-#: ../../mod/admin.php:1003 ../../mod/admin.php:1211
+#: ../../mod/admin.php:1004 ../../mod/admin.php:1212
 msgid "Toggle"
 msgstr "肘节"
 
-#: ../../mod/admin.php:1011 ../../mod/admin.php:1221
+#: ../../mod/admin.php:1012 ../../mod/admin.php:1222
 msgid "Author: "
 msgstr "作家:"
 
-#: ../../mod/admin.php:1012 ../../mod/admin.php:1222
+#: ../../mod/admin.php:1013 ../../mod/admin.php:1223
 msgid "Maintainer: "
 msgstr "保持员:"
 
-#: ../../mod/admin.php:1141
+#: ../../mod/admin.php:1142
 msgid "No themes found."
 msgstr "找不到主题。"
 
-#: ../../mod/admin.php:1203
+#: ../../mod/admin.php:1204
 msgid "Screenshot"
 msgstr "截图"
 
-#: ../../mod/admin.php:1249
+#: ../../mod/admin.php:1250
 msgid "[Experimental]"
 msgstr "[试验]"
 
-#: ../../mod/admin.php:1250
+#: ../../mod/admin.php:1251
 msgid "[Unsupported]"
 msgstr "[没支持]"
 
-#: ../../mod/admin.php:1277
+#: ../../mod/admin.php:1278
 msgid "Log settings updated."
 msgstr "日志设置更新了。"
 
-#: ../../mod/admin.php:1333
+#: ../../mod/admin.php:1334
 msgid "Clear"
 msgstr "清理出"
 
-#: ../../mod/admin.php:1339
+#: ../../mod/admin.php:1340
 msgid "Enable Debugging"
 msgstr "把调试使可用的"
 
-#: ../../mod/admin.php:1340
+#: ../../mod/admin.php:1341
 msgid "Log file"
 msgstr "记录文件"
 
-#: ../../mod/admin.php:1340
+#: ../../mod/admin.php:1341
 msgid ""
 "Must be writable by web server. Relative to your Friendica top-level "
 "directory."
 msgstr "必要被网页服务器可写的。相对Friendica主文件夹。"
 
-#: ../../mod/admin.php:1341
+#: ../../mod/admin.php:1342
 msgid "Log level"
 msgstr "记录水平"
 
-#: ../../mod/admin.php:1390 ../../mod/contacts.php:481
+#: ../../mod/admin.php:1391 ../../mod/contacts.php:487
 msgid "Update now"
 msgstr "现在更新"
 
-#: ../../mod/admin.php:1391
+#: ../../mod/admin.php:1392
 msgid "Close"
 msgstr "关闭"
 
-#: ../../mod/admin.php:1397
+#: ../../mod/admin.php:1398
 msgid "FTP Host"
 msgstr "FTP主机"
 
-#: ../../mod/admin.php:1398
+#: ../../mod/admin.php:1399
 msgid "FTP Path"
 msgstr "FTP目录"
 
-#: ../../mod/admin.php:1399
+#: ../../mod/admin.php:1400
 msgid "FTP User"
 msgstr "FTP用户"
 
-#: ../../mod/admin.php:1400
+#: ../../mod/admin.php:1401
 msgid "FTP Password"
 msgstr "FTP密码"
 
-#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:934
-#: ../../include/text.php:935 ../../include/nav.php:118
+#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:938
+#: ../../include/text.php:939 ../../include/nav.php:118
 msgid "Search"
 msgstr "搜索"
 
 #: ../../mod/_search.php:180 ../../mod/_search.php:206
-#: ../../mod/search.php:179 ../../mod/search.php:205
-#: ../../mod/community.php:61 ../../mod/community.php:91
+#: ../../mod/search.php:170 ../../mod/search.php:196
+#: ../../mod/community.php:62 ../../mod/community.php:89
 msgid "No results."
 msgstr "没有结果"
 
@@ -2808,75 +2819,75 @@ msgstr "项目没找到"
 msgid "Edit post"
 msgstr "编辑文章"
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1082
+#: ../../mod/editpost.php:111 ../../include/conversation.php:1085
 msgid "upload photo"
 msgstr "上传照片"
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1083
+#: ../../mod/editpost.php:112 ../../include/conversation.php:1086
 msgid "Attach file"
 msgstr "附上文件"
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1084
+#: ../../mod/editpost.php:113 ../../include/conversation.php:1087
 msgid "attach file"
 msgstr "附上文件"
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1086
+#: ../../mod/editpost.php:115 ../../include/conversation.php:1089
 msgid "web link"
 msgstr "网页环节"
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:1087
+#: ../../mod/editpost.php:116 ../../include/conversation.php:1090
 msgid "Insert video link"
 msgstr "插入视频环节"
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:1088
+#: ../../mod/editpost.php:117 ../../include/conversation.php:1091
 msgid "video link"
 msgstr "视频环节"
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1089
+#: ../../mod/editpost.php:118 ../../include/conversation.php:1092
 msgid "Insert audio link"
 msgstr "插入录音环节"
 
-#: ../../mod/editpost.php:119 ../../include/conversation.php:1090
+#: ../../mod/editpost.php:119 ../../include/conversation.php:1093
 msgid "audio link"
 msgstr "录音环节"
 
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1091
+#: ../../mod/editpost.php:120 ../../include/conversation.php:1094
 msgid "Set your location"
 msgstr "设定您的位置"
 
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1092
+#: ../../mod/editpost.php:121 ../../include/conversation.php:1095
 msgid "set location"
 msgstr "指定位置"
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1093
+#: ../../mod/editpost.php:122 ../../include/conversation.php:1096
 msgid "Clear browser location"
 msgstr "清空浏览器位置"
 
-#: ../../mod/editpost.php:123 ../../include/conversation.php:1094
+#: ../../mod/editpost.php:123 ../../include/conversation.php:1097
 msgid "clear location"
 msgstr "清理出位置"
 
-#: ../../mod/editpost.php:125 ../../include/conversation.php:1100
+#: ../../mod/editpost.php:125 ../../include/conversation.php:1103
 msgid "Permission settings"
 msgstr "权设置"
 
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1109
+#: ../../mod/editpost.php:133 ../../include/conversation.php:1112
 msgid "CC: email addresses"
 msgstr "抄送: 电子邮件地址"
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1110
+#: ../../mod/editpost.php:134 ../../include/conversation.php:1113
 msgid "Public post"
 msgstr "公开的消息"
 
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1096
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1099
 msgid "Set title"
 msgstr "指定标题"
 
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1098
+#: ../../mod/editpost.php:139 ../../include/conversation.php:1101
 msgid "Categories (comma-separated list)"
 msgstr "种类(逗号分隔单)"
 
-#: ../../mod/editpost.php:140 ../../include/conversation.php:1112
+#: ../../mod/editpost.php:140 ../../include/conversation.php:1115
 msgid "Example: bob@example.com, mary@example.com"
 msgstr "比如: li@example.com, wang@example.com"
 
@@ -2905,7 +2916,7 @@ msgstr "清登录。"
 msgid "Find on this site"
 msgstr "找在这网站"
 
-#: ../../mod/directory.php:59 ../../mod/contacts.php:685
+#: ../../mod/directory.php:59 ../../mod/contacts.php:693
 msgid "Finding: "
 msgstr "找着:"
 
@@ -2913,12 +2924,12 @@ msgstr "找着:"
 msgid "Site Directory"
 msgstr "网站目录"
 
-#: ../../mod/directory.php:61 ../../mod/contacts.php:686
+#: ../../mod/directory.php:61 ../../mod/contacts.php:694
 #: ../../include/contact_widgets.php:33
 msgid "Find"
 msgstr "搜索"
 
-#: ../../mod/directory.php:111 ../../mod/profiles.php:686
+#: ../../mod/directory.php:111 ../../mod/profiles.php:690
 msgid "Age: "
 msgstr "年纪:"
 
@@ -3047,7 +3058,7 @@ msgstr "摇隐私信息无效"
 msgid "Visible to:"
 msgstr "可见给:"
 
-#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:937
+#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:941
 msgid "Save"
 msgstr "保存"
 
@@ -3143,7 +3154,7 @@ msgstr "无效的简介URL。"
 msgid "Disallowed profile URL."
 msgstr "不允许的简介地址."
 
-#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:174
+#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180
 msgid "Failed to update contact record."
 msgstr "更新熟人记录失败了。"
 
@@ -3179,7 +3190,7 @@ msgstr "请确认您的介绍/联络要求给%s。"
 msgid "Confirm"
 msgstr "确认"
 
-#: ../../mod/dfrn_request.php:716 ../../include/items.php:3532
+#: ../../mod/dfrn_request.php:716 ../../include/items.php:3686
 msgid "[Name Withheld]"
 msgstr "[名字拒给]"
 
@@ -3231,7 +3242,7 @@ msgstr "Friendica"
 msgid "StatusNet/Federated Social Web"
 msgstr "StatusNet/联合社会化网"
 
-#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:722
+#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:730
 #: ../../include/contact_selectors.php:80
 msgid "Diaspora"
 msgstr "Diaspora"
@@ -3257,7 +3268,7 @@ msgstr "提交要求"
 msgid "[Embedded content - reload page to view]"
 msgstr "[嵌入内容-重新加载页为看]"
 
-#: ../../mod/content.php:496 ../../include/conversation.php:686
+#: ../../mod/content.php:496 ../../include/conversation.php:688
 msgid "View in context"
 msgstr "看在上下文"
 
@@ -3267,7 +3278,7 @@ msgid "%d contact edited."
 msgid_plural "%d contacts edited"
 msgstr[0] "%d熟人编辑了"
 
-#: ../../mod/contacts.php:135 ../../mod/contacts.php:258
+#: ../../mod/contacts.php:135 ../../mod/contacts.php:264
 msgid "Could not access contact record."
 msgstr "用不了熟人记录。"
 
@@ -3275,893 +3286,901 @@ msgstr "用不了熟人记录。"
 msgid "Could not locate selected profile."
 msgstr "找不到选择的简介。"
 
-#: ../../mod/contacts.php:172
+#: ../../mod/contacts.php:178
 msgid "Contact updated."
 msgstr "熟人更新了。"
 
-#: ../../mod/contacts.php:272
+#: ../../mod/contacts.php:278
 msgid "Contact has been blocked"
 msgstr "熟人拦了"
 
-#: ../../mod/contacts.php:272
+#: ../../mod/contacts.php:278
 msgid "Contact has been unblocked"
 msgstr "熟人否拦了"
 
-#: ../../mod/contacts.php:282
+#: ../../mod/contacts.php:288
 msgid "Contact has been ignored"
 msgstr "熟人不理了"
 
-#: ../../mod/contacts.php:282
+#: ../../mod/contacts.php:288
 msgid "Contact has been unignored"
 msgstr "熟人否不理了"
 
-#: ../../mod/contacts.php:293
+#: ../../mod/contacts.php:299
 msgid "Contact has been archived"
 msgstr "把联系存档了"
 
-#: ../../mod/contacts.php:293
+#: ../../mod/contacts.php:299
 msgid "Contact has been unarchived"
 msgstr "把联系从存档拿来了"
 
-#: ../../mod/contacts.php:318 ../../mod/contacts.php:689
+#: ../../mod/contacts.php:324 ../../mod/contacts.php:697
 msgid "Do you really want to delete this contact?"
 msgstr "您真的想删除这个熟人吗?"
 
-#: ../../mod/contacts.php:335
+#: ../../mod/contacts.php:341
 msgid "Contact has been removed."
 msgstr "熟人删除了。"
 
-#: ../../mod/contacts.php:373
+#: ../../mod/contacts.php:379
 #, php-format
 msgid "You are mutual friends with %s"
 msgstr "您和%s是共同朋友们"
 
-#: ../../mod/contacts.php:377
+#: ../../mod/contacts.php:383
 #, php-format
 msgid "You are sharing with %s"
 msgstr "您分享给%s"
 
-#: ../../mod/contacts.php:382
+#: ../../mod/contacts.php:388
 #, php-format
 msgid "%s is sharing with you"
 msgstr "%s给您分享"
 
-#: ../../mod/contacts.php:399
+#: ../../mod/contacts.php:405
 msgid "Private communications are not available for this contact."
 msgstr "没有私人的沟通跟这个熟人"
 
-#: ../../mod/contacts.php:406
+#: ../../mod/contacts.php:412
 msgid "(Update was successful)"
 msgstr "(更新成功)"
 
-#: ../../mod/contacts.php:406
+#: ../../mod/contacts.php:412
 msgid "(Update was not successful)"
 msgstr "(更新不成功)"
 
-#: ../../mod/contacts.php:408
+#: ../../mod/contacts.php:414
 msgid "Suggest friends"
 msgstr "建议朋友们"
 
-#: ../../mod/contacts.php:412
+#: ../../mod/contacts.php:418
 #, php-format
 msgid "Network type: %s"
 msgstr "网络种类: %s"
 
-#: ../../mod/contacts.php:415 ../../include/contact_widgets.php:199
+#: ../../mod/contacts.php:421 ../../include/contact_widgets.php:199
 #, php-format
 msgid "%d contact in common"
 msgid_plural "%d contacts in common"
 msgstr[0] "%d共同熟人"
 
-#: ../../mod/contacts.php:420
+#: ../../mod/contacts.php:426
 msgid "View all contacts"
 msgstr "看所有的熟人"
 
-#: ../../mod/contacts.php:428
+#: ../../mod/contacts.php:434
 msgid "Toggle Blocked status"
 msgstr "交替拦配置"
 
-#: ../../mod/contacts.php:431 ../../mod/contacts.php:485
-#: ../../mod/contacts.php:693
+#: ../../mod/contacts.php:437 ../../mod/contacts.php:491
+#: ../../mod/contacts.php:701
 msgid "Unignore"
 msgstr "停不理"
 
-#: ../../mod/contacts.php:431 ../../mod/contacts.php:485
-#: ../../mod/contacts.php:693 ../../mod/notifications.php:51
+#: ../../mod/contacts.php:437 ../../mod/contacts.php:491
+#: ../../mod/contacts.php:701 ../../mod/notifications.php:51
 #: ../../mod/notifications.php:164 ../../mod/notifications.php:210
 msgid "Ignore"
 msgstr "忽视"
 
-#: ../../mod/contacts.php:434
+#: ../../mod/contacts.php:440
 msgid "Toggle Ignored status"
 msgstr "交替忽视现状"
 
-#: ../../mod/contacts.php:438 ../../mod/contacts.php:694
+#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
 msgid "Unarchive"
 msgstr "从存档拿来"
 
-#: ../../mod/contacts.php:438 ../../mod/contacts.php:694
+#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
 msgid "Archive"
 msgstr "存档"
 
-#: ../../mod/contacts.php:441
+#: ../../mod/contacts.php:447
 msgid "Toggle Archive status"
 msgstr "交替档案现状"
 
-#: ../../mod/contacts.php:444
+#: ../../mod/contacts.php:450
 msgid "Repair"
 msgstr "维修"
 
-#: ../../mod/contacts.php:447
+#: ../../mod/contacts.php:453
 msgid "Advanced Contact Settings"
 msgstr "专家熟人设置"
 
-#: ../../mod/contacts.php:453
+#: ../../mod/contacts.php:459
 msgid "Communications lost with this contact!"
 msgstr "联系跟这个熟人断开了!"
 
-#: ../../mod/contacts.php:456
+#: ../../mod/contacts.php:462
 msgid "Contact Editor"
 msgstr "熟人编器"
 
-#: ../../mod/contacts.php:459
+#: ../../mod/contacts.php:465
 msgid "Profile Visibility"
 msgstr "简历可见量"
 
-#: ../../mod/contacts.php:460
+#: ../../mod/contacts.php:466
 #, php-format
 msgid ""
 "Please choose the profile you would like to display to %s when viewing your "
 "profile securely."
 msgstr "请选择简介您想给%s显示他安全地看您的简介的时候。"
 
-#: ../../mod/contacts.php:461
+#: ../../mod/contacts.php:467
 msgid "Contact Information / Notes"
 msgstr "熟人信息/便条"
 
-#: ../../mod/contacts.php:462
+#: ../../mod/contacts.php:468
 msgid "Edit contact notes"
 msgstr "编辑熟人便条"
 
-#: ../../mod/contacts.php:467 ../../mod/contacts.php:657
+#: ../../mod/contacts.php:473 ../../mod/contacts.php:665
 #: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
 #, php-format
 msgid "Visit %s's profile [%s]"
 msgstr "看%s的简介[%s]"
 
-#: ../../mod/contacts.php:468
+#: ../../mod/contacts.php:474
 msgid "Block/Unblock contact"
 msgstr "拦/否拦熟人"
 
-#: ../../mod/contacts.php:469
+#: ../../mod/contacts.php:475
 msgid "Ignore contact"
 msgstr "忽视熟人"
 
-#: ../../mod/contacts.php:470
+#: ../../mod/contacts.php:476
 msgid "Repair URL settings"
 msgstr "维修URL设置"
 
-#: ../../mod/contacts.php:471
+#: ../../mod/contacts.php:477
 msgid "View conversations"
 msgstr "看交流"
 
-#: ../../mod/contacts.php:473
+#: ../../mod/contacts.php:479
 msgid "Delete contact"
 msgstr "删除熟人"
 
-#: ../../mod/contacts.php:477
+#: ../../mod/contacts.php:483
 msgid "Last update:"
 msgstr "上个更新:"
 
-#: ../../mod/contacts.php:479
+#: ../../mod/contacts.php:485
 msgid "Update public posts"
 msgstr "更新公开文章"
 
-#: ../../mod/contacts.php:488
+#: ../../mod/contacts.php:494
 msgid "Currently blocked"
 msgstr "现在拦的"
 
-#: ../../mod/contacts.php:489
+#: ../../mod/contacts.php:495
 msgid "Currently ignored"
 msgstr "现在不理的"
 
-#: ../../mod/contacts.php:490
+#: ../../mod/contacts.php:496
 msgid "Currently archived"
 msgstr "现在存档着"
 
-#: ../../mod/contacts.php:491 ../../mod/notifications.php:157
+#: ../../mod/contacts.php:497 ../../mod/notifications.php:157
 #: ../../mod/notifications.php:204
 msgid "Hide this contact from others"
 msgstr "隐藏这个熟人给别人"
 
-#: ../../mod/contacts.php:491
+#: ../../mod/contacts.php:497
 msgid ""
 "Replies/likes to your public posts <strong>may</strong> still be visible"
 msgstr "回答/喜欢关您公开文章<strong>会</strong>还可见的"
 
-#: ../../mod/contacts.php:542
+#: ../../mod/contacts.php:498
+msgid "Notification for new posts"
+msgstr "新消息提示"
+
+#: ../../mod/contacts.php:498
+msgid "Send a notification of every new post of this contact"
+msgstr "发提示在所有这个联络的新消息"
+
+#: ../../mod/contacts.php:499
+msgid "Fetch further information for feeds"
+msgstr "拿文源别的消息"
+
+#: ../../mod/contacts.php:550
 msgid "Suggestions"
 msgstr "建议"
 
-#: ../../mod/contacts.php:545
+#: ../../mod/contacts.php:553
 msgid "Suggest potential friends"
 msgstr "建议潜在朋友们"
 
-#: ../../mod/contacts.php:548 ../../mod/group.php:194
+#: ../../mod/contacts.php:556 ../../mod/group.php:194
 msgid "All Contacts"
 msgstr "所有的熟人"
 
-#: ../../mod/contacts.php:551
+#: ../../mod/contacts.php:559
 msgid "Show all contacts"
 msgstr "表示所有的熟人"
 
-#: ../../mod/contacts.php:554
+#: ../../mod/contacts.php:562
 msgid "Unblocked"
 msgstr "不拦了"
 
-#: ../../mod/contacts.php:557
+#: ../../mod/contacts.php:565
 msgid "Only show unblocked contacts"
 msgstr "只表示不拦的熟人"
 
-#: ../../mod/contacts.php:561
+#: ../../mod/contacts.php:569
 msgid "Blocked"
 msgstr "拦了"
 
-#: ../../mod/contacts.php:564
+#: ../../mod/contacts.php:572
 msgid "Only show blocked contacts"
 msgstr "只表示拦的熟人"
 
-#: ../../mod/contacts.php:568
+#: ../../mod/contacts.php:576
 msgid "Ignored"
 msgstr "忽视的"
 
-#: ../../mod/contacts.php:571
+#: ../../mod/contacts.php:579
 msgid "Only show ignored contacts"
 msgstr "只表示忽视的熟人"
 
-#: ../../mod/contacts.php:575
+#: ../../mod/contacts.php:583
 msgid "Archived"
 msgstr "在存档"
 
-#: ../../mod/contacts.php:578
+#: ../../mod/contacts.php:586
 msgid "Only show archived contacts"
 msgstr "只表示档案熟人"
 
-#: ../../mod/contacts.php:582
+#: ../../mod/contacts.php:590
 msgid "Hidden"
 msgstr "隐藏的"
 
-#: ../../mod/contacts.php:585
+#: ../../mod/contacts.php:593
 msgid "Only show hidden contacts"
 msgstr "只表示隐藏的熟人"
 
-#: ../../mod/contacts.php:633
+#: ../../mod/contacts.php:641
 msgid "Mutual Friendship"
 msgstr "共同友谊"
 
-#: ../../mod/contacts.php:637
+#: ../../mod/contacts.php:645
 msgid "is a fan of yours"
 msgstr "是您迷"
 
-#: ../../mod/contacts.php:641
+#: ../../mod/contacts.php:649
 msgid "you are a fan of"
 msgstr "你喜欢"
 
-#: ../../mod/contacts.php:658 ../../mod/nogroup.php:41
+#: ../../mod/contacts.php:666 ../../mod/nogroup.php:41
 msgid "Edit contact"
 msgstr "编熟人"
 
-#: ../../mod/contacts.php:684
+#: ../../mod/contacts.php:692
 msgid "Search your contacts"
 msgstr "搜索您的熟人"
 
-#: ../../mod/contacts.php:691 ../../mod/settings.php:126
-#: ../../mod/settings.php:627
+#: ../../mod/contacts.php:699 ../../mod/settings.php:131
+#: ../../mod/settings.php:634
 msgid "Update"
 msgstr "更新"
 
-#: ../../mod/settings.php:28 ../../mod/photos.php:79
+#: ../../mod/settings.php:28 ../../mod/photos.php:80
 msgid "everybody"
 msgstr "每人"
 
-#: ../../mod/settings.php:35 ../../mod/uexport.php:9 ../../include/nav.php:167
-msgid "Account settings"
-msgstr "帐户配置"
-
 #: ../../mod/settings.php:40
 msgid "Additional features"
 msgstr "附加的特点"
 
-#: ../../mod/settings.php:45 ../../mod/uexport.php:14
-msgid "Display settings"
-msgstr "表示设置"
+#: ../../mod/settings.php:45
+msgid "Display"
+msgstr "显示"
 
-#: ../../mod/settings.php:51 ../../mod/uexport.php:20
-msgid "Connector settings"
-msgstr "插销设置"
+#: ../../mod/settings.php:51 ../../mod/settings.php:774
+msgid "Social Networks"
+msgstr "社会化网络"
 
-#: ../../mod/settings.php:56 ../../mod/uexport.php:25
-msgid "Plugin settings"
-msgstr "插件设置"
+#: ../../mod/settings.php:61 ../../include/nav.php:167
+msgid "Delegations"
+msgstr "代表"
 
-#: ../../mod/settings.php:61 ../../mod/uexport.php:30
+#: ../../mod/settings.php:66
 msgid "Connected apps"
 msgstr "连接着应用"
 
-#: ../../mod/settings.php:66 ../../mod/uexport.php:35 ../../mod/uexport.php:80
+#: ../../mod/settings.php:71 ../../mod/uexport.php:85
 msgid "Export personal data"
 msgstr "出口私人信息"
 
-#: ../../mod/settings.php:71 ../../mod/uexport.php:40
+#: ../../mod/settings.php:76
 msgid "Remove account"
 msgstr "删除账户"
 
-#: ../../mod/settings.php:123
+#: ../../mod/settings.php:128
 msgid "Missing some important data!"
 msgstr "有的重要信息失踪的!"
 
-#: ../../mod/settings.php:232
+#: ../../mod/settings.php:237
 msgid "Failed to connect with email account using the settings provided."
 msgstr "不能连接电子邮件账户用输入的设置。"
 
-#: ../../mod/settings.php:237
+#: ../../mod/settings.php:242
 msgid "Email settings updated."
 msgstr "电子邮件设置更新了"
 
-#: ../../mod/settings.php:252
+#: ../../mod/settings.php:257
 msgid "Features updated"
 msgstr "特点更新了"
 
-#: ../../mod/settings.php:311
+#: ../../mod/settings.php:318
 msgid "Relocate message has been send to your contacts"
 msgstr "调动信息寄给您的熟人"
 
-#: ../../mod/settings.php:325
+#: ../../mod/settings.php:332
 msgid "Passwords do not match. Password unchanged."
 msgstr "密码们不相配。密码没未改变的。"
 
-#: ../../mod/settings.php:330
+#: ../../mod/settings.php:337
 msgid "Empty passwords are not allowed. Password unchanged."
 msgstr "空的密码禁止。密码没未改变的。"
 
-#: ../../mod/settings.php:338
+#: ../../mod/settings.php:345
 msgid "Wrong password."
 msgstr "密码不正确。"
 
-#: ../../mod/settings.php:349
+#: ../../mod/settings.php:356
 msgid "Password changed."
 msgstr "密码变化了。"
 
-#: ../../mod/settings.php:351
+#: ../../mod/settings.php:358
 msgid "Password update failed. Please try again."
 msgstr "密码更新失败了。请再试。"
 
-#: ../../mod/settings.php:416
+#: ../../mod/settings.php:423
 msgid " Please use a shorter name."
 msgstr "请用短一点个名。"
 
-#: ../../mod/settings.php:418
+#: ../../mod/settings.php:425
 msgid " Name too short."
 msgstr "名字太短。"
 
-#: ../../mod/settings.php:427
+#: ../../mod/settings.php:434
 msgid "Wrong Password"
 msgstr "密码不正确"
 
-#: ../../mod/settings.php:432
+#: ../../mod/settings.php:439
 msgid " Not valid email."
 msgstr " 电子邮件地址无效."
 
-#: ../../mod/settings.php:438
+#: ../../mod/settings.php:445
 msgid " Cannot change to that email."
 msgstr "不能变化到这个邮件地址。"
 
-#: ../../mod/settings.php:493
+#: ../../mod/settings.php:500
 msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr "私人评坛没有隐私批准。默认隐私组用者。"
 
-#: ../../mod/settings.php:497
+#: ../../mod/settings.php:504
 msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr "私人评坛没有隐私批准或默认隐私组。"
 
-#: ../../mod/settings.php:527
+#: ../../mod/settings.php:534
 msgid "Settings updated."
 msgstr "设置跟新了"
 
-#: ../../mod/settings.php:600 ../../mod/settings.php:626
-#: ../../mod/settings.php:662
+#: ../../mod/settings.php:607 ../../mod/settings.php:633
+#: ../../mod/settings.php:669
 msgid "Add application"
 msgstr "加入应用"
 
-#: ../../mod/settings.php:604 ../../mod/settings.php:630
+#: ../../mod/settings.php:611 ../../mod/settings.php:637
 msgid "Consumer Key"
 msgstr "钥匙(Consumer Key)"
 
-#: ../../mod/settings.php:605 ../../mod/settings.php:631
+#: ../../mod/settings.php:612 ../../mod/settings.php:638
 msgid "Consumer Secret"
 msgstr "密码(Consumer Secret)"
 
-#: ../../mod/settings.php:606 ../../mod/settings.php:632
+#: ../../mod/settings.php:613 ../../mod/settings.php:639
 msgid "Redirect"
 msgstr "重定向"
 
-#: ../../mod/settings.php:607 ../../mod/settings.php:633
+#: ../../mod/settings.php:614 ../../mod/settings.php:640
 msgid "Icon url"
 msgstr "图符URL"
 
-#: ../../mod/settings.php:618
+#: ../../mod/settings.php:625
 msgid "You can't edit this application."
 msgstr "您不能编辑这个应用。"
 
-#: ../../mod/settings.php:661
+#: ../../mod/settings.php:668
 msgid "Connected Apps"
 msgstr "连接着应用"
 
-#: ../../mod/settings.php:665
+#: ../../mod/settings.php:672
 msgid "Client key starts with"
 msgstr "客户钥匙头字是"
 
-#: ../../mod/settings.php:666
+#: ../../mod/settings.php:673
 msgid "No name"
 msgstr "无名"
 
-#: ../../mod/settings.php:667
+#: ../../mod/settings.php:674
 msgid "Remove authorization"
 msgstr "撤消权能"
 
-#: ../../mod/settings.php:679
+#: ../../mod/settings.php:686
 msgid "No Plugin settings configured"
 msgstr "没插件设置配置了"
 
-#: ../../mod/settings.php:687
+#: ../../mod/settings.php:694
 msgid "Plugin Settings"
 msgstr "插件设置"
 
-#: ../../mod/settings.php:701
+#: ../../mod/settings.php:708
 msgid "Off"
 msgstr "关"
 
-#: ../../mod/settings.php:701
+#: ../../mod/settings.php:708
 msgid "On"
 msgstr "开"
 
-#: ../../mod/settings.php:709
+#: ../../mod/settings.php:716
 msgid "Additional Features"
 msgstr "附加的特点"
 
-#: ../../mod/settings.php:722 ../../mod/settings.php:723
+#: ../../mod/settings.php:730 ../../mod/settings.php:731
 #, php-format
 msgid "Built-in support for %s connectivity is %s"
 msgstr "包括的支持为%s连通性是%s"
 
-#: ../../mod/settings.php:722 ../../mod/settings.php:723
+#: ../../mod/settings.php:730 ../../mod/settings.php:731
 msgid "enabled"
 msgstr "能够做的"
 
-#: ../../mod/settings.php:722 ../../mod/settings.php:723
+#: ../../mod/settings.php:730 ../../mod/settings.php:731
 msgid "disabled"
 msgstr "使不能用"
 
-#: ../../mod/settings.php:723
+#: ../../mod/settings.php:731
 msgid "StatusNet"
 msgstr "StatusNet"
 
-#: ../../mod/settings.php:755
+#: ../../mod/settings.php:767
 msgid "Email access is disabled on this site."
 msgstr "这个网站没有邮件使用权"
 
-#: ../../mod/settings.php:762
-msgid "Connector Settings"
-msgstr "连接器设置"
-
-#: ../../mod/settings.php:767
+#: ../../mod/settings.php:779
 msgid "Email/Mailbox Setup"
 msgstr "邮件收件箱设置"
 
-#: ../../mod/settings.php:768
+#: ../../mod/settings.php:780
 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:769
+#: ../../mod/settings.php:781
 msgid "Last successful email check:"
 msgstr "上个成功收件箱检查:"
 
-#: ../../mod/settings.php:771
+#: ../../mod/settings.php:783
 msgid "IMAP server name:"
 msgstr "IMAP服务器名字:"
 
-#: ../../mod/settings.php:772
+#: ../../mod/settings.php:784
 msgid "IMAP port:"
 msgstr "IMAP服务器端口:"
 
-#: ../../mod/settings.php:773
+#: ../../mod/settings.php:785
 msgid "Security:"
 msgstr "安全:"
 
-#: ../../mod/settings.php:773 ../../mod/settings.php:778
+#: ../../mod/settings.php:785 ../../mod/settings.php:790
 msgid "None"
 msgstr "没有"
 
-#: ../../mod/settings.php:774
+#: ../../mod/settings.php:786
 msgid "Email login name:"
 msgstr "邮件登记名:"
 
-#: ../../mod/settings.php:775
+#: ../../mod/settings.php:787
 msgid "Email password:"
 msgstr "邮件密码:"
 
-#: ../../mod/settings.php:776
+#: ../../mod/settings.php:788
 msgid "Reply-to address:"
 msgstr "回答地址:"
 
-#: ../../mod/settings.php:777
+#: ../../mod/settings.php:789
 msgid "Send public posts to all email contacts:"
 msgstr "发公开的文章给所有的邮件熟人:"
 
-#: ../../mod/settings.php:778
+#: ../../mod/settings.php:790
 msgid "Action after import:"
 msgstr "进口后行动:"
 
-#: ../../mod/settings.php:778
+#: ../../mod/settings.php:790
 msgid "Mark as seen"
 msgstr "标注看过"
 
-#: ../../mod/settings.php:778
+#: ../../mod/settings.php:790
 msgid "Move to folder"
 msgstr "搬到文件夹"
 
-#: ../../mod/settings.php:779
+#: ../../mod/settings.php:791
 msgid "Move to folder:"
 msgstr "搬到文件夹:"
 
-#: ../../mod/settings.php:854
+#: ../../mod/settings.php:869
 msgid "Display Settings"
 msgstr "表示设置"
 
-#: ../../mod/settings.php:860 ../../mod/settings.php:873
+#: ../../mod/settings.php:875 ../../mod/settings.php:889
 msgid "Display Theme:"
 msgstr "显示主题:"
 
-#: ../../mod/settings.php:861
+#: ../../mod/settings.php:876
 msgid "Mobile Theme:"
 msgstr "手机主题:"
 
-#: ../../mod/settings.php:862
+#: ../../mod/settings.php:877
 msgid "Update browser every xx seconds"
 msgstr "更新游览器每XX秒"
 
-#: ../../mod/settings.php:862
+#: ../../mod/settings.php:877
 msgid "Minimum of 10 seconds, no maximum"
 msgstr "最小10秒,没有上限"
 
-#: ../../mod/settings.php:863
+#: ../../mod/settings.php:878
 msgid "Number of items to display per page:"
 msgstr "每页表示多少项目:"
 
-#: ../../mod/settings.php:863 ../../mod/settings.php:864
+#: ../../mod/settings.php:878 ../../mod/settings.php:879
 msgid "Maximum of 100 items"
 msgstr "最多100项目"
 
-#: ../../mod/settings.php:864
+#: ../../mod/settings.php:879
 msgid "Number of items to display per page when viewed from mobile device:"
 msgstr "用手机看一页展示多少项目:"
 
-#: ../../mod/settings.php:865
+#: ../../mod/settings.php:880
 msgid "Don't show emoticons"
 msgstr "别表示请表符号"
 
-#: ../../mod/settings.php:866
+#: ../../mod/settings.php:881
+msgid "Don't show notices"
+msgstr "别表提示"
+
+#: ../../mod/settings.php:882
 msgid "Infinite scroll"
 msgstr "无限的滚动"
 
-#: ../../mod/settings.php:942
+#: ../../mod/settings.php:959
 msgid "Normal Account Page"
 msgstr "平常账户页"
 
-#: ../../mod/settings.php:943
+#: ../../mod/settings.php:960
 msgid "This account is a normal personal profile"
 msgstr "这个帐户是正常私人简介"
 
-#: ../../mod/settings.php:946
+#: ../../mod/settings.php:963
 msgid "Soapbox Page"
 msgstr "演讲台页"
 
-#: ../../mod/settings.php:947
+#: ../../mod/settings.php:964
 msgid "Automatically approve all connection/friend requests as read-only fans"
 msgstr "自动批准所有联络/友谊要求当只看的迷"
 
-#: ../../mod/settings.php:950
+#: ../../mod/settings.php:967
 msgid "Community Forum/Celebrity Account"
 msgstr "社会评坛/名人账户"
 
-#: ../../mod/settings.php:951
+#: ../../mod/settings.php:968
 msgid ""
 "Automatically approve all connection/friend requests as read-write fans"
 msgstr "自动批准所有联络/友谊要求当看写的迷"
 
-#: ../../mod/settings.php:954
+#: ../../mod/settings.php:971
 msgid "Automatic Friend Page"
 msgstr "自动朋友页"
 
-#: ../../mod/settings.php:955
+#: ../../mod/settings.php:972
 msgid "Automatically approve all connection/friend requests as friends"
 msgstr "自动批准所有联络/友谊要求当朋友"
 
-#: ../../mod/settings.php:958
+#: ../../mod/settings.php:975
 msgid "Private Forum [Experimental]"
 msgstr "隐私评坛[实验性的 ]"
 
-#: ../../mod/settings.php:959
+#: ../../mod/settings.php:976
 msgid "Private forum - approved members only"
 msgstr "隐私评坛-只批准的成员"
 
-#: ../../mod/settings.php:971
+#: ../../mod/settings.php:988
 msgid "OpenID:"
 msgstr "OpenID:"
 
-#: ../../mod/settings.php:971
+#: ../../mod/settings.php:988
 msgid "(Optional) Allow this OpenID to login to this account."
 msgstr "(可选的)许这个OpenID这个账户登记。"
 
-#: ../../mod/settings.php:981
+#: ../../mod/settings.php:998
 msgid "Publish your default profile in your local site directory?"
 msgstr "出版您默认简介在您当地的网站目录?"
 
-#: ../../mod/settings.php:987
+#: ../../mod/settings.php:1004
 msgid "Publish your default profile in the global social directory?"
 msgstr "出版您默认简介在综合社会目录?"
 
-#: ../../mod/settings.php:995
+#: ../../mod/settings.php:1012
 msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr "藏起来  发现您的熟人/朋友单不让这个简介看着看?\n "
 
-#: ../../mod/settings.php:999
+#: ../../mod/settings.php:1016
 msgid "Hide your profile details from unknown viewers?"
 msgstr "使简介信息给陌生的看着看不了?"
 
-#: ../../mod/settings.php:1004
+#: ../../mod/settings.php:1021
 msgid "Allow friends to post to your profile page?"
 msgstr "允许朋友们贴文章在您的简介页?"
 
-#: ../../mod/settings.php:1010
+#: ../../mod/settings.php:1027
 msgid "Allow friends to tag your posts?"
 msgstr "允许朋友们标签您的文章?"
 
-#: ../../mod/settings.php:1016
+#: ../../mod/settings.php:1033
 msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr "允许我们建议您潜力朋友给新成员?"
 
-#: ../../mod/settings.php:1022
+#: ../../mod/settings.php:1039
 msgid "Permit unknown people to send you private mail?"
 msgstr "允许生人寄给您私人邮件?"
 
-#: ../../mod/settings.php:1030
+#: ../../mod/settings.php:1047
 msgid "Profile is <strong>not published</strong>."
 msgstr "简介是<strong>没出版</strong>"
 
-#: ../../mod/settings.php:1033 ../../mod/profile_photo.php:248
+#: ../../mod/settings.php:1050 ../../mod/profile_photo.php:248
 msgid "or"
 msgstr "或者"
 
-#: ../../mod/settings.php:1038
+#: ../../mod/settings.php:1055
 msgid "Your Identity Address is"
 msgstr "您的同一个人地址是"
 
-#: ../../mod/settings.php:1049
+#: ../../mod/settings.php:1066
 msgid "Automatically expire posts after this many days:"
 msgstr "自动地过期文章这数天:"
 
-#: ../../mod/settings.php:1049
+#: ../../mod/settings.php:1066
 msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr "如果空的,文章不会过期。过期的文章被删除"
 
-#: ../../mod/settings.php:1050
+#: ../../mod/settings.php:1067
 msgid "Advanced expiration settings"
 msgstr "先进的过期设置"
 
-#: ../../mod/settings.php:1051
+#: ../../mod/settings.php:1068
 msgid "Advanced Expiration"
 msgstr "先进的过期"
 
-#: ../../mod/settings.php:1052
+#: ../../mod/settings.php:1069
 msgid "Expire posts:"
 msgstr "把文章过期:"
 
-#: ../../mod/settings.php:1053
+#: ../../mod/settings.php:1070
 msgid "Expire personal notes:"
 msgstr "把私人便条过期:"
 
-#: ../../mod/settings.php:1054
+#: ../../mod/settings.php:1071
 msgid "Expire starred posts:"
 msgstr "把星的文章过期:"
 
-#: ../../mod/settings.php:1055
+#: ../../mod/settings.php:1072
 msgid "Expire photos:"
 msgstr "把照片过期:"
 
-#: ../../mod/settings.php:1056
+#: ../../mod/settings.php:1073
 msgid "Only expire posts by others:"
 msgstr "只别人的文章过期:"
 
-#: ../../mod/settings.php:1082
+#: ../../mod/settings.php:1099
 msgid "Account Settings"
 msgstr "帐户设置"
 
-#: ../../mod/settings.php:1090
+#: ../../mod/settings.php:1107
 msgid "Password Settings"
 msgstr "密码设置"
 
-#: ../../mod/settings.php:1091
+#: ../../mod/settings.php:1108
 msgid "New Password:"
 msgstr "新密码:"
 
-#: ../../mod/settings.php:1092
+#: ../../mod/settings.php:1109
 msgid "Confirm:"
 msgstr "确认:"
 
-#: ../../mod/settings.php:1092
+#: ../../mod/settings.php:1109
 msgid "Leave password fields blank unless changing"
 msgstr "非变化留空密码栏"
 
-#: ../../mod/settings.php:1093
+#: ../../mod/settings.php:1110
 msgid "Current Password:"
 msgstr "目前密码:"
 
-#: ../../mod/settings.php:1093 ../../mod/settings.php:1094
+#: ../../mod/settings.php:1110 ../../mod/settings.php:1111
 msgid "Your current password to confirm the changes"
 msgstr "您目前密码为确认变化"
 
-#: ../../mod/settings.php:1094
+#: ../../mod/settings.php:1111
 msgid "Password:"
 msgstr "密码:"
 
-#: ../../mod/settings.php:1098
+#: ../../mod/settings.php:1115
 msgid "Basic Settings"
 msgstr "基础设置"
 
-#: ../../mod/settings.php:1099 ../../include/profile_advanced.php:15
+#: ../../mod/settings.php:1116 ../../include/profile_advanced.php:15
 msgid "Full Name:"
 msgstr "全名:"
 
-#: ../../mod/settings.php:1100
+#: ../../mod/settings.php:1117
 msgid "Email Address:"
 msgstr "电子邮件地址:"
 
-#: ../../mod/settings.php:1101
+#: ../../mod/settings.php:1118
 msgid "Your Timezone:"
 msgstr "您的时区:"
 
-#: ../../mod/settings.php:1102
+#: ../../mod/settings.php:1119
 msgid "Default Post Location:"
 msgstr "默认文章位置:"
 
-#: ../../mod/settings.php:1103
+#: ../../mod/settings.php:1120
 msgid "Use Browser Location:"
 msgstr "用游览器位置:"
 
-#: ../../mod/settings.php:1106
+#: ../../mod/settings.php:1123
 msgid "Security and Privacy Settings"
 msgstr "安全和隐私设置"
 
-#: ../../mod/settings.php:1108
+#: ../../mod/settings.php:1125
 msgid "Maximum Friend Requests/Day:"
 msgstr "最多友谊要求个天:"
 
-#: ../../mod/settings.php:1108 ../../mod/settings.php:1138
+#: ../../mod/settings.php:1125 ../../mod/settings.php:1155
 msgid "(to prevent spam abuse)"
 msgstr "(为防止垃圾邮件滥用)"
 
-#: ../../mod/settings.php:1109
+#: ../../mod/settings.php:1126
 msgid "Default Post Permissions"
 msgstr "默认文章准许"
 
-#: ../../mod/settings.php:1110
+#: ../../mod/settings.php:1127
 msgid "(click to open/close)"
 msgstr "(点击为打开/关闭)"
 
-#: ../../mod/settings.php:1119 ../../mod/photos.php:1140
-#: ../../mod/photos.php:1506
+#: ../../mod/settings.php:1136 ../../mod/photos.php:1144
+#: ../../mod/photos.php:1515
 msgid "Show to Groups"
 msgstr "给组表示"
 
-#: ../../mod/settings.php:1120 ../../mod/photos.php:1141
-#: ../../mod/photos.php:1507
+#: ../../mod/settings.php:1137 ../../mod/photos.php:1145
+#: ../../mod/photos.php:1516
 msgid "Show to Contacts"
 msgstr "给熟人表示"
 
-#: ../../mod/settings.php:1121
+#: ../../mod/settings.php:1138
 msgid "Default Private Post"
 msgstr "默认私人文章"
 
-#: ../../mod/settings.php:1122
+#: ../../mod/settings.php:1139
 msgid "Default Public Post"
 msgstr "默认公开文章"
 
-#: ../../mod/settings.php:1126
+#: ../../mod/settings.php:1143
 msgid "Default Permissions for New Posts"
 msgstr "默认权利为新文章"
 
-#: ../../mod/settings.php:1138
+#: ../../mod/settings.php:1155
 msgid "Maximum private messages per day from unknown people:"
 msgstr "一天最多从生人私人邮件:"
 
-#: ../../mod/settings.php:1141
+#: ../../mod/settings.php:1158
 msgid "Notification Settings"
 msgstr "消息设置"
 
-#: ../../mod/settings.php:1142
+#: ../../mod/settings.php:1159
 msgid "By default post a status message when:"
 msgstr "默认地发现状通知如果:"
 
-#: ../../mod/settings.php:1143
+#: ../../mod/settings.php:1160
 msgid "accepting a friend request"
 msgstr "接受朋友邀请"
 
-#: ../../mod/settings.php:1144
+#: ../../mod/settings.php:1161
 msgid "joining a forum/community"
 msgstr "加入评坛/社会"
 
-#: ../../mod/settings.php:1145
+#: ../../mod/settings.php:1162
 msgid "making an <em>interesting</em> profile change"
 msgstr "把简介有意思地变修改"
 
-#: ../../mod/settings.php:1146
+#: ../../mod/settings.php:1163
 msgid "Send a notification email when:"
 msgstr "发一个消息要是:"
 
-#: ../../mod/settings.php:1147
+#: ../../mod/settings.php:1164
 msgid "You receive an introduction"
 msgstr "你受到一个介绍"
 
-#: ../../mod/settings.php:1148
+#: ../../mod/settings.php:1165
 msgid "Your introductions are confirmed"
 msgstr "你的介绍确认了"
 
-#: ../../mod/settings.php:1149
+#: ../../mod/settings.php:1166
 msgid "Someone writes on your profile wall"
 msgstr "某人写在你的简历墙"
 
-#: ../../mod/settings.php:1150
+#: ../../mod/settings.php:1167
 msgid "Someone writes a followup comment"
 msgstr "某人写一个后续的评论"
 
-#: ../../mod/settings.php:1151
+#: ../../mod/settings.php:1168
 msgid "You receive a private message"
 msgstr "你受到一个私消息"
 
-#: ../../mod/settings.php:1152
+#: ../../mod/settings.php:1169
 msgid "You receive a friend suggestion"
 msgstr "你受到一个朋友建议"
 
-#: ../../mod/settings.php:1153
+#: ../../mod/settings.php:1170
 msgid "You are tagged in a post"
 msgstr "你被在新闻标签"
 
-#: ../../mod/settings.php:1154
+#: ../../mod/settings.php:1171
 msgid "You are poked/prodded/etc. in a post"
 msgstr "您在文章被戳"
 
-#: ../../mod/settings.php:1157
+#: ../../mod/settings.php:1174
 msgid "Advanced Account/Page Type Settings"
 msgstr "专家账户/页种设置"
 
-#: ../../mod/settings.php:1158
+#: ../../mod/settings.php:1175
 msgid "Change the behaviour of this account for special situations"
 msgstr "把这个账户特别情况的时候行动变化"
 
-#: ../../mod/settings.php:1161
+#: ../../mod/settings.php:1178
 msgid "Relocate"
 msgstr "调动"
 
-#: ../../mod/settings.php:1162
+#: ../../mod/settings.php:1179
 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:1163
+#: ../../mod/settings.php:1180
 msgid "Resend relocate message to contacts"
 msgstr "把调动信息寄给熟人"
 
@@ -4185,265 +4204,265 @@ msgstr "简介不可用为复制。"
 msgid "Profile Name is required."
 msgstr "必要简介名"
 
-#: ../../mod/profiles.php:317
+#: ../../mod/profiles.php:321
 msgid "Marital Status"
 msgstr "婚姻状况 "
 
-#: ../../mod/profiles.php:321
+#: ../../mod/profiles.php:325
 msgid "Romantic Partner"
 msgstr "情人"
 
-#: ../../mod/profiles.php:325
+#: ../../mod/profiles.php:329
 msgid "Likes"
 msgstr "喜欢"
 
-#: ../../mod/profiles.php:329
+#: ../../mod/profiles.php:333
 msgid "Dislikes"
 msgstr "不喜欢"
 
-#: ../../mod/profiles.php:333
+#: ../../mod/profiles.php:337
 msgid "Work/Employment"
 msgstr "工作"
 
-#: ../../mod/profiles.php:336
+#: ../../mod/profiles.php:340
 msgid "Religion"
 msgstr "宗教"
 
-#: ../../mod/profiles.php:340
+#: ../../mod/profiles.php:344
 msgid "Political Views"
 msgstr "政治观念"
 
-#: ../../mod/profiles.php:344
+#: ../../mod/profiles.php:348
 msgid "Gender"
 msgstr "性别"
 
-#: ../../mod/profiles.php:348
+#: ../../mod/profiles.php:352
 msgid "Sexual Preference"
 msgstr "性取向"
 
-#: ../../mod/profiles.php:352
+#: ../../mod/profiles.php:356
 msgid "Homepage"
 msgstr "主页"
 
-#: ../../mod/profiles.php:356
+#: ../../mod/profiles.php:360
 msgid "Interests"
 msgstr "兴趣"
 
-#: ../../mod/profiles.php:360
+#: ../../mod/profiles.php:364
 msgid "Address"
 msgstr "地址"
 
-#: ../../mod/profiles.php:367
+#: ../../mod/profiles.php:371
 msgid "Location"
 msgstr "位置"
 
-#: ../../mod/profiles.php:450
+#: ../../mod/profiles.php:454
 msgid "Profile updated."
 msgstr "简介更新了。"
 
-#: ../../mod/profiles.php:521
+#: ../../mod/profiles.php:525
 msgid " and "
 msgstr "和"
 
-#: ../../mod/profiles.php:529
+#: ../../mod/profiles.php:533
 msgid "public profile"
 msgstr "公开简介"
 
-#: ../../mod/profiles.php:532
+#: ../../mod/profiles.php:536
 #, php-format
 msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
 msgstr "%1$s把%2$s变化成&ldquo;%3$s&rdquo;"
 
-#: ../../mod/profiles.php:533
+#: ../../mod/profiles.php:537
 #, php-format
 msgid " - Visit %1$s's %2$s"
 msgstr " - 看 %1$s的%2$s"
 
-#: ../../mod/profiles.php:536
+#: ../../mod/profiles.php:540
 #, php-format
 msgid "%1$s has an updated %2$s, changing %3$s."
 msgstr "%1$s有更新的%2$s,修改%3$s."
 
-#: ../../mod/profiles.php:609
+#: ../../mod/profiles.php:613
 msgid "Hide your contact/friend list from viewers of this profile?"
 msgstr "藏起来发现您的熟人/朋友单不让这个简介看着看?"
 
-#: ../../mod/profiles.php:629
+#: ../../mod/profiles.php:633
 msgid "Edit Profile Details"
 msgstr "剪辑简介消息"
 
-#: ../../mod/profiles.php:631
+#: ../../mod/profiles.php:635
 msgid "Change Profile Photo"
 msgstr "改变简介照片"
 
-#: ../../mod/profiles.php:632
+#: ../../mod/profiles.php:636
 msgid "View this profile"
 msgstr "看这个简介"
 
-#: ../../mod/profiles.php:633
+#: ../../mod/profiles.php:637
 msgid "Create a new profile using these settings"
 msgstr "造成新的简介用这些设置"
 
-#: ../../mod/profiles.php:634
+#: ../../mod/profiles.php:638
 msgid "Clone this profile"
 msgstr "复制这个简介"
 
-#: ../../mod/profiles.php:635
+#: ../../mod/profiles.php:639
 msgid "Delete this profile"
 msgstr "删除这个简介"
 
-#: ../../mod/profiles.php:636
+#: ../../mod/profiles.php:640
 msgid "Profile Name:"
 msgstr "简介名:"
 
-#: ../../mod/profiles.php:637
+#: ../../mod/profiles.php:641
 msgid "Your Full Name:"
 msgstr "你的全名:"
 
-#: ../../mod/profiles.php:638
+#: ../../mod/profiles.php:642
 msgid "Title/Description:"
 msgstr "标题/描述:"
 
-#: ../../mod/profiles.php:639
+#: ../../mod/profiles.php:643
 msgid "Your Gender:"
 msgstr "你的性:"
 
-#: ../../mod/profiles.php:640
+#: ../../mod/profiles.php:644
 #, php-format
 msgid "Birthday (%s):"
 msgstr "生日(%s):"
 
-#: ../../mod/profiles.php:641
+#: ../../mod/profiles.php:645
 msgid "Street Address:"
 msgstr "地址:"
 
-#: ../../mod/profiles.php:642
+#: ../../mod/profiles.php:646
 msgid "Locality/City:"
 msgstr "现场/城市:"
 
-#: ../../mod/profiles.php:643
+#: ../../mod/profiles.php:647
 msgid "Postal/Zip Code:"
 msgstr "邮政编码:"
 
-#: ../../mod/profiles.php:644
+#: ../../mod/profiles.php:648
 msgid "Country:"
 msgstr "国家:"
 
-#: ../../mod/profiles.php:645
+#: ../../mod/profiles.php:649
 msgid "Region/State:"
 msgstr "区域/省"
 
-#: ../../mod/profiles.php:646
+#: ../../mod/profiles.php:650
 msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
 msgstr "<span class=\"heart\">&hearts;</span>婚姻状况:"
 
-#: ../../mod/profiles.php:647
+#: ../../mod/profiles.php:651
 msgid "Who: (if applicable)"
 msgstr "谁:(要是使用)"
 
-#: ../../mod/profiles.php:648
+#: ../../mod/profiles.php:652
 msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
 msgstr "比如:limou,李某,limou@example。com"
 
-#: ../../mod/profiles.php:649
+#: ../../mod/profiles.php:653
 msgid "Since [date]:"
 msgstr "追溯[日期]:"
 
-#: ../../mod/profiles.php:650 ../../include/profile_advanced.php:46
+#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:46
 msgid "Sexual Preference:"
 msgstr "性取向"
 
-#: ../../mod/profiles.php:651
+#: ../../mod/profiles.php:655
 msgid "Homepage URL:"
 msgstr "主页URL:"
 
-#: ../../mod/profiles.php:652 ../../include/profile_advanced.php:50
+#: ../../mod/profiles.php:656 ../../include/profile_advanced.php:50
 msgid "Hometown:"
 msgstr "故乡:"
 
-#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:54
+#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:54
 msgid "Political Views:"
 msgstr "政治观念:"
 
-#: ../../mod/profiles.php:654
+#: ../../mod/profiles.php:658
 msgid "Religious Views:"
 msgstr " 宗教信仰 :"
 
-#: ../../mod/profiles.php:655
+#: ../../mod/profiles.php:659
 msgid "Public Keywords:"
 msgstr "公开关键字 :"
 
-#: ../../mod/profiles.php:656
+#: ../../mod/profiles.php:660
 msgid "Private Keywords:"
 msgstr "私人关键字"
 
-#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:62
+#: ../../mod/profiles.php:661 ../../include/profile_advanced.php:62
 msgid "Likes:"
 msgstr "喜欢:"
 
-#: ../../mod/profiles.php:658 ../../include/profile_advanced.php:64
+#: ../../mod/profiles.php:662 ../../include/profile_advanced.php:64
 msgid "Dislikes:"
 msgstr "不喜欢:"
 
-#: ../../mod/profiles.php:659
+#: ../../mod/profiles.php:663
 msgid "Example: fishing photography software"
 msgstr "例如:钓鱼 照片 软件"
 
-#: ../../mod/profiles.php:660
+#: ../../mod/profiles.php:664
 msgid "(Used for suggesting potential friends, can be seen by others)"
 msgstr "(用于建议可能的朋友们,会被别人看)"
 
-#: ../../mod/profiles.php:661
+#: ../../mod/profiles.php:665
 msgid "(Used for searching profiles, never shown to others)"
 msgstr "(用于搜索简介,没有给别人看)"
 
-#: ../../mod/profiles.php:662
+#: ../../mod/profiles.php:666
 msgid "Tell us about yourself..."
 msgstr "给我们自我介绍..."
 
-#: ../../mod/profiles.php:663
+#: ../../mod/profiles.php:667
 msgid "Hobbies/Interests"
 msgstr "爱好/兴趣"
 
-#: ../../mod/profiles.php:664
+#: ../../mod/profiles.php:668
 msgid "Contact information and Social Networks"
 msgstr "熟人信息和社会化网络"
 
-#: ../../mod/profiles.php:665
+#: ../../mod/profiles.php:669
 msgid "Musical interests"
 msgstr "音乐兴趣"
 
-#: ../../mod/profiles.php:666
+#: ../../mod/profiles.php:670
 msgid "Books, literature"
 msgstr "书,文学"
 
-#: ../../mod/profiles.php:667
+#: ../../mod/profiles.php:671
 msgid "Television"
 msgstr "电视"
 
-#: ../../mod/profiles.php:668
+#: ../../mod/profiles.php:672
 msgid "Film/dance/culture/entertainment"
 msgstr "电影/跳舞/文化/娱乐"
 
-#: ../../mod/profiles.php:669
+#: ../../mod/profiles.php:673
 msgid "Love/romance"
 msgstr "爱情/浪漫"
 
-#: ../../mod/profiles.php:670
+#: ../../mod/profiles.php:674
 msgid "Work/employment"
 msgstr "工作"
 
-#: ../../mod/profiles.php:671
+#: ../../mod/profiles.php:675
 msgid "School/education"
 msgstr "学院/教育"
 
-#: ../../mod/profiles.php:676
+#: ../../mod/profiles.php:680
 msgid ""
 "This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
 "be visible to anybody using the internet."
 msgstr "这是你的<strong>公开的</strong>简介。<br />它<strong>可能</strong>被所有的因特网用的看到。"
 
-#: ../../mod/profiles.php:725
+#: ../../mod/profiles.php:729
 msgid "Edit/Manage Profiles"
 msgstr "编辑/管理简介"
 
@@ -4559,7 +4578,7 @@ msgstr "没别系统通知。"
 msgid "System Notifications"
 msgstr "系统通知"
 
-#: ../../mod/message.php:9 ../../include/nav.php:159
+#: ../../mod/message.php:9 ../../include/nav.php:161
 msgid "New Message"
 msgstr "新的消息"
 
@@ -4568,7 +4587,7 @@ msgid "Unable to locate contact information."
 msgstr "找不到熟人信息。"
 
 #: ../../mod/message.php:182 ../../mod/notifications.php:103
-#: ../../include/nav.php:156
+#: ../../include/nav.php:158
 msgid "Messages"
 msgstr "消息"
 
@@ -4635,7 +4654,7 @@ msgstr "没可用的安全交通。您<strong>可能</strong>会在发送人的
 msgid "Send Reply"
 msgstr "发回答"
 
-#: ../../mod/like.php:170 ../../include/conversation.php:140
+#: ../../mod/like.php:169 ../../include/conversation.php:140
 #, php-format
 msgid "%1$s doesn't like %2$s's %3$s"
 msgstr "%1$s不喜欢%2$s的%3$s"
@@ -4645,7 +4664,7 @@ msgid "Post successful."
 msgstr "评论发表了。"
 
 #: ../../mod/localtime.php:12 ../../include/event.php:11
-#: ../../include/bb2diaspora.php:393
+#: ../../include/bb2diaspora.php:133
 msgid "l F d, Y \\@ g:i A"
 msgstr "l F d, Y \\@ g:i A"
 
@@ -4678,8 +4697,8 @@ msgstr "装换的当地时间:%s"
 msgid "Please select your timezone:"
 msgstr "请选择你的时区:"
 
-#: ../../mod/filer.php:30 ../../include/conversation.php:1001
-#: ../../include/conversation.php:1019
+#: ../../mod/filer.php:30 ../../include/conversation.php:1004
+#: ../../include/conversation.php:1022
 msgid "Save to Folder:"
 msgstr "保存再文件夹:"
 
@@ -4707,7 +4726,7 @@ msgstr "所有熟人(跟安全地简介使用权)"
 msgid "No contacts."
 msgstr "没有熟人。"
 
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:857
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:861
 msgid "View Contacts"
 msgstr "看熟人"
 
@@ -4719,201 +4738,210 @@ msgstr "搜索人物"
 msgid "No matches"
 msgstr "没有结果"
 
-#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795
+#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1810
 msgid "Upload New Photos"
 msgstr "上传新照片"
 
-#: ../../mod/photos.php:143
+#: ../../mod/photos.php:144
 msgid "Contact information unavailable"
 msgstr "熟人信息不可用"
 
-#: ../../mod/photos.php:164
+#: ../../mod/photos.php:165
 msgid "Album not found."
 msgstr "取回不了相册."
 
-#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200
+#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
 msgid "Delete Album"
 msgstr "删除相册"
 
-#: ../../mod/photos.php:197
+#: ../../mod/photos.php:198
 msgid "Do you really want to delete this photo album and all its photos?"
 msgstr "您真的想删除这个相册和所有里面的照相吗?"
 
-#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502
+#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511
 msgid "Delete Photo"
 msgstr "删除照片"
 
-#: ../../mod/photos.php:285
+#: ../../mod/photos.php:287
 msgid "Do you really want to delete this photo?"
 msgstr "您真的想删除这个照相吗?"
 
-#: ../../mod/photos.php:656
+#: ../../mod/photos.php:660
 #, php-format
 msgid "%1$s was tagged in %2$s by %3$s"
 msgstr "%1$s被%3$s标签在%2$s"
 
-#: ../../mod/photos.php:656
+#: ../../mod/photos.php:660
 msgid "a photo"
 msgstr "一张照片"
 
-#: ../../mod/photos.php:761
+#: ../../mod/photos.php:765
 msgid "Image exceeds size limit of "
 msgstr "图片超出最大尺寸"
 
-#: ../../mod/photos.php:769
+#: ../../mod/photos.php:773
 msgid "Image file is empty."
 msgstr "图片文件空的。"
 
-#: ../../mod/photos.php:801 ../../mod/wall_upload.php:112
+#: ../../mod/photos.php:805 ../../mod/wall_upload.php:112
 #: ../../mod/profile_photo.php:153
 msgid "Unable to process image."
 msgstr "处理不了图像."
 
-#: ../../mod/photos.php:828 ../../mod/wall_upload.php:138
+#: ../../mod/photos.php:832 ../../mod/wall_upload.php:138
 #: ../../mod/profile_photo.php:301
 msgid "Image upload failed."
 msgstr "图像上载失败了."
 
-#: ../../mod/photos.php:924
+#: ../../mod/photos.php:928
 msgid "No photos selected"
 msgstr "没有照片挑选了"
 
-#: ../../mod/photos.php:1025 ../../mod/videos.php:226
+#: ../../mod/photos.php:1029 ../../mod/videos.php:226
 msgid "Access to this item is restricted."
 msgstr "这个项目使用权限的。"
 
-#: ../../mod/photos.php:1088
+#: ../../mod/photos.php:1092
 #, php-format
 msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
 msgstr "您用%2$.2f兆字节的%1$.2f兆字节照片存储。"
 
-#: ../../mod/photos.php:1123
+#: ../../mod/photos.php:1127
 msgid "Upload Photos"
 msgstr "上传照片"
 
-#: ../../mod/photos.php:1127 ../../mod/photos.php:1195
+#: ../../mod/photos.php:1131 ../../mod/photos.php:1199
 msgid "New album name: "
 msgstr "新册名:"
 
-#: ../../mod/photos.php:1128
+#: ../../mod/photos.php:1132
 msgid "or existing album name: "
 msgstr "或现有册名"
 
-#: ../../mod/photos.php:1129
+#: ../../mod/photos.php:1133
 msgid "Do not show a status post for this upload"
 msgstr "别显示现状报到关于这个上传"
 
-#: ../../mod/photos.php:1131 ../../mod/photos.php:1497
+#: ../../mod/photos.php:1135 ../../mod/photos.php:1506
 msgid "Permissions"
 msgstr "权利"
 
-#: ../../mod/photos.php:1142
+#: ../../mod/photos.php:1146
 msgid "Private Photo"
 msgstr "私人照相"
 
-#: ../../mod/photos.php:1143
+#: ../../mod/photos.php:1147
 msgid "Public Photo"
 msgstr "公开照相"
 
-#: ../../mod/photos.php:1210
+#: ../../mod/photos.php:1214
 msgid "Edit Album"
 msgstr "编照片册"
 
-#: ../../mod/photos.php:1216
+#: ../../mod/photos.php:1220
 msgid "Show Newest First"
 msgstr "先表示最新的"
 
-#: ../../mod/photos.php:1218
+#: ../../mod/photos.php:1222
 msgid "Show Oldest First"
 msgstr "先表示最老的"
 
-#: ../../mod/photos.php:1251 ../../mod/photos.php:1778
+#: ../../mod/photos.php:1255 ../../mod/photos.php:1793
 msgid "View Photo"
 msgstr "看照片"
 
-#: ../../mod/photos.php:1286
+#: ../../mod/photos.php:1290
 msgid "Permission denied. Access to this item may be restricted."
 msgstr "无权利。用这个项目可能受限制。"
 
-#: ../../mod/photos.php:1288
+#: ../../mod/photos.php:1292
 msgid "Photo not available"
 msgstr "照片不可获得的 "
 
-#: ../../mod/photos.php:1344
+#: ../../mod/photos.php:1348
 msgid "View photo"
 msgstr "看照片"
 
-#: ../../mod/photos.php:1344
+#: ../../mod/photos.php:1348
 msgid "Edit photo"
 msgstr "编辑照片"
 
-#: ../../mod/photos.php:1345
+#: ../../mod/photos.php:1349
 msgid "Use as profile photo"
 msgstr "用为资料图"
 
-#: ../../mod/photos.php:1370
+#: ../../mod/photos.php:1374
 msgid "View Full Size"
 msgstr "看全尺寸"
 
-#: ../../mod/photos.php:1444
+#: ../../mod/photos.php:1453
 msgid "Tags: "
 msgstr "标签:"
 
-#: ../../mod/photos.php:1447
+#: ../../mod/photos.php:1456
 msgid "[Remove any tag]"
 msgstr "[删除任何标签]"
 
-#: ../../mod/photos.php:1487
+#: ../../mod/photos.php:1496
 msgid "Rotate CW (right)"
 msgstr "顺时针地转动(左)"
 
-#: ../../mod/photos.php:1488
+#: ../../mod/photos.php:1497
 msgid "Rotate CCW (left)"
 msgstr "反顺时针地转动(右)"
 
-#: ../../mod/photos.php:1490
+#: ../../mod/photos.php:1499
 msgid "New album name"
 msgstr "新册名"
 
-#: ../../mod/photos.php:1493
+#: ../../mod/photos.php:1502
 msgid "Caption"
 msgstr "字幕"
 
-#: ../../mod/photos.php:1495
+#: ../../mod/photos.php:1504
 msgid "Add a Tag"
 msgstr "加标签"
 
-#: ../../mod/photos.php:1499
+#: ../../mod/photos.php:1508
 msgid ""
 "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 msgstr "例子:@zhang, @Zhang_San, @li@example.com, #Beijing, #ktv"
 
-#: ../../mod/photos.php:1508
+#: ../../mod/photos.php:1517
 msgid "Private photo"
 msgstr "私人照相"
 
-#: ../../mod/photos.php:1509
+#: ../../mod/photos.php:1518
 msgid "Public photo"
 msgstr "公开照相"
 
-#: ../../mod/photos.php:1531 ../../include/conversation.php:1080
+#: ../../mod/photos.php:1540 ../../include/conversation.php:1083
 msgid "Share"
 msgstr "分享"
 
-#: ../../mod/photos.php:1784 ../../mod/videos.php:308
+#: ../../mod/photos.php:1799 ../../mod/videos.php:308
 msgid "View Album"
 msgstr "看照片册"
 
-#: ../../mod/photos.php:1793
+#: ../../mod/photos.php:1808
 msgid "Recent Photos"
 msgstr "最近的照片"
 
-#: ../../mod/wall_attach.php:69
+#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "不好意思,可能你上传的是PHP设置允许的大"
+
+#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75
+msgid "Or - did you try to upload an empty file?"
+msgstr "或者,你是不是上传空的文件?"
+
+#: ../../mod/wall_attach.php:81 ../../wall_attach.php:81
 #, php-format
 msgid "File exceeds size limit of %d"
 msgstr "文件数目超过最多%d"
 
-#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
+#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
+#: ../../wall_attach.php:122 ../../wall_attach.php:133
 msgid "File upload failed."
 msgstr "文件上传失败。"
 
@@ -4921,7 +4949,7 @@ msgstr "文件上传失败。"
 msgid "No videos selected"
 msgstr "没选择的视频"
 
-#: ../../mod/videos.php:301 ../../include/text.php:1383
+#: ../../mod/videos.php:301 ../../include/text.php:1387
 msgid "View Video"
 msgstr "看视频"
 
@@ -4958,21 +4986,21 @@ msgstr "使这个文章私人"
 msgid "%1$s is following %2$s's %3$s"
 msgstr "%1$s关注着%2$s的%3$s"
 
-#: ../../mod/uexport.php:72
+#: ../../mod/uexport.php:77
 msgid "Export account"
 msgstr "出口账户"
 
-#: ../../mod/uexport.php:72
+#: ../../mod/uexport.php:77
 msgid ""
 "Export your account info and contacts. Use this to make a backup of your "
 "account and/or to move it to another server."
 msgstr "出口您的商户信息和熟人。这利于备份您的账户活着搬到别的服务器。"
 
-#: ../../mod/uexport.php:73
+#: ../../mod/uexport.php:78
 msgid "Export all"
 msgstr "出口一切"
 
-#: ../../mod/uexport.php:73
+#: ../../mod/uexport.php:78
 msgid ""
 "Export your accout info, contacts and all your items as json. Could be a "
 "very big file, and could take a lot of time. Use this to make a full backup "
@@ -4993,7 +5021,7 @@ msgid "Image exceeds size limit of %d"
 msgstr "图像超标最大极限尺寸 %d"
 
 #: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
-#: ../../mod/wall_upload.php:151 ../../mod/item.php:453
+#: ../../mod/wall_upload.php:151 ../../mod/item.php:455
 #: ../../include/message.php:144
 msgid "Wall Photos"
 msgstr "墙照片"
@@ -5094,7 +5122,7 @@ msgstr "去除项目标签"
 msgid "Select a tag to remove: "
 msgstr "选择标签去除"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133
 msgid "Remove"
 msgstr "移走"
 
@@ -5110,7 +5138,8 @@ msgstr "l, F j"
 msgid "Edit event"
 msgstr "编项目"
 
-#: ../../mod/events.php:335 ../../include/text.php:1615
+#: ../../mod/events.php:335 ../../include/text.php:1620
+#: ../../include/text.php:1631
 msgid "link to source"
 msgstr "链接到来源"
 
@@ -5171,34 +5200,34 @@ msgstr "分享这个项目"
 msgid "No potential page delegates located."
 msgstr "找不到可能代表页人。"
 
-#: ../../mod/delegate.php:121 ../../include/nav.php:165
+#: ../../mod/delegate.php:124 ../../include/nav.php:167
 msgid "Delegate Page Management"
 msgstr "页代表管理"
 
-#: ../../mod/delegate.php:123
+#: ../../mod/delegate.php:126
 msgid ""
 "Delegates are able to manage all aspects of this account/page except for "
 "basic account settings. Please do not delegate your personal account to "
 "anybody that you do not trust completely."
 msgstr "代表会管理所有的方面这个账户/页除了基础账户配置以外。请别代表您私人账户给您没完全信的人。"
 
-#: ../../mod/delegate.php:124
+#: ../../mod/delegate.php:127
 msgid "Existing Page Managers"
 msgstr "目前页管理员"
 
-#: ../../mod/delegate.php:126
+#: ../../mod/delegate.php:129
 msgid "Existing Page Delegates"
 msgstr "目前页代表"
 
-#: ../../mod/delegate.php:128
+#: ../../mod/delegate.php:131
 msgid "Potential Delegates"
 msgstr "潜力的代表"
 
-#: ../../mod/delegate.php:131
+#: ../../mod/delegate.php:134
 msgid "Add"
 msgstr "加"
 
-#: ../../mod/delegate.php:132
+#: ../../mod/delegate.php:135
 msgid "No entries."
 msgstr "没有项目。"
 
@@ -5241,37 +5270,37 @@ msgstr "建议朋友们"
 msgid "Suggest a friend for %s"
 msgstr "建议朋友给%s"
 
-#: ../../mod/item.php:108
+#: ../../mod/item.php:110
 msgid "Unable to locate original post."
 msgstr "找不到当初的新闻"
 
-#: ../../mod/item.php:317
+#: ../../mod/item.php:319
 msgid "Empty post discarded."
 msgstr "空心的新闻丢弃了"
 
-#: ../../mod/item.php:884
+#: ../../mod/item.php:891
 msgid "System error. Post not saved."
 msgstr "系统错误。x"
 
-#: ../../mod/item.php:909
+#: ../../mod/item.php:917
 #, php-format
 msgid ""
 "This message was sent to you by %s, a member of the Friendica social "
 "network."
 msgstr "这个新闻是由%s,Friendica社会化网络成员之一,发给你。"
 
-#: ../../mod/item.php:911
+#: ../../mod/item.php:919
 #, php-format
 msgid "You may visit them online at %s"
 msgstr "你可以网上拜访他在%s"
 
-#: ../../mod/item.php:912
+#: ../../mod/item.php:920
 msgid ""
 "Please contact the sender by replying to this post if you do not wish to "
 "receive these messages."
 msgstr "你不想受到这些新闻的话,请回答这个新闻给发者联系。"
 
-#: ../../mod/item.php:916
+#: ../../mod/item.php:924
 #, php-format
 msgid "%s posted an update."
 msgstr "%s贴上一个新闻。"
@@ -5348,11 +5377,11 @@ msgstr "丢弃"
 msgid "System"
 msgstr "系统"
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:140
+#: ../../mod/notifications.php:83 ../../include/nav.php:142
 msgid "Network"
 msgstr "网络"
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:149
+#: ../../mod/notifications.php:98 ../../include/nav.php:151
 msgid "Introductions"
 msgstr "介绍"
 
@@ -5425,7 +5454,7 @@ msgstr "新关注者:"
 msgid "No introductions."
 msgstr "没有介绍。"
 
-#: ../../mod/notifications.php:220 ../../include/nav.php:150
+#: ../../mod/notifications.php:220 ../../include/nav.php:152
 msgid "Notifications"
 msgstr "通知"
 
@@ -5647,7 +5676,7 @@ msgstr "网络"
 msgid "All Networks"
 msgstr "所有网络"
 
-#: ../../include/contact_widgets.php:103 ../../include/features.php:59
+#: ../../include/contact_widgets.php:103 ../../include/features.php:60
 msgid "Saved Folders"
 msgstr "保存的文件夹"
 
@@ -5671,33 +5700,37 @@ msgstr "这个行动超过您订阅的限制。"
 msgid "This action is not available under your subscription plan."
 msgstr "这个行动在您的订阅不可用的。"
 
-#: ../../include/api.php:255 ../../include/api.php:266
-#: ../../include/api.php:356
+#: ../../include/api.php:263 ../../include/api.php:274
+#: ../../include/api.php:375
 msgid "User not found."
 msgstr "找不到用户"
 
-#: ../../include/api.php:1024
+#: ../../include/api.php:1123
 msgid "There is no status with this id."
 msgstr "没有什么状态跟这个ID"
 
-#: ../../include/network.php:883
+#: ../../include/api.php:1193
+msgid "There is no conversation with this id."
+msgstr "没有这个ID的对话"
+
+#: ../../include/network.php:886
 msgid "view full size"
 msgstr "看全尺寸"
 
-#: ../../include/event.php:20 ../../include/bb2diaspora.php:399
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:139
 msgid "Starts:"
 msgstr "开始:"
 
-#: ../../include/event.php:30 ../../include/bb2diaspora.php:407
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:147
 msgid "Finishes:"
 msgstr "结束:"
 
-#: ../../include/notifier.php:774 ../../include/delivery.php:457
+#: ../../include/notifier.php:774 ../../include/delivery.php:456
 msgid "(no subject)"
 msgstr "沒有题目"
 
 #: ../../include/notifier.php:784 ../../include/enotify.php:28
-#: ../../include/delivery.php:468
+#: ../../include/delivery.php:467
 msgid "noreply"
 msgstr "noreply"
 
@@ -5789,7 +5822,7 @@ msgstr "朋友"
 msgid "%1$s poked %2$s"
 msgstr "%1$s把%2$s戳"
 
-#: ../../include/conversation.php:211 ../../include/text.php:986
+#: ../../include/conversation.php:211 ../../include/text.php:990
 msgid "poked"
 msgstr "戳了"
 
@@ -5802,129 +5835,129 @@ msgstr "文章/项目"
 msgid "%1$s marked %2$s's %3$s as favorite"
 msgstr "%1$s标注%2$s的%3$s为偏爱"
 
-#: ../../include/conversation.php:767
+#: ../../include/conversation.php:770
 msgid "remove"
 msgstr "删除"
 
-#: ../../include/conversation.php:771
+#: ../../include/conversation.php:774
 msgid "Delete Selected Items"
 msgstr "删除选的项目"
 
-#: ../../include/conversation.php:870
+#: ../../include/conversation.php:873
 msgid "Follow Thread"
 msgstr "关注线绳"
 
-#: ../../include/conversation.php:871 ../../include/Contact.php:229
+#: ../../include/conversation.php:874 ../../include/Contact.php:229
 msgid "View Status"
 msgstr "看现状"
 
-#: ../../include/conversation.php:872 ../../include/Contact.php:230
+#: ../../include/conversation.php:875 ../../include/Contact.php:230
 msgid "View Profile"
 msgstr "看简介"
 
-#: ../../include/conversation.php:873 ../../include/Contact.php:231
+#: ../../include/conversation.php:876 ../../include/Contact.php:231
 msgid "View Photos"
 msgstr "看照片"
 
-#: ../../include/conversation.php:874 ../../include/Contact.php:232
+#: ../../include/conversation.php:877 ../../include/Contact.php:232
 #: ../../include/Contact.php:255
 msgid "Network Posts"
 msgstr "网络文章"
 
-#: ../../include/conversation.php:875 ../../include/Contact.php:233
+#: ../../include/conversation.php:878 ../../include/Contact.php:233
 #: ../../include/Contact.php:255
 msgid "Edit Contact"
 msgstr "编辑熟人"
 
-#: ../../include/conversation.php:876 ../../include/Contact.php:235
+#: ../../include/conversation.php:879 ../../include/Contact.php:235
 #: ../../include/Contact.php:255
 msgid "Send PM"
 msgstr "法私人的新闻"
 
-#: ../../include/conversation.php:877 ../../include/Contact.php:228
+#: ../../include/conversation.php:880 ../../include/Contact.php:228
 msgid "Poke"
 msgstr "戳"
 
-#: ../../include/conversation.php:939
+#: ../../include/conversation.php:942
 #, php-format
 msgid "%s likes this."
 msgstr "%s喜欢这个."
 
-#: ../../include/conversation.php:939
+#: ../../include/conversation.php:942
 #, php-format
 msgid "%s doesn't like this."
 msgstr "%s没有喜欢这个."
 
-#: ../../include/conversation.php:944
+#: ../../include/conversation.php:947
 #, php-format
 msgid "<span  %1$s>%2$d people</span> like this"
 msgstr "<span  %1$s>%2$d人们</span>喜欢这个"
 
-#: ../../include/conversation.php:947
+#: ../../include/conversation.php:950
 #, php-format
 msgid "<span  %1$s>%2$d people</span> don't like this"
 msgstr "<span  %1$s>%2$d人们</span>不喜欢这个"
 
-#: ../../include/conversation.php:961
+#: ../../include/conversation.php:964
 msgid "and"
 msgstr "和"
 
-#: ../../include/conversation.php:967
+#: ../../include/conversation.php:970
 #, php-format
 msgid ", and %d other people"
 msgstr ",和%d别人"
 
-#: ../../include/conversation.php:969
+#: ../../include/conversation.php:972
 #, php-format
 msgid "%s like this."
 msgstr "%s喜欢这个"
 
-#: ../../include/conversation.php:969
+#: ../../include/conversation.php:972
 #, php-format
 msgid "%s don't like this."
 msgstr "%s不喜欢这个"
 
-#: ../../include/conversation.php:996 ../../include/conversation.php:1014
+#: ../../include/conversation.php:999 ../../include/conversation.php:1017
 msgid "Visible to <strong>everybody</strong>"
 msgstr "<strong>大家</strong>可见的"
 
-#: ../../include/conversation.php:998 ../../include/conversation.php:1016
+#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
 msgid "Please enter a video link/URL:"
 msgstr "请输入视频连接/URL:"
 
-#: ../../include/conversation.php:999 ../../include/conversation.php:1017
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
 msgid "Please enter an audio link/URL:"
 msgstr "请输入音响连接/URL:"
 
-#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
+#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
 msgid "Tag term:"
 msgstr "标签:"
 
-#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
+#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
 msgid "Where are you right now?"
 msgstr "你在哪里?"
 
-#: ../../include/conversation.php:1003
+#: ../../include/conversation.php:1006
 msgid "Delete item(s)?"
 msgstr "把项目删除吗?"
 
-#: ../../include/conversation.php:1045
+#: ../../include/conversation.php:1048
 msgid "Post to Email"
 msgstr "电邮发布"
 
-#: ../../include/conversation.php:1101
+#: ../../include/conversation.php:1104
 msgid "permissions"
 msgstr "权利"
 
-#: ../../include/conversation.php:1125
+#: ../../include/conversation.php:1128
 msgid "Post to Groups"
 msgstr "发到组"
 
-#: ../../include/conversation.php:1126
+#: ../../include/conversation.php:1129
 msgid "Post to Contacts"
 msgstr "发到熟人"
 
-#: ../../include/conversation.php:1127
+#: ../../include/conversation.php:1130
 msgid "Private post"
 msgstr "私人文章"
 
@@ -5967,261 +6000,261 @@ msgstr[0] "%d熟人没进口了"
 msgid "Done. You can now login with your username and password"
 msgstr "完了。您现在会用您用户名和密码登录"
 
-#: ../../include/text.php:300
+#: ../../include/text.php:304
 msgid "newer"
 msgstr "更新"
 
-#: ../../include/text.php:302
+#: ../../include/text.php:306
 msgid "older"
 msgstr "更旧"
 
-#: ../../include/text.php:307
+#: ../../include/text.php:311
 msgid "prev"
 msgstr "上个"
 
-#: ../../include/text.php:309
+#: ../../include/text.php:313
 msgid "first"
 msgstr "首先"
 
-#: ../../include/text.php:341
+#: ../../include/text.php:345
 msgid "last"
 msgstr "最后"
 
-#: ../../include/text.php:344
+#: ../../include/text.php:348
 msgid "next"
 msgstr "下个"
 
-#: ../../include/text.php:836
+#: ../../include/text.php:840
 msgid "No contacts"
 msgstr "没有熟人"
 
-#: ../../include/text.php:845
+#: ../../include/text.php:849
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
 msgstr[0] "%d熟人"
 
-#: ../../include/text.php:986
+#: ../../include/text.php:990
 msgid "poke"
 msgstr "戳"
 
-#: ../../include/text.php:987
+#: ../../include/text.php:991
 msgid "ping"
 msgstr "砰"
 
-#: ../../include/text.php:987
+#: ../../include/text.php:991
 msgid "pinged"
 msgstr "砰了"
 
-#: ../../include/text.php:988
+#: ../../include/text.php:992
 msgid "prod"
 msgstr "柔戳"
 
-#: ../../include/text.php:988
+#: ../../include/text.php:992
 msgid "prodded"
 msgstr "柔戳了"
 
-#: ../../include/text.php:989
+#: ../../include/text.php:993
 msgid "slap"
 msgstr "掌击"
 
-#: ../../include/text.php:989
+#: ../../include/text.php:993
 msgid "slapped"
 msgstr "掌击了"
 
-#: ../../include/text.php:990
+#: ../../include/text.php:994
 msgid "finger"
 msgstr "指"
 
-#: ../../include/text.php:990
+#: ../../include/text.php:994
 msgid "fingered"
 msgstr "指了"
 
-#: ../../include/text.php:991
+#: ../../include/text.php:995
 msgid "rebuff"
 msgstr "窝脖儿"
 
-#: ../../include/text.php:991
+#: ../../include/text.php:995
 msgid "rebuffed"
 msgstr "窝脖儿了"
 
-#: ../../include/text.php:1005
+#: ../../include/text.php:1009
 msgid "happy"
 msgstr "开心"
 
-#: ../../include/text.php:1006
+#: ../../include/text.php:1010
 msgid "sad"
 msgstr "伤心"
 
-#: ../../include/text.php:1007
+#: ../../include/text.php:1011
 msgid "mellow"
 msgstr "轻松"
 
-#: ../../include/text.php:1008
+#: ../../include/text.php:1012
 msgid "tired"
 msgstr "累"
 
-#: ../../include/text.php:1009
+#: ../../include/text.php:1013
 msgid "perky"
 msgstr "机敏"
 
-#: ../../include/text.php:1010
+#: ../../include/text.php:1014
 msgid "angry"
 msgstr "生气"
 
-#: ../../include/text.php:1011
+#: ../../include/text.php:1015
 msgid "stupified"
 msgstr "麻醉"
 
-#: ../../include/text.php:1012
+#: ../../include/text.php:1016
 msgid "puzzled"
 msgstr "纳闷"
 
-#: ../../include/text.php:1013
+#: ../../include/text.php:1017
 msgid "interested"
 msgstr "有兴趣"
 
-#: ../../include/text.php:1014
+#: ../../include/text.php:1018
 msgid "bitter"
 msgstr "苦"
 
-#: ../../include/text.php:1015
+#: ../../include/text.php:1019
 msgid "cheerful"
 msgstr "快乐"
 
-#: ../../include/text.php:1016
+#: ../../include/text.php:1020
 msgid "alive"
 msgstr "活着"
 
-#: ../../include/text.php:1017
+#: ../../include/text.php:1021
 msgid "annoyed"
 msgstr "被烦恼"
 
-#: ../../include/text.php:1018
+#: ../../include/text.php:1022
 msgid "anxious"
 msgstr "心焦"
 
-#: ../../include/text.php:1019
+#: ../../include/text.php:1023
 msgid "cranky"
 msgstr "不稳"
 
-#: ../../include/text.php:1020
+#: ../../include/text.php:1024
 msgid "disturbed"
 msgstr "不安"
 
-#: ../../include/text.php:1021
+#: ../../include/text.php:1025
 msgid "frustrated"
 msgstr "被作梗"
 
-#: ../../include/text.php:1022
+#: ../../include/text.php:1026
 msgid "motivated"
 msgstr "士气高涨"
 
-#: ../../include/text.php:1023
+#: ../../include/text.php:1027
 msgid "relaxed"
 msgstr "轻松"
 
-#: ../../include/text.php:1024
+#: ../../include/text.php:1028
 msgid "surprised"
 msgstr "诧异"
 
-#: ../../include/text.php:1192
+#: ../../include/text.php:1196
 msgid "Monday"
 msgstr "星期一"
 
-#: ../../include/text.php:1192
+#: ../../include/text.php:1196
 msgid "Tuesday"
 msgstr "星期二"
 
-#: ../../include/text.php:1192
+#: ../../include/text.php:1196
 msgid "Wednesday"
 msgstr "星期三"
 
-#: ../../include/text.php:1192
+#: ../../include/text.php:1196
 msgid "Thursday"
 msgstr "星期四"
 
-#: ../../include/text.php:1192
+#: ../../include/text.php:1196
 msgid "Friday"
 msgstr "星期五"
 
-#: ../../include/text.php:1192
+#: ../../include/text.php:1196
 msgid "Saturday"
 msgstr "星期六"
 
-#: ../../include/text.php:1192
+#: ../../include/text.php:1196
 msgid "Sunday"
 msgstr "星期天"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1200
 msgid "January"
 msgstr "一月"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1200
 msgid "February"
 msgstr "二月"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1200
 msgid "March"
 msgstr "三月"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1200
 msgid "April"
 msgstr "四月"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1200
 msgid "May"
 msgstr "五月"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1200
 msgid "June"
 msgstr "六月"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1200
 msgid "July"
 msgstr "七月"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1200
 msgid "August"
 msgstr "八月"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1200
 msgid "September"
 msgstr "九月"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1200
 msgid "October"
 msgstr "十月"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1200
 msgid "November"
 msgstr "十一月"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1200
 msgid "December"
 msgstr "十二月"
 
-#: ../../include/text.php:1415
+#: ../../include/text.php:1419
 msgid "bytes"
 msgstr "字节"
 
-#: ../../include/text.php:1439 ../../include/text.php:1451
+#: ../../include/text.php:1443 ../../include/text.php:1455
 msgid "Click to open/close"
 msgstr "点击为开关"
 
-#: ../../include/text.php:1670
+#: ../../include/text.php:1688
 msgid "Select an alternate language"
 msgstr "选择别的语言"
 
-#: ../../include/text.php:1926
+#: ../../include/text.php:1944
 msgid "activity"
 msgstr "活动"
 
-#: ../../include/text.php:1929
+#: ../../include/text.php:1947
 msgid "post"
 msgstr "文章"
 
-#: ../../include/text.php:2084
+#: ../../include/text.php:2115
 msgid "Item filed"
 msgstr "把项目归档了"
 
@@ -6267,151 +6300,166 @@ msgstr "一条私人的消息"
 msgid "Please visit %s to view and/or reply to your private messages."
 msgstr "清去%s为了看或回答你私人的消息"
 
-#: ../../include/enotify.php:90
+#: ../../include/enotify.php:91
 #, php-format
 msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
 msgstr "%1$s于[url=%2$s]a %3$s[/url]评论了"
 
-#: ../../include/enotify.php:97
+#: ../../include/enotify.php:98
 #, php-format
 msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
 msgstr "%1$s于[url=%2$s]%3$s的%4$s[/url]评论了"
 
-#: ../../include/enotify.php:105
+#: ../../include/enotify.php:106
 #, php-format
 msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
 msgstr "%1$s于[url=%2$s]您的%3$s[/url]评论了"
 
-#: ../../include/enotify.php:115
+#: ../../include/enotify.php:116
 #, php-format
 msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
 msgstr "[Friendica:Notify]于交流#%1$d由%2$s评论"
 
-#: ../../include/enotify.php:116
+#: ../../include/enotify.php:117
 #, php-format
 msgid "%s commented on an item/conversation you have been following."
 msgstr "%s对你有兴趣的项目/ 交谈发表意见"
 
-#: ../../include/enotify.php:119 ../../include/enotify.php:134
-#: ../../include/enotify.php:147 ../../include/enotify.php:165
-#: ../../include/enotify.php:178
+#: ../../include/enotify.php:120 ../../include/enotify.php:135
+#: ../../include/enotify.php:148 ../../include/enotify.php:161
+#: ../../include/enotify.php:179 ../../include/enotify.php:192
 #, php-format
 msgid "Please visit %s to view and/or reply to the conversation."
 msgstr "清去%s为了看或回答交谈"
 
-#: ../../include/enotify.php:126
+#: ../../include/enotify.php:127
 #, php-format
 msgid "[Friendica:Notify] %s posted to your profile wall"
 msgstr "[Friendica:Notify] %s贴在您的简介墙"
 
-#: ../../include/enotify.php:128
+#: ../../include/enotify.php:129
 #, php-format
 msgid "%1$s posted to your profile wall at %2$s"
 msgstr "%1$s放在您的简介墙在%2$s"
 
-#: ../../include/enotify.php:130
+#: ../../include/enotify.php:131
 #, php-format
 msgid "%1$s posted to [url=%2$s]your wall[/url]"
 msgstr "%1$s放在[url=%2$s]您的墙[/url]"
 
-#: ../../include/enotify.php:141
+#: ../../include/enotify.php:142
 #, php-format
 msgid "[Friendica:Notify] %s tagged you"
 msgstr "[Friendica:Notify] %s标签您"
 
-#: ../../include/enotify.php:142
+#: ../../include/enotify.php:143
 #, php-format
 msgid "%1$s tagged you at %2$s"
 msgstr "%1$s把您在%2$s标签"
 
-#: ../../include/enotify.php:143
+#: ../../include/enotify.php:144
 #, php-format
 msgid "%1$s [url=%2$s]tagged you[/url]."
 msgstr "%1$s[url=%2$s]把您标签[/url]."
 
 #: ../../include/enotify.php:155
 #, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica:Notify] %s分享新的消息"
+
+#: ../../include/enotify.php:156
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s分享新的消息在%2$s"
+
+#: ../../include/enotify.php:157
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]分享一个消息[/url]."
+
+#: ../../include/enotify.php:169
+#, php-format
 msgid "[Friendica:Notify] %1$s poked you"
 msgstr "[Friendica:Notify]您被%1$s戳"
 
-#: ../../include/enotify.php:156
+#: ../../include/enotify.php:170
 #, php-format
 msgid "%1$s poked you at %2$s"
 msgstr "您被%1$s戳在%2$s"
 
-#: ../../include/enotify.php:157
+#: ../../include/enotify.php:171
 #, php-format
 msgid "%1$s [url=%2$s]poked you[/url]."
 msgstr "%1$s[url=%2$s]把您戳[/url]。"
 
-#: ../../include/enotify.php:172
+#: ../../include/enotify.php:186
 #, php-format
 msgid "[Friendica:Notify] %s tagged your post"
 msgstr "[Friendica:Notify] %s标前您的文章"
 
-#: ../../include/enotify.php:173
+#: ../../include/enotify.php:187
 #, php-format
 msgid "%1$s tagged your post at %2$s"
 msgstr "%1$s把您的文章在%2$s标签"
 
-#: ../../include/enotify.php:174
+#: ../../include/enotify.php:188
 #, php-format
 msgid "%1$s tagged [url=%2$s]your post[/url]"
 msgstr "%1$s把[url=%2$s]您的文章[/url]标签"
 
-#: ../../include/enotify.php:185
+#: ../../include/enotify.php:199
 msgid "[Friendica:Notify] Introduction received"
 msgstr "[Friendica:Notify] 收到介绍"
 
-#: ../../include/enotify.php:186
+#: ../../include/enotify.php:200
 #, php-format
 msgid "You've received an introduction from '%1$s' at %2$s"
 msgstr "您从「%1$s」受到一个介绍在%2$s"
 
-#: ../../include/enotify.php:187
+#: ../../include/enotify.php:201
 #, php-format
 msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
 msgstr "您从%2$s收到[url=%1$s]一个介绍[/url]。"
 
-#: ../../include/enotify.php:190 ../../include/enotify.php:208
+#: ../../include/enotify.php:204 ../../include/enotify.php:222
 #, php-format
 msgid "You may visit their profile at %s"
 msgstr "你能看他的简介在%s"
 
-#: ../../include/enotify.php:192
+#: ../../include/enotify.php:206
 #, php-format
 msgid "Please visit %s to approve or reject the introduction."
 msgstr "请批准或拒绝介绍在%s"
 
-#: ../../include/enotify.php:199
+#: ../../include/enotify.php:213
 msgid "[Friendica:Notify] Friend suggestion received"
 msgstr "[Friendica:Notify] 收到朋友建议"
 
-#: ../../include/enotify.php:200
+#: ../../include/enotify.php:214
 #, php-format
 msgid "You've received a friend suggestion from '%1$s' at %2$s"
 msgstr "您从「%2$s」收到[url=%1$s]一个朋友建议[/url]。"
 
-#: ../../include/enotify.php:201
+#: ../../include/enotify.php:215
 #, php-format
 msgid ""
 "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
 msgstr "您从%3$s收到[url=%1$s]一个朋友建议[/url]为%2$s。"
 
-#: ../../include/enotify.php:206
+#: ../../include/enotify.php:220
 msgid "Name:"
 msgstr "名字:"
 
-#: ../../include/enotify.php:207
+#: ../../include/enotify.php:221
 msgid "Photo:"
 msgstr "照片:"
 
-#: ../../include/enotify.php:210
+#: ../../include/enotify.php:224
 #, php-format
 msgid "Please visit %s to approve or reject the suggestion."
 msgstr "请批准或拒绝建议在%s"
 
-#: ../../include/Scrape.php:583
+#: ../../include/Scrape.php:584
 msgid " on Last.fm"
 msgstr "在Last.fm"
 
@@ -6549,71 +6597,79 @@ msgstr "名录"
 msgid "People directory"
 msgstr "人物名录"
 
-#: ../../include/nav.php:140
+#: ../../include/nav.php:132
+msgid "Information"
+msgstr "资料"
+
+#: ../../include/nav.php:132
+msgid "Information about this friendica instance"
+msgstr "资料关于这个Friendica服务器"
+
+#: ../../include/nav.php:142
 msgid "Conversations from your friends"
 msgstr "从你朋友们的交谈"
 
-#: ../../include/nav.php:141
+#: ../../include/nav.php:143
 msgid "Network Reset"
 msgstr "网络重设"
 
-#: ../../include/nav.php:141
+#: ../../include/nav.php:143
 msgid "Load Network page with no filters"
 msgstr "表示网络页无滤器"
 
-#: ../../include/nav.php:149
+#: ../../include/nav.php:151
 msgid "Friend Requests"
 msgstr "友谊邀请"
 
-#: ../../include/nav.php:151
+#: ../../include/nav.php:153
 msgid "See all notifications"
 msgstr "看所有的通知"
 
-#: ../../include/nav.php:152
+#: ../../include/nav.php:154
 msgid "Mark all system notifications seen"
 msgstr "记号各系统通知看过的"
 
-#: ../../include/nav.php:156
+#: ../../include/nav.php:158
 msgid "Private mail"
 msgstr "私人的邮件"
 
-#: ../../include/nav.php:157
+#: ../../include/nav.php:159
 msgid "Inbox"
 msgstr "收件箱"
 
-#: ../../include/nav.php:158
+#: ../../include/nav.php:160
 msgid "Outbox"
 msgstr "发件箱"
 
-#: ../../include/nav.php:162
+#: ../../include/nav.php:164
 msgid "Manage"
 msgstr "代用户"
 
-#: ../../include/nav.php:162
+#: ../../include/nav.php:164
 msgid "Manage other pages"
 msgstr "管理别的页"
 
-#: ../../include/nav.php:165
-msgid "Delegations"
-msgstr "代表"
-
 #: ../../include/nav.php:169
+msgid "Account settings"
+msgstr "帐户配置"
+
+#: ../../include/nav.php:171
 msgid "Manage/Edit Profiles"
 msgstr "管理/编辑简介"
 
-#: ../../include/nav.php:171
+#: ../../include/nav.php:173
 msgid "Manage/edit friends and contacts"
 msgstr "管理/编朋友们和熟人们"
 
-#: ../../include/nav.php:178
+#: ../../include/nav.php:180
 msgid "Site setup and configuration"
 msgstr "网站开办和配置"
 
-#: ../../include/nav.php:182
+#: ../../include/nav.php:184
 msgid "Navigation"
 msgstr "航行"
 
-#: ../../include/nav.php:182
+#: ../../include/nav.php:184
 msgid "Site map"
 msgstr "网站地图"
 
@@ -6682,23 +6738,27 @@ msgstr "工作"
 msgid "School/education:"
 msgstr "学院/教育"
 
-#: ../../include/bbcode.php:215 ../../include/bbcode.php:620
-#: ../../include/bbcode.php:621
+#: ../../include/bbcode.php:284 ../../include/bbcode.php:917
+#: ../../include/bbcode.php:918
 msgid "Image/photo"
 msgstr "图像/照片"
 
-#: ../../include/bbcode.php:285
+#: ../../include/bbcode.php:354
 #, 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>写了下面的<a href=\"%s\" target=\"external-link\">文章</a>"
+"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"_blank\">post</a>"
+msgstr "<span><a href=\"%s\" target=\"_blank\">%s</a>写了下面的<a href=\"%s\" target=\"_blank\">消息</a>"
 
-#: ../../include/bbcode.php:584 ../../include/bbcode.php:604
+#: ../../include/bbcode.php:453
+msgid "<span><b>"
+msgstr "<span><b>"
+
+#: ../../include/bbcode.php:881 ../../include/bbcode.php:901
 msgid "$1 wrote:"
 msgstr "$1写:"
 
-#: ../../include/bbcode.php:631 ../../include/bbcode.php:632
+#: ../../include/bbcode.php:932 ../../include/bbcode.php:933
 msgid "Encrypted content"
 msgstr "加密的内容"
 
@@ -6770,6 +6830,14 @@ msgstr "pump.io"
 msgid "Twitter"
 msgstr "Twitter"
 
+#: ../../include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Diaspora连接"
+
+#: ../../include/contact_selectors.php:91
+msgid "Statusnet"
+msgstr "Statusnet"
+
 #: ../../include/datetime.php:43 ../../include/datetime.php:45
 msgid "Miscellaneous"
 msgstr "形形色色"
@@ -6843,12 +6911,12 @@ msgstr "秒"
 msgid "%1$d %2$s ago"
 msgstr "%1$d %2$s以前"
 
-#: ../../include/datetime.php:472 ../../include/items.php:1829
+#: ../../include/datetime.php:472 ../../include/items.php:1964
 #, php-format
 msgid "%s's birthday"
 msgstr "%s的生日"
 
-#: ../../include/datetime.php:473 ../../include/items.php:1830
+#: ../../include/datetime.php:473 ../../include/items.php:1965
 #, php-format
 msgid "Happy Birthday %s"
 msgstr "生日快乐%s"
@@ -6885,155 +6953,164 @@ msgstr "文章预演"
 msgid "Allow previewing posts and comments before publishing them"
 msgstr "允许文章和评论出版前预演"
 
-#: ../../include/features.php:37
+#: ../../include/features.php:33
+msgid "Auto-mention Forums"
+msgstr "自动提示论坛"
+
+#: ../../include/features.php:33
+msgid ""
+"Add/remove mention when a fourm page is selected/deselected in ACL window."
+msgstr "添加/删除提示论坛页选择/淘汰在ACL窗户的时候。"
+
+#: ../../include/features.php:38
 msgid "Network Sidebar Widgets"
 msgstr "网络工具栏小窗口"
 
-#: ../../include/features.php:38
+#: ../../include/features.php:39
 msgid "Search by Date"
 msgstr "按日期搜索"
 
-#: ../../include/features.php:38
+#: ../../include/features.php:39
 msgid "Ability to select posts by date ranges"
 msgstr "能按时期范围选择文章"
 
-#: ../../include/features.php:39
+#: ../../include/features.php:40
 msgid "Group Filter"
 msgstr "组滤器"
 
-#: ../../include/features.php:39
+#: ../../include/features.php:40
 msgid "Enable widget to display Network posts only from selected group"
 msgstr "使光表示网络文章从选择的组小窗口"
 
-#: ../../include/features.php:40
+#: ../../include/features.php:41
 msgid "Network Filter"
 msgstr "网络滤器"
 
-#: ../../include/features.php:40
+#: ../../include/features.php:41
 msgid "Enable widget to display Network posts only from selected network"
 msgstr "使光表示网络文章从选择的网络小窗口"
 
-#: ../../include/features.php:41
+#: ../../include/features.php:42
 msgid "Save search terms for re-use"
 msgstr "保存搜索关键为再用"
 
-#: ../../include/features.php:46
+#: ../../include/features.php:47
 msgid "Network Tabs"
 msgstr "网络分页"
 
-#: ../../include/features.php:47
+#: ../../include/features.php:48
 msgid "Network Personal Tab"
 msgstr "网络私人分页"
 
-#: ../../include/features.php:47
+#: ../../include/features.php:48
 msgid "Enable tab to display only Network posts that you've interacted on"
 msgstr "使表示光网络文章您参加了分页可用"
 
-#: ../../include/features.php:48
+#: ../../include/features.php:49
 msgid "Network New Tab"
 msgstr "网络新分页"
 
-#: ../../include/features.php:48
+#: ../../include/features.php:49
 msgid "Enable tab to display only new Network posts (from the last 12 hours)"
 msgstr "使表示光网络文章在12小时内分页可用"
 
-#: ../../include/features.php:49
+#: ../../include/features.php:50
 msgid "Network Shared Links Tab"
 msgstr "网络分享链接分页"
 
-#: ../../include/features.php:49
+#: ../../include/features.php:50
 msgid "Enable tab to display only Network posts with links in them"
 msgstr "使表示光网络文章包括链接分页可用"
 
-#: ../../include/features.php:54
+#: ../../include/features.php:55
 msgid "Post/Comment Tools"
 msgstr "文章/评论工具"
 
-#: ../../include/features.php:55
+#: ../../include/features.php:56
 msgid "Multiple Deletion"
 msgstr "多删除"
 
-#: ../../include/features.php:55
+#: ../../include/features.php:56
 msgid "Select and delete multiple posts/comments at once"
 msgstr "选择和删除多文章/评论一次"
 
-#: ../../include/features.php:56
+#: ../../include/features.php:57
 msgid "Edit Sent Posts"
 msgstr "编辑发送的文章"
 
-#: ../../include/features.php:56
+#: ../../include/features.php:57
 msgid "Edit and correct posts and comments after sending"
 msgstr "编辑或修改文章和评论发送后"
 
-#: ../../include/features.php:57
+#: ../../include/features.php:58
 msgid "Tagging"
 msgstr "标签"
 
-#: ../../include/features.php:57
+#: ../../include/features.php:58
 msgid "Ability to tag existing posts"
 msgstr "能把目前的文章标签"
 
-#: ../../include/features.php:58
+#: ../../include/features.php:59
 msgid "Post Categories"
 msgstr "文章种类"
 
-#: ../../include/features.php:58
+#: ../../include/features.php:59
 msgid "Add categories to your posts"
 msgstr "加入种类给您的文章"
 
-#: ../../include/features.php:59
+#: ../../include/features.php:60
 msgid "Ability to file posts under folders"
 msgstr "能把文章归档在文件夹 "
 
-#: ../../include/features.php:60
+#: ../../include/features.php:61
 msgid "Dislike Posts"
 msgstr "不喜欢文章"
 
-#: ../../include/features.php:60
+#: ../../include/features.php:61
 msgid "Ability to dislike posts/comments"
 msgstr "能不喜欢文章/评论"
 
-#: ../../include/features.php:61
+#: ../../include/features.php:62
 msgid "Star Posts"
 msgstr "文章星"
 
-#: ../../include/features.php:61
+#: ../../include/features.php:62
 msgid "Ability to mark special posts with a star indicator"
 msgstr "能把优秀文章跟星标注"
 
-#: ../../include/diaspora.php:704
+#: ../../include/diaspora.php:703
 msgid "Sharing notification from Diaspora network"
 msgstr "分享通知从Diaspora网络"
 
-#: ../../include/diaspora.php:2269
+#: ../../include/diaspora.php:2299
 msgid "Attachments:"
 msgstr "附件:"
 
-#: ../../include/acl_selectors.php:325
+#: ../../include/acl_selectors.php:326
 msgid "Visible to everybody"
 msgstr "任何人可见的"
 
-#: ../../include/items.php:3539
+#: ../../include/items.php:3693
 msgid "A new person is sharing with you at "
 msgstr "一位新人给你分享在"
 
-#: ../../include/items.php:3539
+#: ../../include/items.php:3693
 msgid "You have a new follower at "
 msgstr "你有新的关注者在"
 
-#: ../../include/items.php:4062
+#: ../../include/items.php:4216
 msgid "Do you really want to delete this item?"
 msgstr "您真的想删除这个项目吗?"
 
-#: ../../include/items.php:4285
+#: ../../include/items.php:4443
 msgid "Archives"
 msgstr "档案"
 
-#: ../../include/oembed.php:140
+#: ../../include/oembed.php:174
 msgid "Embedded content"
 msgstr "嵌入内容"
 
-#: ../../include/oembed.php:149
+#: ../../include/oembed.php:183
 msgid "Embedding disabled"
 msgstr "嵌入不能用"
 
@@ -7291,7 +7368,7 @@ msgstr "结束关注了"
 msgid "Drop Contact"
 msgstr "删除熟人"
 
-#: ../../include/dba.php:44
+#: ../../include/dba.php:45
 #, php-format
 msgid "Cannot locate DNS info for database server '%s'"
 msgstr "找不到DNS信息为数据库服务器「%s」"
index 68c4cb90762655b3466e934eddd4f18ea5e9cd7e..73deb5aba047832be79f3c76e900354f67450cff 100644 (file)
@@ -118,6 +118,7 @@ $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"] = "选择主题宽";
+$a->strings["Set style"] = "选择款式";
 $a->strings["Delete this item?"] = "删除这个项目?";
 $a->strings["show fewer"] = "显示更小";
 $a->strings["Update %s failed. See error logs."] = "更新%s美通过。看错误记录。";
@@ -415,6 +416,7 @@ $a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] =
 $a->strings["Site settings updated."] = "网站设置更新了。";
 $a->strings["No special theme for mobile devices"] = "没专门适合手机的主题";
 $a->strings["Never"] = "从未";
+$a->strings["At post arrival"] = "收件的时候";
 $a->strings["Frequently"] = "时常";
 $a->strings["Hourly"] = "每小时";
 $a->strings["Twice daily"] = "每日两次";
@@ -495,7 +497,7 @@ $a->strings["Use PHP UTF8 regular expressions"] = "用PHP UTF8正则表达式";
 $a->strings["Show Community Page"] = "表示社会页";
 $a->strings["Display a Community page showing all recent public postings on this site."] = "表示社会页表明这网站所有最近公开的文章";
 $a->strings["Enable OStatus support"] = "使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."] = "提供内装的OStatus(identi.ca, status.net, 等)兼容。OStatus内,什么通知是公开的,所以偶尔隐私警告被表示。";
+$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "提供OStatus(StatusNet,GNU Social,等)兼容性。所有OStatus的交通是公开的,所以私事警告偶尔来表示。";
 $a->strings["OStatus conversation completion interval"] = "OStatus对话完成间隔";
 $a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "喂器要多久查一次新文章在OStatus交流?这会花许多系统资源。";
 $a->strings["Enable Diaspora support"] = "使Diaspora支持能够";
@@ -761,6 +763,9 @@ $a->strings["Currently ignored"] = "现在不理的";
 $a->strings["Currently archived"] = "现在存档着";
 $a->strings["Hide this contact from others"] = "隐藏这个熟人给别人";
 $a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "回答/喜欢关您公开文章<strong>会</strong>还可见的";
+$a->strings["Notification for new posts"] = "新消息提示";
+$a->strings["Send a notification of every new post of this contact"] = "发提示在所有这个联络的新消息";
+$a->strings["Fetch further information for feeds"] = "拿文源别的消息";
 $a->strings["Suggestions"] = "建议";
 $a->strings["Suggest potential friends"] = "建议潜在朋友们";
 $a->strings["All Contacts"] = "所有的熟人";
@@ -782,11 +787,10 @@ $a->strings["Edit contact"] = "编熟人";
 $a->strings["Search your contacts"] = "搜索您的熟人";
 $a->strings["Update"] = "更新";
 $a->strings["everybody"] = "每人";
-$a->strings["Account settings"] = "帐户配置";
 $a->strings["Additional features"] = "附加的特点";
-$a->strings["Display settings"] = "表示设置";
-$a->strings["Connector settings"] = "插销设置";
-$a->strings["Plugin settings"] = "插件设置";
+$a->strings["Display"] = "显示";
+$a->strings["Social Networks"] = "社会化网络";
+$a->strings["Delegations"] = "代表";
 $a->strings["Connected apps"] = "连接着应用";
 $a->strings["Export personal data"] = "出口私人信息";
 $a->strings["Remove account"] = "删除账户";
@@ -828,7 +832,6 @@ $a->strings["enabled"] = "能够做的";
 $a->strings["disabled"] = "使不能用";
 $a->strings["StatusNet"] = "StatusNet";
 $a->strings["Email access is disabled on this site."] = "这个网站没有邮件使用权";
-$a->strings["Connector Settings"] = "连接器设置";
 $a->strings["Email/Mailbox Setup"] = "邮件收件箱设置";
 $a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "如果您想用这股服务(可选的)跟邮件熟人交流,请指定怎么连通您的收件箱。";
 $a->strings["Last successful email check:"] = "上个成功收件箱检查:";
@@ -853,6 +856,7 @@ $a->strings["Number of items to display per page:"] = "每页表示多少项目
 $a->strings["Maximum of 100 items"] = "最多100项目";
 $a->strings["Number of items to display per page when viewed from mobile device:"] = "用手机看一页展示多少项目:";
 $a->strings["Don't show emoticons"] = "别表示请表符号";
+$a->strings["Don't show notices"] = "别表提示";
 $a->strings["Infinite scroll"] = "无限的滚动";
 $a->strings["Normal Account Page"] = "平常账户页";
 $a->strings["This account is a normal personal profile"] = "这个帐户是正常私人简介";
@@ -1111,6 +1115,8 @@ $a->strings["Public photo"] = "公开照相";
 $a->strings["Share"] = "分享";
 $a->strings["View Album"] = "看照片册";
 $a->strings["Recent Photos"] = "最近的照片";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "不好意思,可能你上传的是PHP设置允许的大";
+$a->strings["Or - did you try to upload an empty file?"] = "或者,你是不是上传空的文件?";
 $a->strings["File exceeds size limit of %d"] = "文件数目超过最多%d";
 $a->strings["File upload failed."] = "文件上传失败。";
 $a->strings["No videos selected"] = "没选择的视频";
@@ -1289,6 +1295,7 @@ $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["User not found."] = "找不到用户";
 $a->strings["There is no status with this id."] = "没有什么状态跟这个ID";
+$a->strings["There is no conversation with this id."] = "没有这个ID的对话";
 $a->strings["view full size"] = "看全尺寸";
 $a->strings["Starts:"] = "开始:";
 $a->strings["Finishes:"] = "结束:";
@@ -1444,6 +1451,9 @@ $a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s放在[url=%2\
 $a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s标签您";
 $a->strings["%1\$s tagged you at %2\$s"] = "%1\$s把您在%2\$s标签";
 $a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s[url=%2\$s]把您标签[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s分享新的消息";
+$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s分享新的消息在%2\$s";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]分享一个消息[/url].";
 $a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify]您被%1\$s戳";
 $a->strings["%1\$s poked you at %2\$s"] = "您被%1\$s戳在%2\$s";
 $a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s[url=%2\$s]把您戳[/url]。";
@@ -1493,6 +1503,8 @@ $a->strings["Search site content"] = "搜索网站内容";
 $a->strings["Conversations on this site"] = "这个网站的交谈";
 $a->strings["Directory"] = "名录";
 $a->strings["People directory"] = "人物名录";
+$a->strings["Information"] = "资料";
+$a->strings["Information about this friendica instance"] = "资料关于这个Friendica服务器";
 $a->strings["Conversations from your friends"] = "从你朋友们的交谈";
 $a->strings["Network Reset"] = "网络重设";
 $a->strings["Load Network page with no filters"] = "表示网络页无滤器";
@@ -1504,7 +1516,7 @@ $a->strings["Inbox"] = "收件箱";
 $a->strings["Outbox"] = "发件箱";
 $a->strings["Manage"] = "代用户";
 $a->strings["Manage other pages"] = "管理别的页";
-$a->strings["Delegations"] = "代表";
+$a->strings["Account settings"] = "帐户配置";
 $a->strings["Manage/Edit Profiles"] = "管理/编辑简介";
 $a->strings["Manage/edit friends and contacts"] = "管理/编朋友们和熟人们";
 $a->strings["Site setup and configuration"] = "网站开办和配置";
@@ -1527,7 +1539,8 @@ $a->strings["Love/Romance:"] = "爱情/浪漫";
 $a->strings["Work/employment:"] = "工作";
 $a->strings["School/education:"] = "学院/教育";
 $a->strings["Image/photo"] = "图像/照片";
-$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "<span><a href=\"%s\" target=\"external-link\">%s</a>写了下面的<a href=\"%s\" target=\"external-link\">文章</a>";
+$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "<span><a href=\"%s\" target=\"_blank\">%s</a>写了下面的<a href=\"%s\" target=\"_blank\">消息</a>";
+$a->strings["<span><b>"] = "<span><b>";
 $a->strings["$1 wrote:"] = "$1写:";
 $a->strings["Encrypted content"] = "加密的内容";
 $a->strings["Unknown | Not categorised"] = "未知的 |无分类";
@@ -1547,6 +1560,8 @@ $a->strings["MySpace"] = "MySpace";
 $a->strings["Google+"] = "Google+";
 $a->strings["pump.io"] = "pump.io";
 $a->strings["Twitter"] = "Twitter";
+$a->strings["Diaspora Connector"] = "Diaspora连接";
+$a->strings["Statusnet"] = "Statusnet";
 $a->strings["Miscellaneous"] = "形形色色";
 $a->strings["year"] = "年";
 $a->strings["month"] = "月";
@@ -1575,6 +1590,8 @@ $a->strings["Richtext Editor"] = "富文本格式编辑";
 $a->strings["Enable richtext editor"] = "使富文本格式编辑可用";
 $a->strings["Post Preview"] = "文章预演";
 $a->strings["Allow previewing posts and comments before publishing them"] = "允许文章和评论出版前预演";
+$a->strings["Auto-mention Forums"] = "自动提示论坛";
+$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "添加/删除提示论坛页选择/淘汰在ACL窗户的时候。";
 $a->strings["Network Sidebar Widgets"] = "网络工具栏小窗口";
 $a->strings["Search by Date"] = "按日期搜索";
 $a->strings["Ability to select posts by date ranges"] = "能按时期范围选择文章";