]> git.mxchange.org Git - friendica.git/commitdiff
Merge pull request #983 from annando/master
authortobiasd <tobias.diekershoff@gmx.net>
Sun, 18 May 2014 18:01:29 +0000 (20:01 +0200)
committertobiasd <tobias.diekershoff@gmx.net>
Sun, 18 May 2014 18:01:29 +0000 (20:01 +0200)
"red"-bookmarks and better plaintext export

25 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/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 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"] = "能按时期范围选择文章";